/* Krushika Core Design System - Premium Nature Aesthetic */



:root {
    /* Color Palette - Inspired by Calmara */
    --color-forest: #1A2C21;
    --color-sage: #CED5C2;
    --color-cream: #F4F6F0;
    --color-accent: #DC6B2C;
    /* Subtle Orange */
    --color-gold: #C5A059;
    --color-white: #FFFFFF;
    --color-slate: #2D2D2D;
    --color-parchment: #E8EBE0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Radii */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --radius-lg: 24px;
    --radius-md: 12px;
    --radius-sm: 6px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-parchment);
}

::-webkit-scrollbar-thumb {
    background: var(--color-forest);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.category-title {
    margin-bottom: var(--space-md);
    color: var(--color-forest);
}

body.theme-night .category-title {
    color: var(--color-white);
}

body {
    font-family: var(--font-body);
    color: var(--color-forest);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    /* color: var(--color-forest); */
    letter-spacing: -0.02em;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--space-lg) 0;
}

/* Buttons - Pill Shaped */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1.5px solid transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-forest);
    color: var(--color-forest);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* Glassmorphism Classes (Deprecated for Nav) */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* SEO Friendly Headings */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: color 0.5s ease;
}

.hero-slide.light-bg .hero-title,
.hero-slide.light-bg p {
    color: var(--color-forest) !important;
    text-shadow: none !important;
}

.hero-slide.light-bg::after {
    background: rgba(255, 255, 255, 0.2) !important;
    /* Lighter overlay for light themes if needed */
}

/* Hero Slider Styles */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    color: var(--color-white);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* background-image set inline */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Ensure image stays behind content */
}

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

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 44, 33, 0.6) 0%, rgba(26, 44, 33, 0.2) 50%, rgba(26, 44, 33, 0.7) 100%);
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.slider-dots {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

.dot.active {
    background-color: var(--color-white);
    transform: scale(1.5);
}

/* Stats Bar */
.stats-bar {
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 2fr;
    gap: 2rem;
    align-items: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-item .accent {
    color: var(--color-accent);
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-item.mini-desc p {
    font-size: 1.1rem;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: normal;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item.mini-desc {
        grid-column: span 2;
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-sm);
    color: var(--color-forest);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-forest);
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

body.theme-night .section-header p {
    color: var(--color-sage);
    opacity: 0.8;
}

/* Micro-animations */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Dynamic Themes (User-based) */


body.theme-night {
    background-color: #121d17;
    color: #e0e0e0;
}

body.theme-night h1,
body.theme-night h2,
body.theme-night h3,
body.theme-night .section-title {
    color: var(--color-gold);
}

body.theme-night .feature-card,
body.theme-night .portfolio-card {
    background: #1a2c21;
    border-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

body.theme-night .feature-card p,
body.theme-night .portfolio-card p {
    color: #b0b0b0;
}

/* Theme Toggle Buttons */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-parchment);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.theme-toggle-btn.active {
    background: var(--color-gold);
    color: var(--color-forest);
    border-color: var(--color-gold);
}

/* Refined Themes */




/* Property Page Grid */
.property-grid-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-lg);
}

@media (max-width: 992px) {
    .property-grid-wrapper {
        grid-template-columns: 1fr;
    }
}


/* Instagram Recent Carousel (About Page) */
.ig-recent-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
    /* Add some breathing room */
}

.ig-recent-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.ig-carousel-item {
    flex: 0 0 350px;
    max-width: 350px;
}

@media (max-width: 768px) {
    .ig-carousel-item {
        flex: 0 0 85vw;
        /* Almost full width on mobile */
        max-width: 85vw;
    }
}


/* Performance Optimized Utilities */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

/* --- Mobile Responsiveness --- */

/* Global Mobile Styles */
@media (max-width: 768px) {
    .section-padding {
        padding: var(--space-md) 0;
    }

    .hero-actions {
        display: none !important;
        /* Hide buttons on mobile per user request */
    }

    .hero-actions .btn {
        margin: 0 !important;
    }
}

/* Navbar Mobile */
@media (max-width: 992px) {
    .navbar {
        flex-direction: row;
        gap: 0;
        padding: 0;
    }

    .nav-links {
        display: none;
        /* Hide by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-forest);
        flex-direction: column;
        gap: 0;
        padding: var(--space-md) 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important;
        /* Force display when active */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }
}

.desktop-only {
    display: inline-flex;
}

.mobile-only {
    display: none;
}

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

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .mobile-menu-toggle {
        background: none;
        border: none;
        color: var(--color-white);
        font-size: 2rem;
        /* Even larger for better touch */
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:active {
        transform: scale(0.9) rotate(5deg);
    }
}

@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Secondary Page Header */
.page-header {
    background-color: var(--color-forest);
    padding-top: 180px;
    /* Space for fixed nav */
    padding-bottom: 80px;
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: var(--space-xs);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Property Explorer Mobile */
@media (max-width: 768px) {
    .explorer-grid {
        grid-template-columns: 1fr !important;
    }

    #map-preview {
        height: 300px !important;
        order: -1;
        /* Move map above list on mobile */
    }

    #property-list {
        max-height: none !important;
    }
}

@media (min-width: 993px) {
    .nav-links {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 3rem;
    }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
}

.main-header.scrolled {
    background-color: var(--color-forest) !important;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
    z-index: 1001;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Visibility on light backgrounds */
}

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

.logo-img {
    height: 35px;
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
    opacity: 0.7;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-forest) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--color-forest);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Footer Social Buttons */
.social-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.social-btn:hover {
    background: var(--color-gold);
    color: var(--color-forest);
    transform: translateY(-3px);
}

.whatsapp-float i {
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 44, 33, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    background: var(--color-sage);
    transform: translateY(-10px);
}

.feature-card .icon-circle {
    width: 60px;
    height: 60px;
    background: var(--color-forest);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Portfolio Section */
.property-sidebar {
    margin-top: var(--space-lg);
}


.portfolio-category {
    margin-bottom: var(--space-xl);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: var(--space-md);
}

@media (min-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.portfolio-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(26, 44, 33, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    transform: scale(1.05);
}

.portfolio-card:hover::before {
    opacity: 0.2; /* Adjusted for better visibility of property images */
    transform: scale(1);
}

.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 44, 33, 0) 0%, rgba(26, 44, 33, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.portfolio-card:hover::after {
    opacity: 1;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-card {
        padding: 2rem;
    }
}

.portfolio-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(26, 44, 33, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.portfolio-card p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 44, 33, 0.08);
    border-color: var(--color-sage);
}

.category-tag {
    display: inline-block;
    padding: 2px 12px;
    background: var(--color-parchment);
    color: var(--color-forest);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Modal System */
.modal {
    display: none;
    position: fixed;
    z-index: 11000;
    /* Higher than main-header (10000) */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(26, 44, 33, 0.6);
    /* Forest green overlay */
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.modal-content {
    background: var(--color-white);
    margin: 5vh auto;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(26, 44, 33, 0.1);
    width: 92%;
    max-width: 500px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--color-slate);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

/* Form Styling */
/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    justify-content: center;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    body {
        padding-bottom: 80px;
        /* Space for sticky button */
    }

    .whatsapp-float {
        display: none !important;
    }
}

.btn-whatsapp-mobile,
.btn-phone-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    color: white;
}

.btn-whatsapp-mobile {
    background-color: #25d366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-mobile:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

.btn-phone-mobile {
    background-color: var(--color-gold);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.btn-phone-mobile:hover {
    background-color: #b08d4d;
    transform: scale(1.05);
}

.enquiry-form .form-group {
    margin-bottom: var(--space-sm);
}

.enquiry-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-forest);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(26, 44, 33, 0.1);
    border-radius: 12px;
    /* More rounded as seen in premium UI */
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fdfdfd;
    transition: var(--transition-smooth);
}

.enquiry-form input:focus,
.enquiry-form select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

/* Enhanced Instagram Gallery - Grid Layout */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .ig-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ig-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Instagram Gallery - Masonry Layout (for Gallery Page) */
.ig-masonry {
    column-count: 4;
    column-gap: 20px;
    margin-top: 50px;
}

.ig-masonry .ig-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
}

@media (max-width: 1200px) {
    .ig-masonry {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .ig-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .ig-masonry {
        column-count: 1;
    }
}

.ig-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: inline-block;
    /* Required for Masonry columns */
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(26, 44, 33, 0.05);
    break-inside: avoid;
}

.ig-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ig-media-container {
    position: relative;
    overflow: hidden;
    background: #000;
    margin: 0 auto;
    width: 90%;
    /* 10% reduction as requested */
    margin-top: 15px;
    /* Add some top spacing inside the card */
    border-radius: var(--radius-sm);
}

.ig-media-container img,
.ig-media-container video {
    width: 100%;
    height: auto;
    /* Allow natural height */
    display: block;
}

/* Video/Reel Specifics */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    pointer-events: none;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.ig-card:hover .play-overlay {
    background: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* Carousel Specifics */
.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

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

.carousel-dot.active {
    background: var(--color-gold);
    width: 16px;
    border-radius: 10px;
}

/* Description Block */
.ig-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}



.ig-caption {
    font-size: 0.95rem;
    color: var(--color-forest);
    line-height: 1.6;
}

.caption-full {
    display: none;
}

.description-block.expanded .caption-short {
    display: none;
}

.description-block.expanded .caption-full {
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--color-gold);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    margin-top: 8px;
    transition: var(--transition-smooth);
}

.read-more-btn:hover {
    opacity: 0.7;
}

.ig-meta {
    margin-top: auto;
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ig-meta a {
    color: var(--color-gold) !important;
    font-weight: 700;
}

.ig-flat-icon {
    color: var(--color-forest);
    font-size: 1.4rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ig-flat-icon:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

body.theme-night .ig-flat-icon {
    color: var(--color-white);
}

body.theme-night .ig-flat-icon:hover {
    color: var(--color-gold);
}

/* Map Labels */
.map-label {
    background: var(--color-forest) !important;
    border: 1px solid var(--color-gold) !important;
    color: white !important;
    font-weight: 600 !important;
    font-family: var(--font-heading) !important;
    border-radius: 4px !important;
    padding: 2px 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--color-cream);
}

.section-header.center-aligned {
    text-align: center;
    margin-bottom: var(--space-md);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--color-forest);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.faq-item h3 i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--color-gold);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 0.95rem;
    color: var(--color-forest);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.faq-item.active h3 i {
    transform: rotate(180deg);
}

.faq-item.active p {
    max-height: 200px;
    /* Adjust based on content */
    opacity: 0.8;
    padding-bottom: 20px;
    margin-top: 5px;
}

/* Night Mode Overrides for FAQ */
body.theme-night .faq-section {
    background-color: #15221b;
    /* Slightly lighter than main bg */
}

body.theme-night .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.theme-night .faq-item h3 {
    color: var(--color-gold);
}

body.theme-night .faq-item p {
    color: #b0b0b0;
}

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-md);
}

.blog-card {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    transition: var(--transition-smooth);
}

.blog-card .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
}

.blog-card .title {
    font-size: 1.5rem;
    margin: 10px 0;
    color: var(--color-forest);
}

.blog-card .excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.blog-card .date {
    font-size: 0.8rem;
    color: #999;
}

.blog-card .read-more {
    color: var(--color-forest);
    font-weight: 600;
    text-decoration: none;
}

/* Dark Theme Overrides for Blog Card */
body.theme-night .blog-card {
    background: #1a2c21;
    border-color: rgba(255, 255, 255, 0.1);
}

body.theme-night .blog-card .title {
    color: var(--color-white);
}

body.theme-night .blog-card .excerpt {
    color: #b0b0b0;
}

body.theme-night .blog-card .meta {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.theme-night .blog-card .date {
    color: #888;
}

body.theme-night .blog-card .read-more {
    color: var(--color-gold);
}

/* Newsletter Box */
.newsletter-box {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    background: var(--color-parchment);
}

.newsletter-box .section-title {
    margin-bottom: 10px;
}

.newsletter-box p {
    margin-bottom: 25px;
    color: var(--color-forest);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

.newsletter-input {
    flex-grow: 1;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: var(--color-white);
    color: var(--color-forest);
}

/* Dark Theme Overrides for Newsletter */
body.theme-night .newsletter-box {
    background: #1a2c21;
    /* Match card bg or slightly different */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-night .newsletter-box p {
    color: #e0e0e0;
}

body.theme-night .newsletter-input {
    background: #2d2d2d;
    border-color: #444;
    color: var(--color-white);
}

/* Global Article Content Styles */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-forest);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: var(--color-forest);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    font-weight: 700;
    color: inherit;
}

/* Highlight Box */
.highlight-box {
    background: var(--color-parchment);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 4px solid var(--color-gold);
    color: var(--color-forest);
}

.highlight-box h4 {
    margin-top: 0;
}

/* Dark Mode Overrides for Article Content */
body.theme-night .article-content {
    color: #e0e0e0;
}

body.theme-night .article-content h1,
body.theme-night .article-content h2,
body.theme-night .article-content h3,
body.theme-night .article-content h4,
body.theme-night .article-content h5,
body.theme-night .article-content h6 {
    color: var(--color-gold);
}

body.theme-night .highlight-box {
    background: #1a2c21;
    color: #e0e0e0;
}

body.theme-night .highlight-box h4 {
    color: var(--color-gold);
}

body.theme-night .post-meta {
    color: #aaa;
}

body.theme-night .post-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Properties Explorer Styles */
.filters-container {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: var(--color-white);
    border: 1px solid rgba(197, 160, 89, 0.2);
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.filter-group {
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 0.5rem;
}

.filter-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    width: 100%;
    color: var(--color-forest);
}

.explorer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-md);
}

.property-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.property-list-card {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    background: var(--color-white);
    transition: var(--transition-smooth);
}

.property-list-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.property-thumb {
    width: 100px;
    height: 100px;
    background: #eee;
    border-radius: 4px;
    flex-shrink: 0;
    background-size: cover !important;
    background-position: center !important;
}

.property-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-forest);
}

.property-info p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.property-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
}

#map-preview {
    height: 600px;
    border-radius: 12px;
    z-index: 1;
    background: #eee;
    /* Placeholder */
}

/* Dark Mode Overrides for Properties */
body.theme-night .filters-container {
    background: #1a2c21;
    border-color: rgba(255, 255, 255, 0.1);
}

body.theme-night .filter-group label {
    color: #e0e0e0;
}

body.theme-night .filter-group select {
    background: #121d17;
    border-color: rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
}

body.theme-night .property-list-card {
    background: #1a2c21;
    border-color: rgba(255, 255, 255, 0.1);
}

body.theme-night .property-list-card:hover {
    border-color: var(--color-gold);
}

body.theme-night .property-info h3 {
    color: var(--color-white);
}

body.theme-night .property-info p {
    color: #aaa;
}

@media (max-width: 768px) {
    .explorer-grid {
        grid-template-columns: 1fr;
    }

    #map-preview {
        order: -1;
        height: 300px;
    }
}

/* New Section Styling Updates */

/* About Portfolio Section */
.about-portfolio {
    background-color: var(--color-cream);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(26, 44, 33, 0.05);
}

.portfolio-explainer {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(26, 44, 33, 0.03);
}

.portfolio-explainer h5 {
    font-size: 1.4rem;
    color: var(--color-forest);
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-explainer p {
    font-size: 1.05rem;
    color: var(--color-forest);
    opacity: 0.8;
    line-height: 1.7;
}

/* Enhanced Filters */
.filters-container {
    background: var(--color-white);
    border: 1px solid rgba(26, 44, 33, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    gap: 1.5rem;
}

.filter-group label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

/* Custom Checkbox Pills */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.checkbox-pill {
    position: relative;
    cursor: pointer;
}

.checkbox-pill input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-pill span {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-white);
    border: 1px solid var(--color-sage);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-forest);
    transition: var(--transition-smooth);
    font-weight: 500;
}

.checkbox-pill:hover span {
    border-color: var(--color-forest);
    background-color: var(--color-cream);
}

.checkbox-pill input:checked~span {
    background-color: var(--color-forest);
    color: var(--color-white);
    border-color: var(--color-forest);
    box-shadow: 0 4px 12px rgba(26, 44, 33, 0.2);
}

/* Dark Mode Overrides for New Sections */
body.theme-night .about-portfolio {
    background-color: #15221b;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.theme-night .portfolio-explainer {
    background: #1a2c21;
    color: #e0e0e0;
}

body.theme-night .portfolio-explainer h5 {
    color: var(--color-gold);
}

body.theme-night .portfolio-explainer p {
    color: #b0b0b0;
}

body.theme-night .filters-container {
    background: #1a2c21;
    border-color: rgba(255, 255, 255, 0.1);
}

body.theme-night .filter-group label {
    color: var(--color-sage);
}

body.theme-night .checkbox-pill span {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

body.theme-night .checkbox-pill:hover span {
    border-color: var(--color-gold);
    color: var(--color-white);
}

body.theme-night .checkbox-pill input:checked~span {
    background: var(--color-gold);
    color: var(--color-forest);
    border-color: var(--color-gold);
}

/* Footer Theme Styles */
.footer-section {
    background: var(--color-forest);
    color: var(--color-parchment);
}

body.theme-night .footer-section {
    background: #0f1813;
    /* Darker than standard forest */
    color: #b0b0b0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-night .footer-brand p {
    color: #999;
}

body.theme-night .footer-links h4,
body.theme-night .footer-contact h4 {
    color: var(--color-gold) !important;
}

/* Desktop Header Icons */
.btn-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-header-phone {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    margin-left: 10px;
}

.btn-header-phone:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-forest);
    transform: scale(1.05);
}

/* Desktop header phone icon overrides for transparency */
.main-header.scrolled .btn-header-phone {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Dark mode adjustment for header icon if needed */
body.theme-night .btn-header-phone {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

body.theme-night .btn-header-phone:hover {
    background-color: var(--color-gold);
    color: var(--color-forest);
}

/* FAQ Grid Layout Override */
.faq-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    max-width: 1000px !important;
}

.faq-item {
    margin-bottom: 0 !important;
    height: 100%;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Property Page Enhancements */
.property-roi-section {
    background: var(--color-parchment);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(26, 44, 33, 0.1);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.roi-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid var(--color-gold);
}

.roi-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-forest);
    display: block;
    margin-bottom: 5px;
}

.roi-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.connectivity-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.connectivity-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.95rem;
}

.connectivity-item:first-child {
    border-top: 1px dashed #ddd;
}

.connectivity-time {
    font-weight: 700;
    color: var(--color-gold);
}

/* Property FAQ */
.property-faq-container {
    margin-top: 2rem;
}

.p-faq-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.p-faq-question {
    background: white;
    padding: 15px 45px 15px 15px; /* Space for icon */
    font-weight: 600;
    color: var(--color-forest);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.p-faq-question::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.p-faq-item.active .p-faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.p-faq-item.active .p-faq-question {
    background: #f9f9f9;
}

.p-faq-answer {
    padding: 0 15px; /* Start with 0 padding-bottom for smooth collapse */
    max-height: 0;
    overflow: hidden;
    background: #fdfdfd;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.p-faq-item.active .p-faq-answer {
    padding: 15px;
    max-height: 500px;
    border-top: 1px solid #eee;
    opacity: 1;
}

@media (max-width: 768px) {
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* --- Property Page Enhancements --- */

/* Highlights Grid */
.highlights-grid {
    display: grid;
    gap: 1.5rem;
}

.highlight-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    transition: background-color 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background-color: var(--color-gold) !important;
    transform: scale(1.2);
}

/* Lightbox (Simple) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* --- Unified Enquiry Form Styles --- */
.enquiry-form .form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.enquiry-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-forest);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(26, 44, 33, 0.15);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.success-message {
    text-align: center;
    padding: var(--space-md);
    animation: fadeInUp 0.5s ease-out;
}

.success-message h3 {
    color: var(--color-forest);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #666;
    font-size: 0.95rem;
}

body.theme-night .enquiry-form label {
    color: var(--color-sage);
}

body.theme-night .enquiry-form input,
body.theme-night .enquiry-form select,
body.theme-night .enquiry-form textarea {
    background: #1a2c21;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

body.theme-night .success-message h3 {
    color: var(--color-gold);
}

/* Property Details Enhancements */
.lifestyle-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-forest);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 44, 33, 0.2);
    transition: var(--transition-smooth);
}

.lifestyle-item:hover .lifestyle-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--color-gold);
    color: var(--color-forest);
}

/* Footer Accessibility */
.footer-links a:hover, 
.footer-contact a:hover {
    text-decoration: underline !important;
}