/* ==========================================================================
   ABS Lantern Apartments — Premium Light-Luxury Stylesheet
   ========================================================================== */

/* Design System & Variables */
:root {
    --bg-light-deep: #0b0f19;      /* Midnight Navy background matching hero overlay */
    --bg-light-card: #121824;      /* Deep Slate Navy for cards */
    --bg-light-header: rgba(11, 15, 25, 0.85); /* Sticky header in dark navy */
    
    --color-accent-gold: #d97706;  /* Logo Gold/Amber */
    --color-accent-light: #e29a24;
    --color-accent-glow: rgba(217, 119, 6, 0.1);
    
    /* Premium High-Contrast CTAs - Gold themed for dark background */
    --color-cta-primary: #d97706;
    --color-cta-hover: #e29a24;
    --color-cta-glow: rgba(217, 119, 6, 0.25);
    
    /* Text Colors - Dark Mode Optimized */
    --text-heading: #ffffff;       /* Pure White for headers */
    --text-body: #ffffff;          /* Pure White for body text */
    --text-muted: #94a3b8;         /* Highly visible silver/grey for muted labels */
    --text-white: #ffffff;
    
    /* Borders & Dividers */
    --border-thin: 1px solid rgba(255, 255, 255, 0.08);
    --border-card: 1px solid rgba(255, 255, 255, 0.08);
    --border-gold: 1px solid rgba(217, 119, 6, 0.25);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
    
    --max-width: 1200px;
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --border-radius-sm: 4px;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light-deep);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65; /* Optimized line-height for compact readability */
    color: var(--text-body);
    background-color: var(--bg-light-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light-deep);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-gold);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 500; /* Lighter font weight for Cormorant Garamond luxury serif */
    line-height: 1.25;
    letter-spacing: 0.2px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reusable Components & Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem; /* Increased padding */
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 2.75rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.w-full { width: 100%; }

.max-w-xl { max-width: 780px; }
.max-w-lg { max-width: 900px; }
.max-w-md { max-width: 600px; }

/* Grid Layouts with Compact, Premium Gaps */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem; /* Tightened gap */
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* Tightened gap */
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.align-center {
    align-items: center;
}

/* Section Header Typography */
.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem; /* Slightly larger, elegant serif title */
    font-weight: 500; /* Lighter font weight for Cormorant Garamond serif */
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-gold) 0%, var(--color-cta-primary) 100%);
    margin-bottom: 1.5rem; /* Tightened margins */
}

.divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 0.88rem; /* Reduced description size */
    color: var(--text-body);
    line-height: 1.75;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem; /* More generous padding for high-end feel */
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--color-cta-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cta-primary);
    border: 2px solid var(--color-cta-primary);
}

.btn-secondary:hover {
    background: var(--color-cta-primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--color-cta-glow);
}

.btn-outline-white {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: var(--text-white);
    color: var(--color-cta-primary);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--text-white);
    gap: 0.6rem;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

/* Header & Navigation */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 120px; /* Increased logo size for better visibility */
    width: auto;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff; /* Bold White primary menu */
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--color-accent-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-light);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff; /* White phone link */
}

.phone-link:hover {
    color: var(--color-accent-light);
}

.icon-phone {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
}

.header-actions .btn-primary {
    background: var(--color-accent-gold);
    color: #ffffff;
}

.header-actions .btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: #ffffff; /* White toggle bars */
    transition: var(--transition-fast);
}

/* Mobile Menu State */
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-light-deep);
    padding: 8rem 2.5rem 2.5rem;
    z-index: 99;
    transition: var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-heading);
}

.mobile-link:hover {
    color: var(--color-accent-gold);
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 95vh; /* Increased for a grand, spacious feel */
    min-height: 750px; /* Ensure ample vertical height on smaller laptops */
    display: flex;
    align-items: center;
    background: url('assets/hero2.png') no-repeat right center/cover;
    padding-top: 170px; /* Offset spacing to clear the absolute transparent header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Left-to-right deep slate gradient with gold-bronze hints at the edge */
    background: linear-gradient(90deg, rgba(18, 21, 30, 0.85) 0%, rgba(30, 41, 59, 0.5) 50%, rgba(217, 119, 6, 0.05) 85%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 3rem);
}

.hero-content {
    max-width: 560px; /* Restrict width so it aligns nicely on the left sky area without overlapping the building */
    margin-top: auto;
    margin-bottom: auto;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    background: rgba(226, 154, 36, 0.12); /* Gold translucent tint */
    border: 1px solid rgba(226, 154, 36, 0.3);
    color: var(--color-accent-light);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem; /* Reduced font size */
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px; /* Pill shape */
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading); /* Modern geometric sans-serif font */
    font-size: 3.15rem; /* Reduced font size from 3.85rem */
    font-weight: 800; /* Extra bold geometric weight */
    line-height: 1.15;
    letter-spacing: -0.5px; /* Tighter letter-spacing for modern sans-serif headings */
    margin-bottom: 1.75rem;
    color: var(--text-white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

.text-gradient {
    background: linear-gradient(135deg, #d97706 0%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: inherit;
}

.text-gold {
    color: #fcd34d;
    font-weight: inherit;
}

.hero-description {
    font-family: 'Raleway', sans-serif;
    font-weight: 500; /* Raleway Medium */
    font-size: 0.85rem; /* Reduced description font size */
    color: rgba(253, 251, 247, 0.95); /* Soft ivory cream for a more attractive, unified look */
    margin-bottom: 2.25rem;
    line-height: 1.75;
    max-width: 680px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.25px; /* Clean tracking for Raleway */
}

.hero-actions-container {
    display: flex;
    gap: 1.5rem;
}

.hero-actions-container .btn-primary {
    background: var(--color-accent-gold);
    color: #ffffff;
}

.hero-actions-container .btn-primary:hover {
    background: var(--color-accent-light);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.hero-actions-container .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.hero-actions-container .btn-secondary:hover {
    background: #ffffff;
    color: var(--color-cta-primary);
}

.trust-badges-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.25rem 0;
    margin-top: auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.badge-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.badge-icon svg {
    width: 22px;
    height: 22px;
}

.badge-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--text-white);
}

.badge-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-banks-logos {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    margin-top: 1.5rem !important;
}

.hero-banks-logos span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

/* Scroll Animation */
.scroll-anim {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sections Global Styling (Compact Padding) */
section {
    padding: 4rem 0; /* Reduced padding to minimize blank space */
    position: relative;
    border-bottom: 1px solid rgba(217, 119, 6, 0.08);
}

/* About Us Section */
.about-section {
    background-color: var(--bg-light-deep);
}

.about-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-paragraph {
    margin-bottom: 1.5rem;
    font-size: 0.88rem; /* Reduced description size */
    line-height: 1.8;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    list-style: none;
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
}

.about-highlights-grid li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
}

.icon-check {
    width: 16px;
    height: 16px;
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.about-cta-container {
    margin-top: 1rem;
}

.about-image-wrapper {
    position: relative;
    padding-right: 1.75rem;
    padding-bottom: 1.75rem;
}

.about-image {
    width: 100%;
    height: auto; /* Natural aspect ratio (real size) */
    border-radius: var(--border-radius-md);
    position: relative;
    z-index: 2;
    border: var(--border-thin);
    box-shadow: 0 15px 40px rgba(165, 150, 130, 0.12);
}

.image-accent-border {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 1.75rem);
    height: calc(100% - 1.75rem);
    border: 2px solid var(--color-accent-gold);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.image-experience-tag {
    position: absolute;
    top: 2rem;
    left: -1.75rem;
    background: var(--bg-light-card);
    border: 1px solid #ebd9c3;
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.75rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 12px 30px rgba(165, 150, 130, 0.15);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-accent-gold);
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-heading);
    margin-top: 0.25rem;
    font-weight: 700;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #070a12; /* Alternating section contrast (darker midnight navy) */
}

.feature-card {
    background: var(--bg-light-card);
    border: var(--border-thin);
    border-radius: var(--border-radius-lg);
    padding: 2.25rem 1.75rem; /* Compact internal padding */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 119, 6, 0.25);
    background: linear-gradient(180deg, var(--bg-light-card) 0%, rgba(217, 119, 6, 0.04) 100%);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.15), 0 0 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-md);
    background: var(--color-accent-glow);
    border: var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .card-icon-box {
    background: var(--color-accent-gold);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.2);
}

.card-icon-box svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Apartment Features Section */
.features-section {
    background-color: var(--bg-light-deep);
}

.features-checklist-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-paragraph {
    margin-bottom: 2.25rem;
    font-size: 0.88rem;
}

.features-grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.75rem; /* Compact gaps */
    list-style: none;
}

.features-grid-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-accent-glow);
    color: var(--color-accent-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
    border: 1px solid rgba(217, 119, 6, 0.15);
}

.list-icon svg {
    width: 14px;
    height: 14px;
}

.features-grid-list li span:last-child {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
}

.features-grid {
    align-items: stretch; /* Stretch columns to equal height */
}

.features-image-container {
    position: relative;
    height: 100%;
}

.features-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    border: var(--border-thin);
    transition: var(--transition-smooth);
    height: 100%; /* Stretch to fill container */
}

.features-image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(217, 119, 6, 0.12);
}

.features-image {
    width: 100%;
    height: 100%; /* Match parent height exactly */
    object-fit: cover; /* Cover crop to prevent squishing */
    display: block;
    position: relative;
    z-index: 1;
}

.image-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(18, 21, 30, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-sm);
    letter-spacing: 0.5px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* Specifications Accordions (Clean Light Table Style) */
.specs-section {
    background-color: #070a12; /* Alternating section contrast (darker midnight navy) */
}

.specs-matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.specs-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.specs-column-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(217, 119, 6, 0.25);
}

.specs-col-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-md);
    background: var(--color-accent-glow);
    color: var(--color-accent-gold);
    border: var(--border-gold);
    flex-shrink: 0;
}

.specs-col-icon svg {
    width: 18px;
    height: 18px;
}

.specs-column-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -0.3px;
}

.specs-item-card {
    background: var(--bg-light-card);
    border: var(--border-thin);
    border-radius: var(--border-radius-md);
    padding: 1.35rem 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
}

.specs-item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.12);
}

.specs-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.specs-item-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.specs-item-num {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-accent-gold);
    line-height: 1;
}

.specs-item-meta h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
}

.specs-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.3);
    color: var(--color-accent-light);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-item-card p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text-body);
}

/* Location Section */
.location-section {
    background-color: var(--bg-light-deep);
}

.location-grid {
    align-items: stretch; /* Match map container height perfectly with text container */
}

.location-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-paragraph {
    margin-bottom: 2.25rem;
    font-size: 0.88rem; /* Reduced description size */
}

.landmark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.landmark-chip {
    background: var(--bg-light-card);
    border: 1px solid #ebd9c3;
    border-radius: var(--border-radius-md);
    padding: 0.95rem 1.15rem; /* Compact chip padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(165, 150, 130, 0.03);
}

.landmark-chip:hover {
    border-color: var(--color-accent-gold);
    background: rgba(217, 119, 6, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(165, 150, 130, 0.08);
}

.chip-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
}

.chip-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    background: var(--color-accent-glow);
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: 4px;
    padding: 0.3rem 0.6rem;
    text-transform: uppercase;
}

.location-map-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%; /* Stretch to equal height */
    min-height: 420px; /* Minimum visual height */
    border: var(--border-thin);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.gmap-iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Clean standard map loading style, no inversion filters to ensure clear daylight rendering */
}

.map-overlay-tag {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--bg-light-card);
    border: var(--border-thin);
    border-radius: var(--border-radius-sm);
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-heading);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    z-index: 5;
}

.map-overlay-tag svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-gold);
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 7rem 0; /* Adjusted padding to reduce empty vertical space */
    border-top: 1px solid rgba(217, 119, 6, 0.25); /* Elegant gold top border */
    border-bottom: 1px solid rgba(217, 119, 6, 0.25); /* Elegant gold bottom border */
    overflow: hidden;
}

.lifestyle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lifestyle-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lifestyle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed white layer gradient, using rich translucent dark slate overlay for maximum image visibility and high-contrast text readability */
    background: rgba(18, 21, 30, 0.65);
}

.lifestyle-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(217, 119, 6, 0.12); /* Translucent gold badge */
    border: 1px solid rgba(217, 119, 6, 0.35);
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    color: var(--color-accent-light);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-pin-icon {
    width: 14px;
    height: 14px;
    color: var(--color-accent-gold);
}

.lifestyle-tag {
    display: inline-block;
    color: var(--color-accent-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.lifestyle-heading {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.75rem;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.lifestyle-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Why Invest Section */
.invest-section {
    background-color: var(--bg-light-deep);
}

.invest-grid-container {
    align-items: stretch; /* Stretch columns to equal height */
}

.invest-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.invest-paragraph {
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.8;
}

.invest-advisory-box {
    background: rgba(217, 119, 6, 0.04);
    border-left: 3px solid var(--color-accent-gold);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.invest-advisory-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 0.35rem;
    font-family: var(--font-body);
}

.invest-advisory-box p {
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--text-body);
}

.invest-stats-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.invest-advisory-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.invest-advisory-wrapper .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem; /* Reduced gap from 2rem */
}

.stat-box {
    background: var(--bg-light-card);
    border: var(--border-thin);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 1.15rem; /* Reduced padding from 2.5rem 1.75rem */
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.stat-box:hover {
    border-color: var(--color-accent-gold);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.12); /* Dark-friendly gold shadow */
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem; /* Reduced size from 2.5rem */
    font-weight: 800;
    color: var(--color-accent-gold);
    margin-bottom: 0.25rem; /* Reduced margin from 0.5rem */
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.78rem; /* Reduced label size from 0.9rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-heading);
}

/* Call to Action Banner */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #12151e 100%); /* Deep Slate Gradient */
    border-top: 1px solid rgba(217, 119, 6, 0.15);
    border-bottom: 1px solid rgba(217, 119, 6, 0.15);
    padding: 3rem 0; /* Reduced padding from 5.5rem */
}

.cta-title {
    font-size: 2.1rem; /* Reduced title size from 3rem */
    font-weight: 800;
    color: #ffffff; /* White text */
    margin-bottom: 0.75rem; /* Reduced margin from 1.5rem */
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 0.85rem; /* Reduced description size */
    color: rgba(255, 255, 255, 0.9); /* Translucent white text */
    margin-bottom: 1.5rem; /* Reduced margin from 2.75rem */
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem; /* Reduced gap from 1.75rem */
}

.cta-section .btn-primary {
    background: var(--color-accent-gold);
    color: #ffffff;
}

.cta-section .btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.35);
}

/* Contact & Enquiry Form Section */
.contact-section {
    background-color: var(--bg-light-deep);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-paragraph {
    margin-bottom: 3rem;
    font-size: 0.88rem; /* Reduced description size */
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin-bottom: 3.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.item-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--border-radius-md);
    background: var(--color-accent-glow);
    border: var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

.item-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-heading);
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-body);
}

.contact-link:hover {
    color: var(--color-accent-gold);
}

.whatsapp-card {
    background: var(--bg-light-card);
    border: 1px dashed rgba(37, 211, 102, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 2.25rem;
    box-shadow: 0 4px 20px rgba(165, 150, 130, 0.03);
}

.whatsapp-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

.whatsapp-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.icon-whatsapp {
    width: 20px;
    height: 20px;
}

/* Form Styles */
.contact-form-wrapper {
    background: var(--bg-light-card);
    border: var(--border-thin);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem; /* Compact padding */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

.contact-form-wrapper p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.lead-capture-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-sm);
    padding: 0.95rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(226, 154, 36, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* Form Status Styles */
.form-status {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.form-success-message {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #15803d;
}

.form-error-message {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #b91c1c;
}

.icon-success {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Grounding Footer */
.footer {
    background-color: #12151e; /* Deep dark slate footer for elegant design contrast */
    padding-top: 4.5rem; /* Compact padding */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #94a3b8;
}

.footer h1, .footer h2, .footer h3, .footer h4 {
    color: #ffffff;
}

.footer-top {
    padding-bottom: 3.5rem; /* Compact padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.branding-col {
    grid-column: span 1;
}

.footer-logo {
    height: 96px;
    width: auto;
}

.footer-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
}

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

.social-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    transition: var(--transition-fast);
}

.social-link-icon:hover {
    background: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    color: var(--text-white);
    transform: translateY(-2px);
}

.icon-social {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent-gold);
}

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

.footer-links a {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 4px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.footer-contact-info a:hover {
    color: var(--color-accent-light);
}

.text-sm {
    font-size: 0.85rem;
}

.text-gray-400 {
    color: #94a3b8;
}

.footer-ctas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.footer-bottom {
    padding: 2.25rem 0;
    font-size: 0.8rem;
    color: #64748b;
}

/* Modal Booking Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 1.5rem;
}

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

.modal-container {
    background: var(--bg-light-card);
    border: var(--border-thin);
    border-radius: var(--border-radius-lg);
    width: 95%;
    max-width: 480px;
    max-height: 90vh;         /* Never exceed viewport height */
    overflow-y: auto;         /* Scroll if content overflows */
    padding: 1.75rem 2rem;    /* Reduced padding */
    position: relative;
    transform: translateY(-40px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(217, 119, 6, 0.04);
    scrollbar-width: thin;
    scrollbar-color: rgba(217,119,6,0.3) transparent;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-cta-primary);
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-accent-gold);
    color: var(--text-white);
    transform: scale(1.1);
}

.modal-header {
    margin-bottom: 1rem;    /* Reduced from 1.5rem */
    padding-right: 2rem;
}

.modal-header h3 {
    font-size: 1.4rem;      /* Reduced from 1.75rem */
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-heading);
}

.modal-header p {
    font-size: 0.82rem;     /* Reduced from 0.9rem */
    color: var(--text-muted);
    line-height: 1.4;
}

/* Modal Form Specific Compactness */
.modal-container .lead-capture-form {
    gap: 0.65rem;           /* Tighter row gaps */
}

.modal-container .form-group {
    gap: 0.25rem;
}

.modal-container .form-group label {
    font-size: 0.78rem;
}

.modal-container .form-group input,
.modal-container .form-group textarea {
    padding: 0.6rem 0.85rem;  /* Slightly more compact */
    font-size: 0.85rem;
}

.modal-container .form-group textarea {
    rows: 2;
    min-height: 60px;
    max-height: 80px;
}

.modal-container .btn {
    padding: 0.8rem 1.5rem;   /* Compact button */
    font-size: 0.9rem;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design Adaptability */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    section {
        padding: 4.5rem 0; /* Reduced padding on tablet */
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0; /* More balanced mobile section padding */
    }
    
    .container {
        padding: 0 1.25rem; /* Clean aligned margins */
    }
    
    .header-container {
        padding: 1.25rem 1.25rem; /* Aligned with container */
    }
    
    .logo-img {
        height: 80px; /* Increased from 64px on mobile for better visibility */
    }
    
    .nav-menu,
    .phone-link,
    .header-actions .btn-primary {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-section {
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 9rem; /* Offset spacing to clear the absolute transparent header on mobile */
        padding-bottom: 4rem;
        background: url('assets/hero_mobile.png') no-repeat center center/cover;
    }
    
    .hero-container {
        height: auto;
        justify-content: center;
        gap: 2rem;
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 1.85rem; /* Reduced font size from 2.15rem */
    }
    
    .hero-title br,
    .hero-description br {
        display: none;
    }
    
    .hero-description {
        font-size: 0.78rem; /* Reduced mobile description size */
        margin-bottom: 2.25rem;
    }
    
    .hero-actions-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-actions-container .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .trust-badges-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem 0;
    }
    
    .features-grid-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .features-image-wrapper {
        height: 380px; /* Fixed height on mobile stacked view */
    }
    
    .landmark-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .about-image {
        height: auto; /* Real size aspect ratio on mobile */
    }
    
    .about-highlights-grid {
        grid-template-columns: 1fr; /* Stack checkmarks vertically to prevent overlapping on mobile */
        gap: 1rem;
    }
    
    .image-experience-tag {
        left: 0; /* Keep within viewport boundaries on mobile */
    }
    
    .location-map-container {
        height: 380px;
    }
    
    .specs-matrix-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lifestyle-heading {
        font-size: 2.5rem;
    }
    
    .lifestyle-desc {
        font-size: 0.84rem;
    }
    
    .invest-grid {
        gap: 1rem;
    }
    
    .invest-stats-wrapper {
        height: auto;
        display: block;
    }
    
    .stat-box {
        padding: 1.25rem 0.85rem; /* Reduced mobile padding */
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 3rem 2.25rem;
    }
    
    .modal-container {
        padding: 1.25rem 1.25rem;
        max-height: 85vh;    /* Tighter on mobile */
        border-radius: var(--border-radius-md);
    }
    
    .branding-col {
        grid-column: span 2;
    }
}

@media (max-width: 580px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .invest-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .branding-col {
        grid-column: span 1;
    }
    
    .hero-actions-container {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .hero-actions-container .btn {
        width: 100%;
    }
    
    .footer-ctas-grid {
        grid-template-columns: 1fr;
    }
}
/* Floating WhatsApp Action Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2.5s infinite;
    text-decoration: none;
}

.floating-whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(18, 24, 36, 0.95);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }
    
    .floating-whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
