﻿/* =========================================
   CSS Reset & Variables (White Theme)
   ========================================= */
:root {
    --color-bg: #ffffff;
    --color-surface: #f9f9f7;
    --color-text: #1a1a1a;
    --color-text-muted: #555555;
    --color-accent: #b78a44;
    /* Premium muted gold/bronze */
    --color-border: rgba(0, 0, 0, 0.08);

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   Typography
   ========================================= */
h1,
h2,
h3,
h4 {
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subtitle::before,
.subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-accent);
}

.subtitle.flex-justify-center,
.section-header .subtitle {
    justify-content: center;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
}

.navbar.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.2rem 5%;
}

.navbar.internal {
    position: sticky;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.internal .nav-links a,
.navbar.sticky .nav-links a {
    color: var(--color-text);
}

.navbar.internal .logo img {
    filter: none;
}

.navbar.internal .btn-outline {
    background: transparent;
    color: #111;
    border: 1px solid #111;
}

.navbar.internal .btn-outline:hover {
    background: #111;
    color: #fff;
}

.navbar.internal .mobile-menu-btn {
    color: #111;
}

.logo img {
    height: 80px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.sticky .logo img {
    filter: none;
}

.logo img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
}

.btn-outline {
    border: 1px solid var(--color-text);
    color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.navbar .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.navbar .btn-outline:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.navbar.sticky .btn-outline {
    background: transparent;
    color: #111;
    border: 1px solid #111;
}

.navbar.sticky .btn-outline:hover {
    background: #111;
    color: #fff;
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
    border: 1px solid var(--color-text);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-text);
}

.btn-text {
    color: var(--color-text);
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
}

.btn-text:hover {
    border-bottom: 1px solid var(--color-accent);
    color: var(--color-accent);
}

/* =========================================
        height: 40vh;
    }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #272727;
    /* Updated to requested dark gray */
    color: #f9f9f9;
    padding: 3.5rem 5% 1.5rem 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-address h4 {
    display: none;
}

.footer-address p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-methods span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #a0a0a0;
}

.contact-methods svg {
    color: #a0a0a0;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-socials a {
    color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #272727;
    transform: translateY(-3px);
}

/* Adjusting footer links */
.footer-links {
    margin-top: calc(110px + 1.5rem);
}

.footer-links h3,
.footer-links h4 {
    color: #ffffff !important;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #a0a0a0;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 2px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* =========================================
   Animations
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    animation: fadeIn 1.5s ease-in forwards;
}

/* =========================================
   Responsive
   ========================================= */




/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}


.close-menu-btn {
    display: none;
}

/* Responsive Enhancements (Base) */
@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.agent-login-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s;
}
.agent-login-btn:hover {
    opacity: 0.7;
}
.navbar.sticky .agent-login-btn,
.navbar.internal .agent-login-btn {
    color: #111;
}
.agent-login-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .navbar {
        justify-content: space-between;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        cursor: pointer;
        color: #fff;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .navbar.sticky .mobile-menu-btn {
        color: #111;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 250px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
        padding: 6rem 2rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 99;
    }

    .close-menu-btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        cursor: pointer;
        color: #111;
        padding-bottom: 1rem;
        margin-right: -1rem;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        color: #111;
    }
}

@media (max-width: 768px) {

    /* Footer stacking */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 2rem;
    }

    .footer-links {
        margin-top: 0;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .contact-methods span {
        justify-content: flex-start;
    }

    .footer-socials {
        justify-content: flex-start;
        padding-left: 0;
    }

    .footer-address p {
        padding-left: 0;
    }
}

/* =========================================
   Utility Classes
   ========================================= */

/* Animation Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Layout & Typography */
.mt-15 {
    margin-top: 1.5rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.flex-justify-center {
    justify-content: center;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 2rem;
}

.text-align-left {
    text-align: left;
}

.flex-col-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.font-size-2rem {
    font-size: 2rem;
}

/* Footer Specifics */
.footer-logo-img {
    height: 110px;
    margin-bottom: 1.5rem;
}
.mobile-cta-links {
    display: none !important;
}
@media (max-width: 768px) {
    .mobile-cta-links {
        display: block !important;
    }
    
}










.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


