/* 
    Hotel Casa de la Sierra - Premium Design System
    Aesthetic: Dark Luxury Eco-Hotel
*/

:root {
    /* Colors - Emerald & Gold Palette */
    --primary-50: #eaf6f0;
    --primary-100: #d1ebd1;
    --primary-200: #a3d7bc;
    --primary-300: #75c3a7;
    --primary-400: #47af92;
    --primary-500: #2d6a4f;
    /* Main Emerald */
    --primary-600: #255741;
    --primary-700: #1d4433;
    --primary-800: #153125;
    --primary-900: #0d1e17;

    --accent-gold: #c9a227;
    --accent-gold-light: #dfc266;

    /* Backgrounds */
    --bg-primary: #000000;
    --bg-secondary: #09090b;
    --bg-tertiary: #18181b;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #e4e4e7;
    --text-tertiary: #a1a1aa;
    --text-quaternary: #71717a;

    /* Status */
    --success: #22c55e;
    --info: #3b82f6;
    --warning: #f59e0b;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Light Theme Variables */
.light-theme {
    --bg-primary: #fdfcf8;
    --bg-secondary: #f1efec;
    --bg-tertiary: #e5e2df;

    --text-primary: #1a2d23;
    --text-secondary: #3a4d43;
    --text-tertiary: #5a6d63;
    --text-quaternary: #7a8d83;

    --primary-500: #4b6f5f;
    --primary-400: #5c8070;
    --primary-600: #3a5e4e;

    --accent-gold: #b38a1d;
}

.light-theme .mobile-menu {
    background-color: var(--bg-primary);
}

.light-theme .mobile-link {
    color: var(--text-primary);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.light-theme .footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.light-theme .footer-brand-name,
.light-theme .footer-col h4,
.light-theme .footer-col a,
.light-theme .footer-col address,
.light-theme .footer-bottom p {
    color: var(--text-primary);
}

.light-theme .glass-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(75, 111, 95, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.light-theme .navbar.scrolled {
    background: rgba(253, 252, 248, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.light-theme .form-group input,
.light-theme .form-group select,
.light-theme .form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.light-theme .form-group select option {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.light-theme .hero-label,
.light-theme .badge {
    background: rgba(75, 111, 95, 0.1);
    color: var(--primary-600);
}

.light-theme .about-loc-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(75, 111, 95, 0.2);
}

.light-theme .info-item h4 {
    color: var(--primary-600);
}

.light-theme .check-item {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-theme .check-item:has(input:checked) {
    background: var(--primary-500);
    border-color: var(--primary-600);
    color: white !important;
}

.light-theme .check-item:has(input:checked) span {
    color: white !important;
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.nav-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.grad-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

/* Glassmorphism Card */
.glass-card {
    background: linear-gradient(135deg,
            rgba(45, 106, 79, 0.08) 0%,
            rgba(45, 106, 79, 0.04) 50%,
            rgba(45, 106, 79, 0.08) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(45, 106, 79, 0.15);
    border-radius: 24px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(45, 106, 79, 0.35);
    box-shadow: 0 25px 50px -12px rgba(45, 106, 79, 0.35);
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-interactions {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1002; /* Ensure toggles stay above mobile menu */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(45, 106, 79, 0.5));
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-size: 1.25rem;
    line-height: 1;
}

.nav-brand-sub {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-400) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.6);
}

/* Global Primary Button Styles */
.btn-primary, .btn-submit {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 50%, var(--primary-400) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white !important;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(45, 106, 79, 0.5);
    transition: var(--transition-smooth);
    font-size: 1.05rem;
    text-transform: none;
    letter-spacing: normal;
}

.btn-primary:hover, .btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 15px 30px -5px rgba(45, 106, 79, 0.7);
}

.btn-primary:active, .btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}

/* Toggle Buttons */
.nav-toggles {
    display: flex;
    gap: 12px;
    margin-left: 12px;
    align-items: center;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-500);
    transform: translateY(-2px);
}

.light-theme .toggle-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Hero Section Refactor */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
}

/* Force Light Theme Visibility in Hero - OVERRIDE ALL */
.light-theme .hero .hero-title,
.light-theme .hero .hero-sub,
.light-theme .hero .badge,
.light-theme .hero .badge span,
.light-theme .hero .hero-label,
.light-theme .hero .hero-label span {
    color: white !important;
}

.light-theme .hero .hero-title .grad-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

.light-theme .hero .badge {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.light-theme .hero .hero-label {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s ease-out;
    transform: scale(1.1);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.6) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.hero-container {
    z-index: 10;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Booking Form */
.hero-booking-form-wrap {
    width: 100%;
    max-width: 850px;
    margin: 40px auto;
}

.hero-booking-form {
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 30px;
    gap: 10px;
    border-radius: 100px;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hb-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hb-group:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hb-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
    pointer-events: none;
}

.hero-date-inp,
.hero-num-inp {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    width: 100% !important;
    cursor: pointer !important;
    outline: none !important;
    font-family: inherit !important;
    padding: 0 !important;
}

.hero-num-inp {
    cursor: text !important;
}

/* Hide spin buttons */
.hero-num-inp::-webkit-outer-spin-button,
.hero-num-inp::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hb-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.hb-submit {
    height: 60px;
    padding: 0 40px;
}

/* Modal Scroll Fix */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh; 
    padding: 40px;
    z-index: 10;
    overflow-y: auto; 
    animation: modalScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-500) transparent;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-500);
    border-radius: 10px;
}

@keyframes modalScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: sticky; 
    float: right;
    top: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 100;
}

.modal-close:hover {
    background: var(--primary-500);
}

.modal-header {
    margin-bottom: 30px;
}

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

.modal-header p {
    color: var(--text-tertiary);
}

/* Flatpickr Theme Adjustments Forced */
.flatpickr-calendar {
    background: #09090b !important;
    border: 1px solid rgba(45, 106, 79, 0.4) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6) !important;
}

.flatpickr-calendar .flatpickr-month, 
.flatpickr-calendar .flatpickr-weekday,
.flatpickr-calendar .flatpickr-current-month,
.flatpickr-calendar .flatpickr-day {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.flatpickr-day.flatpickr-disabled {
    color: rgba(255,255,255,0.2) !important;
}

.flatpickr-day.selected {
    background: var(--primary-500) !important;
    border-color: var(--primary-500) !important;
    color: white !important;
}

.flatpickr-day:hover {
    background: rgba(45, 106, 79, 0.3) !important;
}

/* Light Theme DatePicker Override */
.light-theme .flatpickr-calendar {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

.light-theme .flatpickr-calendar .flatpickr-month, 
.light-theme .flatpickr-calendar .flatpickr-weekday,
.light-theme .flatpickr-calendar .flatpickr-current-month,
.light-theme .flatpickr-calendar .flatpickr-day {
    color: #1a2d23 !important;
    fill: #1a2d23 !important;
}

.light-theme .flatpickr-day.selected {
    background: var(--primary-500) !important;
    color: white !important;
}

/* Mobile Adjustments for Hero Form */
@media (max-width: 768px) {
    .hero-booking-form {
        flex-direction: column;
        border-radius: 24px;
        padding: 30px; gap: 24px;
    }
    .hb-divider { width: 100%; height: 1px; }
    .hb-group { width: 100%; }
    .hb-submit { width: 100%; }
    .modal-content { padding: 30px 20px; width: 95%; }
}



.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-visual-wrap {
    display: none; /* Removed in favor of background slideshow */
}

.float-card {
    position: absolute;
    padding: 16px 24px;
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.fc1 {
    top: 10%;
    right: -5%;
    animation: float 5s ease-in-out infinite 1s;
}

.fc2 {
    bottom: 15%;
    left: -5%;
    animation: float 7s ease-in-out infinite;
}

.fc-icon {
    font-size: 1.5rem;
}

.fc-val {
    display: block;
    font-weight: 700;
    color: white;
}

.fc-lbl {
    display: block;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans';
    color: var(--accent-gold);
}

.stat-lbl {
    display: block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Service Flip Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.flip-card {
    height: 450px;
    perspective: 1500px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Grace period when mouse leaves the card to prevent accidental flip-backs */
.flip-card:not(:hover) .flip-inner {
    transition-delay: 0.15s;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

.flip-front {
    background: var(--bg-tertiary);
}

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

.flip-card:hover .svc-img {
    filter: brightness(0.8);
}


.svc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    gap: 16px;
}

.svc-overlay h3 {
    font-size: 1.5rem;
    color: white;
}

.flip-back {
    transform: rotateY(180deg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--bg-tertiary) 100%);
    border: 1px solid rgba(45, 106, 79, 0.3);
}

.fb-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.flip-back h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.flip-back p {
    color: var(--text-tertiary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.tags span {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: var(--text-secondary);
}

.svc-cta {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

/* CSS Arts for specific cards */
.svc-css-art {
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.css-art-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.css-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.gastro-art .o1 {
    width: 200px;
    height: 200px;
    background: rgba(45, 106, 79, 0.2);
    top: -50px;
    left: -50px;
}

.gastro-art .o2 {
    width: 250px;
    height: 250px;
    background: rgba(201, 162, 39, 0.15);
    bottom: -100px;
    right: -100px;
}

.gastro-art .o3 {
    width: 150px;
    height: 150px;
    background: rgba(45, 106, 79, 0.1);
    top: 40%;
    left: 30%;
}

.retreat-art .o1 {
    width: 200px;
    height: 200px;
    background: rgba(201, 162, 39, 0.2);
    top: 10%;
    right: -50px;
}

.retreat-art .o2 {
    width: 300px;
    height: 300px;
    background: rgba(45, 106, 79, 0.15);
    bottom: -50px;
    left: -100px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-lbl {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.section-sub {
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-visual {
    position: relative;
}

.about-img-frame {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.about-img {
    width: 100%;
    display: block;
}

.about-loc-card {
    position: absolute;
    bottom: -10px;
    right: 0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
    background: rgba(24, 24, 27, 0.8) !important;
    backdrop-filter: blur(12px);
}

.loc-name {
    font-weight: 700;
    display: block;
}

.loc-det {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.about-features {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ab-feat {
    display: flex;
    gap: 20px;
}

.ab-feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ab-feat h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.ab-feat p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.g-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.g-large {
    grid-column: span 2;
    grid-row: span 2;
}

.g-wide {
    grid-column: span 2;
}

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

.g-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 106, 79, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.g-overlay::after {
    content: '🔍';
    font-size: 2rem;
    color: white;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.g-item:hover .g-overlay {
    opacity: 1;
}

.g-item:hover .g-overlay::after {
    transform: scale(1);
}

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

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lb-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoom-in 0.3s ease;
}

@keyframes zoom-in {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2001;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: var(--primary-500);
    transform: scale(1.1);
}

.lb-close { top: -40px; right: 0; }
.lb-prev { left: -80px; top: 50%; transform: translateY(-50%); }
.lb-next { right: -80px; top: 50%; transform: translateY(-50%); }

@media (max-width: 1400px) {
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }
    .lb-close { right: 20px; top: 20px; }
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testi-card {
    padding: 40px;
}

.testi-stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.testi-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.testi-name {
    font-weight: 700;
    display: block;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.testi-featured {
    border-color: rgba(201, 162, 39, 0.3);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), rgba(0, 0, 0, 0));
}

.testi-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-gold);
    color: black;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Reservations Form */
.res-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.res-info {
    padding: 48px;
}

.res-info h3,
.res-form-wrap h3 {
    font-size: 1.75rem;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.ii-icon {
    font-size: 1.5rem;
}

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

.info-link {
    display: inline-block;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
    border-bottom: 1px dashed var(--accent-gold);
}

.info-link:hover {
    color: var(--accent-gold-light);
    border-bottom-style: solid;
}

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

.res-contacts {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-wa,
.btn-email {
    padding: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-wa {
    background: #25d366;
    color: white;
}

.btn-email {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.res-form-wrap {
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    background: rgba(45, 106, 79, 0.05);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.check-item {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.check-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.check-item:has(input:checked) {
    background: var(--primary-500);
    border-color: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.4);
}

.check-item:has(input:checked) span {
    color: white;
}

.check-box {
    display: none;
}

.check-item input {
    display: none;
}

.btn-submit {
    width: 100%;
    margin-top: 16px;
}

.form-disc {
    font-size: 0.75rem;
    color: var(--text-quaternary);
    text-align: center;
    margin-top: 16px;
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    animation: fade-in 0.5s forwards;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

/* Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-500);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite linear;
}

/* Video Section */
.video-sec {
    background: var(--bg-secondary);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 32px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(45, 106, 79, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 106, 79, 0);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translate(var(--dx), var(--dy));
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .hero {
        padding-top: 140px;
        height: auto;
        min-height: auto;
        padding-bottom: 80px;
    }

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

    .hero-content {
        order: 1;
    }

    .hero-visual-wrap {
        order: 2;
        margin-top: 60px;
    }

    .hero-sub {
        margin: 0 auto 32px;
    }

    .hero-ctas,
    .hero-badges {
        justify-content: center;
    }

    .services-grid,
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

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

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

    .res-info {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-toggle span {
        width: 30px;
        height: 2px;
        background: var(--text-primary);
        transition: var(--transition-smooth);
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .stat-div {
        display: none;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .g-item, .g-large, .g-wide {
        flex: 0 0 85%;
        height: 400px;
        scroll-snap-align: center;
        grid-column: auto;
        grid-row: auto;
    }

    .services-grid,
    .testi-grid,
    .form-row,
    .checks-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-frame {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
    }

    .float-card {
        display: none;
    }

    .g-item,
    .g-large,
    .g-wide {
        grid-column: span 1 / span 1;
        grid-row: span 1 / span 1;
    }

    .footer {
        padding: 60px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-col h4 {
        margin-bottom: 16px;
    }

    .footer-col a,
    .footer-col address {
        margin-bottom: 8px;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0 160px; /* Increased bottom padding to separate from footer */
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at bottom, rgba(45, 106, 79, 0.2), transparent 70%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.btn-cta-big {
    margin-top: 40px;
    padding: 20px 48px;
    font-size: 1.1rem;
}

/* Global Interaction & Animation Styles */
.flip-card:hover .flip-inner,
.flip-inner.flipped {
    transform: rotateY(180deg);
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].active {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="500"] {
    transition-delay: 0.5s;
}

/* Loader for Form Submission Refined */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Toggle Hamburger Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary); /* Solid flat color */
    z-index: 1001; /* Above everything */
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition-smooth);
}


.mobile-menu.active {
    left: 0;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.mobile-cta {
    background: var(--primary-500);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: none;
}

/* UI Component Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Indication Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-quaternary);
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(var(--bg-primary), var(--primary-500));
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Footer Design */
.footer {
    background: linear-gradient(to bottom, var(--bg-secondary), #000);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(45, 106, 79, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: var(--primary-500);
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: auto;
    width: 120px;
    max-width: 100%;
    filter: drop-shadow(0 0 10px rgba(45, 106, 79, 0.4));
    transition: var(--transition-smooth);
}

.footer-logo:hover {
    filter: drop-shadow(0 0 15px rgba(45, 106, 79, 0.6)) brightness(1.1);
}

.footer-brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    line-height: 1.2;
}

.footer-brand-tag {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-col a,
.footer-col address {
    display: block;
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 14px;
    transition: var(--transition-smooth);
    font-style: normal;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-bottom p {
    color: var(--text-quaternary);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Phone Input Selector Styles */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: var(--bg-secondary) !important;
    border: 1px solid rgba(45, 106, 79, 0.3) !important;
    border-radius: 16px !important;
    color: var(--text-primary) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    margin-top: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
    padding: 8px !important;
    z-index: 100 !important;
    overflow-x: hidden !important;
}

.iti__country {
    background-color: transparent !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    transition: var(--transition-smooth) !important;
    color: var(--text-primary) !important;
}

.iti__country:hover, 
.iti__country.iti__highlight {
    background-color: var(--primary-500) !important;
    color: white !important;
}

.iti__dial-code {
    color: var(--text-tertiary) !important;
}

.iti__country.iti__highlight .iti__dial-code {
    color: rgba(255, 255, 255, 0.8) !important;
}

.iti__selected-dial-code {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.iti__search-input {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(45, 106, 79, 0.2) !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
    outline: none !important;
}

/* Light Theme Adjustments */
.light-theme .iti__country-list {
    background: var(--bg-primary) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.light-theme .iti__search-input {
    background: var(--bg-primary) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.light-theme .iti__selected-dial-code {
    color: var(--text-primary) !important;
}

/* Flatpickr Custom Design - Ultra Specific */
body .flatpickr-calendar {
    background: #121214 !important;
    border: 1px solid rgba(45, 106, 79, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    padding: 15px !important;
    width: 320px !important;
}

body .flatpickr-day {
    color: #e4e4e7 !important;
    border-radius: 12px !important;
    margin: 2px !important;
    height: 38px !important;
    line-height: 38px !important;
}

body .flatpickr-day.selected,
body .flatpickr-day.startRange,
body .flatpickr-day.endRange {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4) !important;
}

body .flatpickr-day:hover {
    background: rgba(45, 106, 79, 0.2) !important;
}

body .flatpickr-months .flatpickr-prev-month, 
body .flatpickr-months .flatpickr-next-month {
    color: white !important;
    fill: white !important;
}

body .flatpickr-current-month,
body .flatpickr-monthDropdown-months {
    color: white !important;
    font-weight: 700 !important;
}

body .flatpickr-weekday {
    color: var(--accent-gold) !important;
    font-weight: 700 !important;
}

/* Light Theme overrides for Flatpickr */
body.light-theme .flatpickr-calendar {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .flatpickr-day {
    color: #18181b !important;
}

body.light-theme .flatpickr-current-month,
body.light-theme .flatpickr-monthDropdown-months {
    color: #18181b !important;
}

body.light-theme .flatpickr-months .flatpickr-prev-month, 
body.light-theme .flatpickr-months .flatpickr-next-month {
    color: #18181b !important;
    fill: #18181b !important;
}

body.light-theme .flatpickr-weekday {
    color: var(--primary-600) !important;
}