/* CSS Variables for Premium Summer Theme (Pristine Cyan & Sand Gold) */
:root {
    --primary-color: #0c243c; /* Deep Sea Navy */
    --secondary-color: #0077b6; /* Sparkling Blue */
    --accent-color: #00b4db; /* Tropical Cyan */
    --accent-hover: #0083b0;
    --gold-color: #d4b886; /* Premium Sand Gold */
    --gold-hover: #bda376;
    --text-light: #ffffff;
    --text-dark: #2b3a4a;
    --bg-light: #f4f8fb; /* Refreshing Cool White */
    --card-bg: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 180, 219, 0.15);
    --shadow: 0 15px 35px rgba(12, 36, 60, 0.08);
    --shadow-hover: 0 25px 50px rgba(0, 180, 219, 0.18);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Navbar with Summer Aesthetic */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(12, 36, 60, 0.4), transparent);
}

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

.logo img {
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.whatsapp-btn-sm {
    background-color: #25D366;
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-sm:hover {
    background-color: #1ebe57;
    transform: translateY(-2px) scale(1.03);
}

/* Hero Section with Zooming Slider and Soft Ocean Overlay */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

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

.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;
}

.slide.active {
    opacity: 1;
    animation: zoomInOut 12s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 36, 60, 0.55) 0%, rgba(0, 119, 182, 0.35) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 750px;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 180, 219, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 180, 219, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 180, 219, 0); }
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.time-box .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-color);
    line-height: 1;
    margin-bottom: 5px;
}

.time-box .label {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.scroll-btn {
    background: var(--gold-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 184, 134, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.scroll-btn:hover {
    background: white;
    transform: translateY(5px);
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #617387;
    font-weight: 500;
}

/* Chalet Cards & Dynamic Layout Grid */
.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .units-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.unit-card {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 180, 219, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.unit-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.unit-card:hover .unit-img-wrapper img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 180, 219, 0.2);
}

.best-seller {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(212, 184, 134, 0.3);
}

.unit-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.unit-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.unit-desc {
    font-size: 0.95rem;
    color: #5c6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.features {
    border-top: 1px dashed rgba(0, 180, 219, 0.15);
    border-bottom: 1px dashed rgba(0, 180, 219, 0.15);
    padding: 15px 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.features li {
    font-size: 0.85rem;
    color: #4b5c6e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.pricing {
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-row span {
    font-size: 0.9rem;
    color: #778899;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #99aabb !important;
}

.price-row.highlight {
    background: rgba(0, 180, 219, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 180, 219, 0.1);
}

.price-row.highlight span {
    color: var(--primary-color);
    font-weight: 700;
}

.new-price {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #e74c3c !important;
}

.book-btn {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 14px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(12, 36, 60, 0.15);
}

.book-btn:hover {
    background-color: var(--gold-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 184, 134, 0.3);
}

.book-btn i {
    font-size: 1.2rem;
}

/* Floating WhatsApp widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Weather & Trends Section with cyan gradient */
.weather-trends-section {
    background: linear-gradient(135deg, #e6f7ff 0%, #f4f8fb 100%);
    border-top: 1px solid rgba(0, 180, 219, 0.1);
}

.weather-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

.weather-card, .trends-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 180, 219, 0.05);
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.trend-tag {
    display: inline-block;
    background: rgba(0, 180, 219, 0.08);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 5px;
    border: 1px solid rgba(0, 180, 219, 0.15);
}

/* Footer Section */
footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 3px solid var(--gold-color);
}

footer h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
}

footer p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
}

/* Trust Strip */
.trust-strip {
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 180, 219, 0.1);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 180, 219, 0.12);
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-color);
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 180, 219, 0.06);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 20px 25px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '\002B';
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.5rem;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
    padding: 0 25px 22px;
    color: #5c6c7d;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ===== Pricing Calculator Section ===== */
.calc-section {
    background: linear-gradient(160deg, #e8f4fd 0%, #f0f4f8 40%, #fdf8f0 100%);
    border-top: 1px solid rgba(0, 180, 219, 0.1);
    border-bottom: 1px solid rgba(0, 180, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.calc-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 219, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.calc-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 184, 134, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.calc-card {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 36, 60, 0.08), 0 0 0 1px rgba(0, 180, 219, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.calc-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #143d5e 50%, var(--secondary-color) 100%);
    padding: 35px 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-color), var(--accent-color), var(--gold-color));
}

.calc-header .calc-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--gold-color);
}

.calc-header h3 {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.calc-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.calc-body {
    padding: 35px;
}

/* Form Field Groups */
.calc-field {
    margin-bottom: 24px;
}

.calc-field:last-child {
    margin-bottom: 0;
}

.calc-label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.calc-label i {
    color: var(--accent-color);
    margin-left: 8px;
    font-size: 1rem;
}

/* Custom Select */
.calc-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 180, 219, 0.12);
    border-radius: 14px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230077b6' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    cursor: pointer;
    transition: var(--transition);
}

.calc-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 180, 219, 0.1);
}

/* Number Stepper */
.stepper-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stepper-group {
    flex: 1;
    min-width: 140px;
}

.stepper-group .calc-label {
    margin-bottom: 8px;
}

.stepper-control {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid rgba(0, 180, 219, 0.12);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.stepper-control:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 180, 219, 0.1);
}

.stepper-btn {
    width: 48px;
    height: 50px;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stepper-btn:hover {
    background: rgba(0, 180, 219, 0.08);
    color: var(--primary-color);
}

.stepper-btn:active {
    transform: scale(0.92);
}

.stepper-value {
    flex: 1;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    border: none;
    background: transparent;
    font-family: 'Cairo', sans-serif;
    outline: none;
    min-width: 0;
}

/* Accommodation Type Toggle */
.toggle-row {
    display: flex;
    background: #f4f7fa;
    border-radius: 16px;
    padding: 5px;
    gap: 5px;
    border: 2px solid rgba(0, 180, 219, 0.08);
}

.toggle-option {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    color: #5c6c7d;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    line-height: 1.4;
}

.toggle-option.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(12, 36, 60, 0.08);
}

.toggle-option:not(.active):hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
}

.toggle-option .toggle-emoji {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.toggle-option .toggle-sub {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #8899aa;
    margin-top: 2px;
}

.toggle-option.active .toggle-sub {
    color: var(--accent-color);
}

/* Divider */
.calc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 219, 0.15), transparent);
    margin: 28px 0;
}

/* Results / Invoice */
.calc-result {
    background: linear-gradient(135deg, #f8fbff 0%, #fdf9f3 100%);
    border: 2px solid rgba(0, 180, 219, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s ease;
}

.calc-result.has-result {
    border-color: rgba(0, 180, 219, 0.18);
    box-shadow: 0 8px 30px rgba(0, 180, 219, 0.06);
}

.invoice-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.invoice-title i {
    color: var(--accent-color);
}

.invoice-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    font-size: 0.92rem;
    color: #5c6c7d;
    font-weight: 600;
    animation: fadeSlideIn 0.3s ease forwards;
}

.invoice-line:last-of-type {
    border-bottom: none;
}

.invoice-line .inv-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.invoice-line .inv-label i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.invoice-line .inv-amount {
    font-weight: 700;
    color: var(--primary-color);
    font-feature-settings: "tnum";
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 5px;
    margin-top: 10px;
    border-top: 2px solid rgba(0, 180, 219, 0.12);
}

.invoice-total-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
}

.invoice-total-amount {
    font-size: 1.65rem;
    font-weight: 900;
    color: #e74c3c;
    letter-spacing: -0.5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.invoice-total-amount.animate-pop {
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); opacity: 1; }
}

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

/* Savings Badge */
.savings-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e8fdf1 0%, #d4fce4 100%);
    border: 1px solid rgba(39, 174, 96, 0.15);
    border-radius: 14px;
    padding: 14px 20px;
    margin-top: 16px;
    animation: fadeSlideIn 0.5s ease;
}

.savings-strip i {
    color: #27ae60;
    font-size: 1.2rem;
}

.savings-strip span {
    color: #1a8a4a;
    font-weight: 700;
    font-size: 0.95rem;
}

.savings-strip .savings-amount {
    font-weight: 900;
    font-size: 1.05rem;
}

/* Long Stay Tip */
.long-stay-tip {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff8e6 0%, #fef3d1 100%);
    border: 1px solid rgba(212, 184, 134, 0.3);
    border-radius: 14px;
    padding: 14px 20px;
    margin-top: 12px;
    animation: fadeSlideIn 0.5s ease;
}

.long-stay-tip.show {
    display: flex;
}

.long-stay-tip i {
    color: var(--gold-hover);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.long-stay-tip span {
    color: #8a7340;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Calculator WhatsApp Button */
.calc-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    margin-top: 20px;
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    text-decoration: none;
}

.calc-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
}

.calc-whatsapp-btn:active {
    transform: translateY(-1px);
}

.calc-whatsapp-btn i {
    font-size: 1.4rem;
}

/* Per-Night Hint */
.per-night-hint {
    text-align: center;
    font-size: 0.82rem;
    color: #8899aa;
    font-weight: 600;
    margin-top: 8px;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    section { padding: 55px 0; }

    .hero-slider { min-height: 560px; }

    .hero-content { padding-top: 60px; }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .badge {
        font-size: 0.78rem;
        padding: 7px 14px;
        white-space: normal;
        line-height: 1.4;
    }

    /* Countdown must never overflow small screens */
    .countdown {
        gap: 8px;
        margin-bottom: 28px;
        width: 100%;
        justify-content: center;
    }

    .time-box {
        min-width: 0;
        flex: 1 1 0;
        max-width: 80px;
        padding: 12px 6px;
    }

    .time-box .number { font-size: 1.6rem; }
    .time-box .label { font-size: 0.72rem; }

    .section-title h2 { font-size: 1.6rem; }
    .section-title p { font-size: 1rem; }

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

    .unit-info { padding: 22px; }

    .trust-item { font-size: 0.82rem; padding: 8px 14px; }

    .faq-item summary { font-size: 1rem; padding: 16px 18px; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }

    /* Calculator Mobile */
    .calc-header { padding: 25px 20px 22px; }
    .calc-header h3 { font-size: 1.25rem; }
    .calc-header .calc-icon { width: 52px; height: 52px; font-size: 1.4rem; }
    .calc-body { padding: 22px; }
    .stepper-row { gap: 14px; }
    .stepper-group { min-width: 120px; }
    .stepper-btn { width: 42px; height: 44px; font-size: 1.15rem; }
    .stepper-value { font-size: 1.15rem; }
    .toggle-option { padding: 12px 8px; font-size: 0.84rem; }
    .toggle-option .toggle-emoji { font-size: 1.25rem; }
    .calc-result { padding: 20px; }
    .invoice-total-amount { font-size: 1.4rem; }
    .calc-whatsapp-btn { font-size: 1rem; padding: 14px 20px; }
    .savings-strip { flex-wrap: wrap; justify-content: center; text-align: center; padding: 12px 14px; }
}

@media (max-width: 360px) {
    .time-box .number { font-size: 1.35rem; }
    .hero-content h1 { font-size: 1.75rem; }
}

/* ============================================
   📸 LIGHTBOX GALLERY STYLES
   ============================================ */

/* Gallery Button Overlay on Unit Cards */
.gallery-trigger {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: rgba(12, 36, 60, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    text-decoration: none;
}
.gallery-trigger:hover {
    background: rgba(0, 119, 182, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.35);
}
.gallery-trigger i {
    font-size: 0.9rem;
}
.gallery-trigger .photo-count {
    background: var(--gold-color);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    line-height: 1.3;
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 28, 0.96);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Lightbox Header */
.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(to bottom, rgba(5,15,28,0.85), transparent);
    z-index: 10;
    direction: rtl;
}
.lightbox-title {
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lightbox-title i {
    color: var(--gold-color);
    font-size: 0.9rem;
}
.lightbox-counter {
    color: rgba(255,255,255,0.7);
    font-family: 'Cairo', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    direction: ltr;
}
.lightbox-close {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.25s ease;
}
.lightbox-close:hover {
    background: rgba(220, 53, 69, 0.7);
    transform: rotate(90deg);
}

/* Main Image Container */
.lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 70px 60px 110px;
    overflow: hidden;
}
.lightbox-img-wrapper {
    position: relative;
    max-width: 900px;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.lightbox-img.loading {
    opacity: 0.3;
    transform: scale(0.97);
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 5;
}
.lightbox-nav:hover {
    background: rgba(0, 119, 182, 0.7);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.4);
}
.lightbox-nav.prev {
    right: 20px;
}
.lightbox-nav.next {
    left: 20px;
}

/* Thumbnail Strip */
.lightbox-thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: linear-gradient(to top, rgba(5,15,28,0.9), transparent);
    z-index: 10;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }

.lightbox-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
    opacity: 0.5;
}
.lightbox-thumb:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}
.lightbox-thumb.active {
    border-color: var(--gold-color);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(212,184,134,0.4);
    transform: translateY(-3px);
}
.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loading Spinner */
.lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--gold-color);
    border-radius: 50%;
    animation: lbSpin 0.8s linear infinite;
    z-index: 1;
}
@keyframes lbSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Swipe Hint (Mobile) */
.lightbox-swipe-hint {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-family: 'Cairo', sans-serif;
    font-size: 0.78rem;
    display: none;
    align-items: center;
    gap: 6px;
    animation: swipeHintFade 3s ease forwards;
}
@keyframes swipeHintFade {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Body lock when lightbox open */
body.lightbox-open {
    overflow: hidden;
}

/* ---- Lightbox Responsive ---- */
@media (max-width: 768px) {
    .lightbox-main {
        padding: 60px 10px 100px;
    }
    .lightbox-img {
        max-height: 60vh;
        border-radius: 8px;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-nav.prev { right: 8px; }
    .lightbox-nav.next { left: 8px; }
    .lightbox-header {
        padding: 12px 16px;
    }
    .lightbox-title {
        font-size: 0.9rem;
    }
    .lightbox-thumb {
        width: 46px;
        height: 46px;
    }
    .lightbox-thumbs {
        gap: 7px;
        padding: 12px 16px;
    }
    .lightbox-swipe-hint {
        display: flex;
    }
    .gallery-trigger {
        bottom: 10px;
        left: 10px;
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .lightbox-close {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .lightbox-thumb {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }
}
