/* assets/css/main.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-svg {
    width: 300px;
    height: 60px;
    display: block;
}

.footer-logo-svg {
    width: 300px;
    height: 60px;
    display: block;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0A0F1E;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e5c158;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: #D4AF37;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

/* Navigation */
nav {
    padding: 2rem 4rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(10, 15, 30, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo span {
    color: #D4AF37;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #D4AF37;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #D4AF37;
    color: #0A0F1E;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #D4AF37;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 4rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #D4AF37;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #D4AF37;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Legal Pages (Terms & Privacy) */
.legal-hero {
    padding: 10rem 4rem 4rem;
    background: linear-gradient(135deg, #0A0F1E 0%, #1A1F2E 100%);
    text-align: center;
}

.legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
}

.legal-title span {
    color: #D4AF37;
}

.legal-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.legal-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 4rem;
}

.legal-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

.legal-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: rgba(255,255,255,0.8);
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #D4AF37;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* FAQ Page */
.faq-hero {
    padding: 10rem 4rem 4rem;
    background: linear-gradient(135deg, #0A0F1E 0%, #1A1F2E 100%);
    text-align: center;
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
}

.faq-title span {
    color: #D4AF37;
}

.faq-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

.faq-container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 4rem;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn:hover,
.category-btn.active {
    background: #D4AF37;
    color: #0A0F1E;
    border-color: #D4AF37;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D4AF37;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #D4AF37;
}

.faq-toggle {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 300;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question h3 {
    color: #D4AF37;
}

.faq-answer ul {
    margin: 1rem 0 1rem 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #D4AF37;
}

.faq-contact {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(212,175,55,0.05);
    border-radius: 30px;
    border: 1px solid rgba(212,175,55,0.2);
}

.faq-contact h2 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-contact p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.faq-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Success Page Styles */
.success-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem;
    z-index: 1;
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
}

.success-badge {
    margin-bottom: 2rem;
}

.success-icon-wrapper {
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease forwards;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D4AF37 0%, #8B691F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 50px;
    color: #0A0F1E;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.success-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.success-title span {
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

.success-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.success-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-subtitle strong {
    color: #D4AF37;
}

/* Next Steps Card */
.next-steps-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease forwards 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.next-steps-title {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-item {
    text-align: left;
    display: flex;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #D4AF37;
    color: #0A0F1E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Property Confirmation */
.property-confirmation {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-block;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease forwards 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.property-label {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.property-id {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Contact Section */
.success-contact {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease forwards 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.contact-message {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Return Link */
.return-home {
    animation: fadeInUp 1s ease forwards 1.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.return-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.return-link:hover {
    color: #D4AF37;
}

/* Additional Animations */
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .success-title {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .step-content {
        text-align: center;
    }
    
    .next-steps-card {
        padding: 2rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-links .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .property-confirmation {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .success-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .legal-hero, .faq-hero {
        padding: 6rem 1rem 2rem;
    }
    
    .legal-title, .faq-title {
        font-size: 2.5rem;
    }
    
    .legal-container, .faq-container {
        padding: 0 1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-categories {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .category-btn {
        width: 100%;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    
    .faq-contact {
        padding: 2rem 1rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    nav {
        padding: 1.5rem 2rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .logo-svg {
        width: 160px;
        height: 48px;
    }
}
@media (max-width: 768px) {
    .footer-logo-svg {
        width: 160px;
        height: 48px;
    }
}