/* -------------------------------------------------------------
   24K Realty Custom Stylesheet
   Luxury Dark-Gold Design System (Vanilla CSS, Mobile-First)
   ------------------------------------------------------------- */

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

/* --- Design Tokens / CSS Variables --- */
:root {
    --bg-dark: #07090C;
    --bg-surface: #10131B;
    --bg-surface-light: #181C27;
    --bg-surface-card: #141822;
    --bg-navbar: rgba(7, 9, 12, 0.85);
    
    /* Luxury Gold Gradients & Tones */
    --gold-light: #FCE192;
    --gold-primary: #E5B23E;
    --gold-dark: #C08C23;
    --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    --gold-border-gradient: linear-gradient(135deg, var(--gold-light) 0%, rgba(229, 178, 62, 0.3) 50%, rgba(192, 140, 35, 0.1) 100%);
    
    /* Text Colors */
    --text-light: #F4F6F9;
    --text-muted: #8F98A8;
    --text-gold: #E5B23E;
    
    /* Shadows */
    --gold-glow: 0 0 25px rgba(229, 178, 62, 0.25);
    --gold-glow-hover: 0 0 35px rgba(229, 178, 62, 0.45);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Timing & Borders */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    --border-glass-gold: 1px solid rgba(229, 178, 62, 0.15);
}

/* --- Global Resets & Elements --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 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 Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Containers --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* --- Buttons & CTAs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(229, 178, 62, 0.4);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    background: rgba(229, 178, 62, 0.05);
    color: var(--text-gold);
    transform: translateY(-3px);
}

/* --- Glassmorphism Cards --- */
.glass-card {
    background: var(--bg-surface-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(229, 178, 62, 0.2);
    transform: translateY(-5px);
}

/* --- Sticky Header / Navbar --- */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 24px 0;
}

header.site-header.scrolled {
    background: var(--bg-navbar);
    backdrop-filter: blur(15px);
    border-bottom: var(--border-glass);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

header.site-header .logo img {
    height: 52px;
    width: auto;
    transition: var(--transition-smooth);
}

header.site-header.scrolled .logo img {
    height: 44px;
}

header.site-header nav.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

header.site-header nav.desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

header.site-header nav.desktop-nav a:hover,
header.site-header nav.desktop-nav li.active a {
    color: var(--text-gold);
}

header.site-header nav.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

header.site-header nav.desktop-nav a:hover::after,
header.site-header nav.desktop-nav li.active a::after {
    width: 100%;
}

/* Header Action */
.header-action {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Sidebar Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: var(--border-glass-gold);
    z-index: 1005;
    padding: 100px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-drawer a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-nav-drawer a:hover,
.mobile-nav-drawer li.active a {
    color: var(--text-gold);
}

/* Overlay dark backdrop for mobile nav */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

/* --- Hero Banner --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 9, 12, 1) 0%, rgba(7, 9, 12, 0.7) 40%, rgba(7, 9, 12, 0.4) 100%);
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 60px;
}

.hero-content-wrap h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.hero-slide.active .hero-content-wrap h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-content-wrap p {
    font-size: 1.15rem;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.hero-slide.active .hero-content-wrap p {
    opacity: 0.85;
    transform: translateY(0);
}

.hero-content-wrap .hero-ctas {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.8s;
}

.hero-slide.active .hero-content-wrap .hero-ctas {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.hero-arrow:hover {
    border-color: var(--gold-primary);
    background: rgba(229, 178, 62, 0.1);
    color: var(--text-gold);
}

/* --- Search Filter Panel --- */
.search-filter-panel {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 150px;
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gold);
}

.filter-select, .filter-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    outline: none;
    font-size: 0.95rem;
    width: 100%;
    transition: var(--transition-smooth);
}

.filter-select:focus, .filter-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(229, 178, 62, 0.15);
}

.filter-select option {
    background: var(--bg-surface);
    color: var(--text-light);
}

/* --- Section Layouts --- */
.section-title-wrap {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-title-wrap .subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gold);
    display: block;
    margin-bottom: 12px;
}

.section-title-wrap h2 {
    font-size: 2.25rem;
    font-family: var(--font-serif);
}

/* --- Expertise/Services Grid --- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.expertise-card {
    text-align: left;
}

.expertise-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, rgba(229, 178, 62, 0.1) 0%, rgba(192, 140, 35, 0.02) 100%);
    border: var(--border-glass-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-gold);
    transition: var(--transition-smooth);
}

.expertise-card:hover .expertise-icon-wrap {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: var(--gold-glow);
    transform: rotateY(180deg);
}

.expertise-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.expertise-card p {
    margin-bottom: 20px;
}

.learn-more-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more-link:hover {
    gap: 12px;
}

/* --- Property Listings Grid --- */
.property-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: var(--gold-glow);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.property-card {
    background: var(--bg-surface-card);
    border-radius: var(--border-radius-lg);
    border: var(--border-glass);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.property-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 178, 62, 0.25);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 15px rgba(229,178,62,0.05);
}

.property-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    z-index: 2;
}

.badge-launch {
    background: var(--gold-gradient);
    color: var(--bg-dark);
}

.badge-commercial {
    background: #00bcd4;
    color: var(--bg-dark);
}

.badge-resale {
    background: #e91e63;
    color: var(--text-light);
}

.property-details-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.property-card:hover .property-details-btn {
    opacity: 1;
    transform: translateY(0);
}

.property-content-block {
    padding: 24px;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 8px;
}

.property-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.property-specs-strip {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-item i {
    color: var(--text-gold);
}

/* --- Why Choose Us Grid --- */
.why-us-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-visual {
    position: relative;
}

.why-us-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: var(--border-glass);
}

.stats-card-overlay {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 220px;
    padding: 24px;
}

.stats-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-gold);
    display: block;
    line-height: 1;
}

.stats-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
}

.why-us-content .checklist-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.checklist-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(229, 178, 62, 0.15);
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.checklist-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

/* --- Testimonial Carousel Section --- */
.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 280px;
}

.testimonial-slide-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.testimonial-slide-card.active {
    opacity: 1;
    transform: scale(1);
}

.client-rating {
    display: flex;
    gap: 4px;
    color: var(--text-gold);
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 24px;
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background: var(--gold-primary);
    width: 24px;
    border-radius: 5px;
}

/* --- Contact Us Form & Layout --- */
.contact-section-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background: rgba(229, 178, 62, 0.08);
    border: var(--border-glass-gold);
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gold);
    margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-form-block {
    position: relative;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-full-width {
    grid-column: span 2;
}

.form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input, .form-textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    padding: 14px 18px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-textarea {
    resize: none;
    height: 120px;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(229, 178, 62, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.form-success-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-surface-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-lg);
    z-index: 5;
    padding: 32px;
}

.form-success-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.form-success-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* --- Map Embed --- */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: var(--border-glass-gold);
    box-shadow: var(--shadow-soft);
    margin-top: 50px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Footer --- */
.site-footer {
    background: #040508;
    border-top: var(--border-glass);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.social-link:hover {
    border-color: var(--gold-primary);
    background: rgba(229, 178, 62, 0.1);
    color: var(--text-gold);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gold);
    margin-bottom: 24px;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-gold);
    padding-left: 6px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--text-gold);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.08) rotate(8deg);
    background-color: #20ba5a;
}

/* --- Interactive Enquiry Modal --- */
.inquiry-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 24px;
}

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

.inquiry-modal {
    width: 100%;
    max-width: 550px;
    background: var(--bg-surface);
    border: var(--border-glass-gold);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.inquiry-modal-overlay.active .inquiry-modal {
    transform: translateY(0);
}

.modal-header {
    background: var(--bg-surface-card);
    padding: 24px 32px;
    border-bottom: var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.modal-body {
    padding: 32px;
}

/* --- Page Inner Hero (Subpages) --- */
.inner-hero {
    padding: 160px 0 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: var(--border-glass);
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 12, 0.9) 0%, rgba(7, 9, 12, 0.95) 100%);
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.inner-hero h1 {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    margin-bottom: 12px;
}

.breadcrumb-path {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.breadcrumb-path a:hover {
    color: var(--text-gold);
}

.breadcrumb-path span {
    color: var(--text-gold);
}

/* --- Property Detail Page Specific --- */
.detail-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.detail-gallery {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: var(--border-glass);
    height: 480px;
    margin-bottom: 32px;
}

.detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-header-strip {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.detail-header-strip h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.detail-specs-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.detail-spec-box {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-spec-box span:first-child {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-spec-box span:last-child {
    font-weight: 600;
    color: var(--text-light);
}

.detail-section-title {
    font-size: 1.35rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold-primary);
    padding-left: 14px;
}

.detail-description {
    margin-bottom: 40px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
}

.amenity-item i {
    color: var(--text-gold);
}

.sidebar-sticky-box {
    position: sticky;
    top: 100px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
    header.site-header nav.desktop-nav,
    header.site-header .btn-primary {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .why-us-split, .contact-section-split, .footer-grid, .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-us-content {
        order: 1;
    }
    
    .hero-content-wrap h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-slide {
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top center;
        background-color: var(--bg-dark);
        align-items: flex-end;
        padding-bottom: 80px;
    }
    
    .hero-content-wrap {
        margin-top: 48vw;
        padding-top: 0;
    }
    
    .hero-content-wrap h1 {
        font-size: 2rem;
    }
    
    .hero-content-wrap p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-controls {
        bottom: 24px;
        right: 20px;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .search-filter-panel {
        margin-top: -30px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-full-width {
        grid-column: span 1;
    }
    
    .detail-gallery {
        height: 320px;
    }
    
    .detail-specs-table {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* --- Keyframe Animations --- */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes goldShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* --- Scroll Reveal System --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-scale {
    transform: scale(0.88);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delays for grid children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* --- Gold Shimmer on h2 title --- */
.shimmer-text {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold-primary) 60%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 4s linear infinite;
}

/* --- Hero CTA wrap fix for mobile --- */
.hero-ctas {
    flex-wrap: wrap;
}

/* --- Counter Stat Numbers --- */
.stat-counter {
    display: inline-block;
}

/* --- 480px Ultra-small Mobile Breakpoint --- */
@media (max-width: 480px) {
    .hero-content-wrap h1 {
        font-size: 1.75rem;
    }

    .hero-controls {
        bottom: 16px;
        right: 12px;
        gap: 8px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

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

    .property-grid-card {
        min-width: unset;
    }

    .section-title-wrap h2 {
        font-size: 1.75rem;
    }

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

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .stats-card-overlay {
        position: static;
        margin-top: 20px;
        width: 100%;
    }

    .testimonials-slider-container {
        height: 340px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .inquiry-modal {
        margin: 10px;
    }

    .modal-body {
        padding: 20px;
    }

    .detail-header-strip {
        flex-direction: column;
        gap: 16px;
        text-align: left;
    }

    .detail-header-strip > div:last-child {
        text-align: left;
    }
}

