/* ==========================================================================
   MAYARA HOME KASHI - LUXURY 3D DESIGN SYSTEM & STYLESHEET
   Business Name: MAYARA HOME KASHI
   GSTIN: 09ACHFM2965P1ZE | UDYAM: UDYAM-UP-75-0197945
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #070B14;
    --bg-surface: #0E1626;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-glass: rgba(255, 255, 255, 0.04);
    
    --gold-primary: #D4AF37;
    --gold-light: #F7E7A9;
    --gold-dark: #A88118;
    --gold-glow: rgba(212, 175, 55, 0.35);
    
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-gold: #F3E5AB;
    
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    --transition-3d: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background: radial-gradient(circle at 50% 0%, #152238 0%, #070B14 70%);
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gold {
    background: linear-gradient(135deg, #FFF 0%, var(--gold-light) 40%, var(--gold-primary) 80%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subheading {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* 3D Canvas Background Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.55;
}

/* Top Banner Header */
.top-bar {
    background: rgba(7, 11, 20, 0.95);
    border-bottom: 1px solid var(--border-glass);
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    z-index: 1001;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.legal-badge-item {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Header Images & Responsive Layout */
.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.04);
}

.baba-badge-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1.5px solid var(--gold-primary);
    padding: 4px 16px 4px 6px;
    border-radius: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
    transition: transform 0.3s ease;
}

.baba-badge-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.4);
}

.baba-img-header {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--gold-primary);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
}

.baba-text-header {
    display: flex;
    flex-direction: column;
}

.baba-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.3px;
}

.baba-sub {
    font-size: 0.72rem;
    color: #CBD5E1;
    font-weight: 500;
}

/* Sticky Luxury Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 22, 38, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    padding: 6px 0;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    border-color: var(--gold-primary);
}

/* Hero Section with 3D Depth & Ganga Ji Visual */
.hero {
    padding: 100px 0 80px;
    position: relative;
    perspective: 1000px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 95%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
}

.stat-item h4 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-light);
    font-family: var(--font-body);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 3D Ganga Ji Hero Card */
.hero-3d-card {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.glass-card-hero {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-3d);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.hero-3d-card:hover .glass-card-hero {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.ganga-hero-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-card-badge {
    position: absolute;
    top: 36px;
    right: 36px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateZ(30px);
}

/* Section Common */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* 3D Filterable Property Grid */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold-primary);
    color: var(--bg-dark);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 36px;
    perspective: 1200px;
}

/* 3D Interactive Property Card */
.property-card-3d {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transform-style: preserve-3d;
    transition: var(--transition-3d);
    position: relative;
    display: flex;
    flex-direction: column;
}

.property-card-3d:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-3d);
    transform: translateY(-10deg) rotateX(4deg) scale(1.01);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-card-3d:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-badge-top {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 11, 20, 0.85);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    transform: translateZ(25px);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-location {
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #FFF;
}

.card-specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.spec-item {
    font-size: 0.82rem;
}

.spec-label {
    color: var(--text-muted);
    display: block;
}

.spec-val {
    color: var(--text-main);
    font-weight: 600;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold-light);
    font-family: var(--font-body);
}

/* Services 3D Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    perspective: 1000px;
}

.service-card-3d {
    background: rgba(14, 22, 38, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    backdrop-filter: blur(12px);
    transition: var(--transition-3d);
}

.service-card-3d:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Office Gallery Cards for About Us Page */
.office-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin: 48px 0;
}

.office-card-3d {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    transition: var(--transition-3d);
}

.office-card-3d:hover {
    transform: translateY(-6px);
}

.office-img-wrapper {
    width: 100%;
    height: 380px;
    background: #04070D;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
}

.office-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease;
}

.office-img-wrapper img:hover {
    transform: scale(1.03);
}

.office-card-3d:hover .office-img-wrapper img {
    transform: scale(1.05);
}

.office-card-body {
    padding: 24px;
}

.office-card-title {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.office-card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Legal Authority & Trust Card */
.trust-banner {
    background: linear-gradient(135deg, #0F172A 0%, #152238 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-3d);
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.trust-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.trust-detail-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    padding: 16px 20px;
    border-radius: var(--radius-md);
}

.trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
}

.trust-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 4px;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold-primary);
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.terms-text-box {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    font-size: 0.84rem;
    color: var(--text-muted);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Footer */
.footer {
    background: #04070D;
    border-top: 1px solid var(--border-glass);
    padding: 30px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
    align-items: start;
}

.footer-about {
    grid-row: 1 / span 2;
}

.footer-qr-section {
    grid-column: 2 / -1;
    display: flex;
    gap: 24px;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.footer-logo-img {
    height: 120px;
    max-width: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.75));
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.03);
}

/* Footer Social Icons */
.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-icon-btn:hover {
    background: var(--gold-primary);
    color: #04070D;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 16px 0 24px;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Accordion Styling */
.faq-section {
    margin-top: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(14, 22, 38, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item.active {
    border-color: var(--border-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--gold-primary);
    color: #04070D;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 24px 20px;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .trust-banner {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about { grid-row: auto; }
    .footer-qr-section { grid-column: 1 / -1; }
    .office-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .top-bar .flex-between {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .legal-badges {
        flex-direction: column;
        gap: 6px;
    }
    .nav-brand-group {
        gap: 10px;
        flex-wrap: wrap;
    }
    .brand-logo-img {
        height: 60px;
    }
    .baba-badge-header {
        padding: 3px 8px 3px 4px;
    }
    .baba-img-header {
        width: 48px;
        height: 48px;
    }
    .baba-title {
        font-size: 0.75rem;
    }
    .baba-sub {
        font-size: 0.62rem;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-top: 10px;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    .property-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-logo-img {
        height: 100px;
        max-width: 240px;
    }
    .trust-details-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 18px;
    }
    .faq-answer {
        font-size: 0.88rem;
    }
}
