/* Design System */
:root {
    --primary: #1b4332;
    --primary-light: #2d6a4f;
    --primary-dark: #081c15;
    --accent: #f77f00;
    --accent-hover: #e85d04;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --text-main: #212529;
    --text-muted: #6c757d;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    /* Force remove all underlines */
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
    /* Base font size reduction */
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

.subtitle {
    display: block;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(247, 127, 0, 0.2);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section {
    padding: 140px 0;
}

/* Liquid Glass Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.navbar.scrolled .menu-toggle {
    color: var(--primary-dark);
}

.navbar:not(.scrolled) .menu-toggle {
    color: var(--white);
}


.navbar.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}


.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    position: relative;
    display: flex;
    gap: 0;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50px;
    padding: 5px;
}

.nav-links a {
    position: relative;
    z-index: 2;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
    transition: color 0.4s ease;
    overflow: hidden;
}

/* The 'Liquid' Indicator */
.nav-indicator {
    position: absolute;
    top: 5px;
    left: 0;
    height: calc(100% - 10px);
    background: var(--primary);
    border-radius: 50px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
    pointer-events: none;
    opacity: 0;
}

.nav-links a:hover {
    color: var(--white);
}

/* Animated Text for Navbar */
.nav-links a span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-links a:hover span {
    transform: translateY(-2px);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.logo span {
    color: var(--accent);
}

.navbar.scrolled .logo {
    color: var(--primary-dark);
}



/* Hero Section - Reference Matched Version */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
    /* Fallback */
}

.hero-bg-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: transform 10s linear, opacity 2s ease-in-out;
    animation: heroLoop 30s infinite;
}

/* Ken Burns effect + Fade loop */
.hero-bg-slides .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-bg-slides .slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-bg-slides .slide:nth-child(3) {
    animation-delay: 10s;
}

.hero-bg-slides .slide:nth-child(4) {
    animation-delay: 15s;
}

.hero-bg-slides .slide:nth-child(5) {
    animation-delay: 20s;
}

.hero-bg-slides .slide:nth-child(6) {
    animation-delay: 25s;
}

@keyframes heroLoop {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    5% {
        opacity: 1;
        transform: scale(1.1);
    }

    16.6% {
        opacity: 1;
        transform: scale(1.05);
    }

    21.6% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Add an overlay to ensure text readability */
.hero-bg-slides::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    z-index: 1;
}


.hero-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 4rem 3rem;
    max-width: 800px;
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    /* Inner thickness */
    opacity: 0;
    transform: scale(0.9);
    animation: glassReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Moving Shine Effect for Realism */
.hero-glass-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(25deg);
    animation: glassShine 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes glassShine {
    0% {
        transform: translate(-30%, -30%) rotate(25deg);
    }

    50% {
        transform: translate(30%, 30%) rotate(25deg);
    }

    100% {
        transform: translate(-30%, -30%) rotate(25deg);
    }
}

@keyframes glassReveal {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
        filter: blur(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}


.hero-subtitle {
    color: var(--accent) !important;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: none;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 0.6s;
    /* 0.6s delay */
}

.liquid-text {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 1.5px;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 0.8s;
}


.liquid-p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 1s;
    /* 1s delay */
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 1.2s;
    /* 1.2s delay */
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.glass-btn {
    padding: 0.9rem 2.2rem !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
    transition: var(--transition) !important;
    border: none !important;
    backdrop-filter: none !important;
}


/* Primary Button (Gold/Yellow) */
.btn-accent {
    background-color: #f1c40f !important;
    color: #000 !important;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.3) !important;
}

.btn-accent:hover {
    background-color: #f39c12 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(241, 196, 15, 0.5) !important;
}

/* Secondary Button (Green) */
.btn-primary {
    background-color: #2ecc71 !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3) !important;
}

.btn-primary:hover {
    background-color: #27ae60 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5) !important;
}



.hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Stats Section */
.stats {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Properties Marquee */
.properties-section {
    background-color: var(--light-bg);
}

.marquee-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.property-card {
    width: 400px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.property-image {
    height: 300px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-info {
    padding: 2rem;
}

.property-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.property-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.appointment-banner {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.appointment-badge {
    background: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 10px 40px rgba(247, 127, 0, 0.1);
    animation: fadeInUp 1s ease;
}

.appointment-badge i {
    color: var(--accent);
    font-size: 1.4rem;
}

.appointment-badge span {
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}


.service-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.1);
    border-color: var(--accent);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
}

.about-experience span {
    display: block;
    font-size: 2.5rem;
}

.about-list {
    margin: 2rem 0 3rem;
}

.about-list li {
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-list li i {
    color: var(--accent);
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, #081c15 0%, lch(12.48% 28.76 300.46) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    top: -100px;
    right: -100px;
}



.founder-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 4rem;
    text-align: center;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.founder-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    box-shadow: 0 0 15px var(--accent);
}

.founder-quote {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.liquid-glass {
    position: relative;
    overflow: hidden;
}

.liquid-glass::after {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(35deg);
    animation: liquidFlow 10s infinite linear;
    pointer-events: none;
}

@keyframes liquidFlow {
    0% {
        transform: translate(-10%, -10%) rotate(35deg);
    }

    100% {
        transform: translate(10%, 10%) rotate(35deg);
    }
}

/* Responsive adjustment for founder */
@media (max-width: 768px) {
    .founder-card {
        padding: 3rem 2rem;
    }

    .founder-name {
        font-size: 2.2rem;
    }

    .founder-quote {
        font-size: 1.1rem;
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-dark);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: var(--border-radius);
}

.quote {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
}

.client span {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Partners Marquee */
.partners {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--gray-200);
}

.partner-content {
    animation-duration: 35s;
    /* Slower for readability */
    align-items: center;
}

.logo-item {
    padding: 0 3rem;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    height: 40px;
    filter: grayscale(1);
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0);
}

/* Specific CSS 'Logos' */
.piramal {
    color: #003366;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.piramal span {
    font-weight: 300;
}

.godrej {
    color: #2d6a4f;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.godrej span {
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 5px;
}

.rustomjee {
    color: #9d0208;
    font-size: 1.5rem;
    border-bottom: 2px solid #9d0208;
}

.oberoi {
    color: #333;
    font-size: 1.1rem;
    letter-spacing: 4px;
    border: 1px solid #333;
    padding: 5px 15px !important;
}

.shapoorji {
    color: #004a99;
    font-size: 1.2rem;
    font-weight: 900;
    font-style: italic;
}


/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--white);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-logo {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links a i {
    transition: var(--transition);
}

/* Individual Brand Colors */
.social-links a .fa-whatsapp {
    color: #25d366;
}

.social-links a .fa-twitter {
    color: #1DA1F2;
}

.social-links a .fa-envelope {
    color: #f1c40f;
}

.social-links a .fa-map-marker-alt {
    color: #e74c3c;
}

/* Hover Background Colors matching brands */
.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:has(.fa-whatsapp):hover {
    background: rgba(37, 211, 102, 0.2);
}

.social-links a:has(.fa-twitter):hover {
    background: rgba(29, 161, 242, 0.2);
}

.social-links a:has(.fa-envelope):hover {
    background: rgba(241, 196, 15, 0.2);
}

.social-links a:has(.fa-map-marker-alt):hover {
    background: rgba(231, 76, 60, 0.2);
}

.social-links a:hover i {
    transform: scale(1.2);
}


.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.creator-credit {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.15);
    /* Dimmer 'Created by' */
    font-size: 0.8rem;
    font-weight: 400;
}


.creator-credit a {
    color: #b35a1a; /* Muted earthy orange */
    text-decoration: none;
    font-weight: 300; /* Thin font */
    position: relative;
    border-bottom: 1.5px solid rgba(179, 90, 26, 0.3); /* Subtle underline */
    padding-bottom: 2px;
    transition: var(--transition);
}

.creator-credit a:hover {
    color: #ce7d44; /* Slightly lighter on hover, no glow */
    filter: brightness(1.1);
}




/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-container {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-glass-card {
        padding: 3rem;
        margin: 0 2rem;
    }

    .liquid-text {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-radius: 0;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--primary-dark) !important;
    }

    .nav-indicator {
        display: none;
    }

    .navbar .btn {
        display: none;
    }

    .hero {
        text-align: center;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    .hero-glass-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .liquid-text {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 2rem;
    }

    .about-experience {
        position: static;
        margin-top: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .property-card {
        width: 300px;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .liquid-text {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .property-card {
        width: 260px;
    }

    /* Testimonials Mobile Optimization */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .quote {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .client h4 {
        font-size: 1rem;
    }

    .appointment-badge {
        padding: 0.8rem 1.5rem;
        gap: 0.8rem;
    }

    .appointment-badge span {
        font-size: 0.7rem;
    }

    .footer-bottom {
        padding: 2rem 1rem;
        font-size: 0.8rem;
    }

    .creator-credit {
        font-size: 0.75rem;
        margin-top: 1rem;
    }
}