:root {
    --primary-color: #ffffff;
    --text-color: #f5f5f7;
    --background-dark: rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0a0a0a;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.company-name {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}



.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes image fit nicely */
    display: block;
}

.nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    gap: 1.25rem;
    list-style: none;
    z-index: 99;
    overflow-y: auto;
    padding: 100px clamp(2.5rem, 15vw, 6rem) 2rem;
}

.nav-links.active {
    left: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.menu-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0.5rem 0;
}

.nav-links .secondary-link {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.nav-links .secondary-link:hover {
    color: #fff;
}

/* Wide divider — visually stronger separator before Agent Login */
.menu-divider--wide {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.25rem 0;
}

/* Agent Login container */
.agent-login-item {
    margin: 0.25rem 0;
}

/* Agent Login button */
.agent-login-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 6px 14px !important;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: color 0.25s, border-color 0.25s, background 0.25s !important;
}

.agent-login-link:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
/* Banner height: 200px desktop, 160px mobile — hero fills remaining space */
.hero {
    position: relative;
    margin-top: 80px;
    height: 60vh;
    min-height: 360px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(60px, 12vh, 120px);
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.55) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Scroll Indicator / Pull-Up Luggage Tag */
.scroll-indicator {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-decoration: none;
    display: flex;
    justify-content: center;
}

/* Loop Strap for the Luggage Tag */
.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px 8px 0 0;
    border-bottom: none;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.scroll-tab {
    background: #f5f5f7;
    width: 110px;
    height: 64px;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
    cursor: pointer;
}

.drag-handle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a0a0a;
    /* matches hero dark background to simulate a hole */
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 4px;
    display: inline-block;
}

.scroll-text {
    font-size: 0.58rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.scroll-chevron {
    color: rgba(0, 0, 0, 0.45);
    animation: scrollBounce 2s infinite;
    transition: color 0.3s;
}

/* Hover effects */
.scroll-indicator:hover::after {
    transform: translateX(-50%) translateY(-8px);
    border-color: rgba(255, 255, 255, 0.45);
}

.scroll-indicator:hover .scroll-tab {
    transform: translateY(-8px);
    background: #f5f5f7;
}

.scroll-indicator:hover .drag-handle {
    background: rgba(0, 0, 0, 0.25);
}

.scroll-indicator:hover .scroll-text {
    color: rgba(0, 0, 0, 0.7);
}

.scroll-indicator:hover .scroll-chevron {
    color: rgba(0, 0, 0, 0.7);
}

@keyframes scrollBounce {

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

    40% {
        transform: translateY(4px);
    }

    60% {
        transform: translateY(2px);
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
    margin-bottom: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


/* ── Banner Section ──────────────────────────────────────── */
.banner-section {
    width: 100%;
    background: #f5f5f7;
    padding: 4rem 1.5rem;
    position: relative;
}

/* Banner Header (Specific overrides for light background) */
.banner-header {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.banner-header h2 {
    color: #1d1d1f !important;
}

.banner-header p {
    color: rgba(29, 29, 31, 0.6) !important;
}

/* Banner Slider */
.banner-slider-wrapper {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 3 / 1;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.banner-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

/* Banner Arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden by default, shown on hover */
}

.banner-slider-wrapper:hover .banner-arrow {
    opacity: 1;
}

.banner-arrow:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.15);
}

.left-arrow {
    left: 1.5rem;
}

.right-arrow {
    right: 1.5rem;
}

.banner-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.banner-slide img:hover {
    transform: scale(1.02);
}

.banner-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 8px;
    z-index: 2;
}

.banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.banner-dot.active {
    background: #000;
    transform: scale(1.3);
}

/* Skeleton loader */
.banner-skeleton {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #111 25%, #1e1e1e 50%, #111 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Animations */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.5s;
}

.delay-3 {
    animation-delay: 0.8s;
}

/* ── Packages Section ──────────────────────────────────────── */
.packages-section {
    width: 100%;
    background: #ffffff;
    padding: 6rem 1.5rem;
    position: relative;
}

.packages-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Packages Section Overrides (Light background) */
.packages-section .section-header h2 {
    color: #1d1d1f !important;
}

.packages-section .section-header p {
    color: rgba(29, 29, 31, 0.6) !important;
}

.packages-section .ctrl-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
}

.packages-section .ctrl-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

.packages-section .view-all-btn {
    color: #1d1d1f;
    border-color: rgba(0, 0, 0, 0.2);
}

.packages-section .view-all-btn:hover {
    background: #1d1d1f;
    color: #ffffff;
    border-color: #1d1d1f;
}

.packages-section .packages-loading {
    color: rgba(29, 29, 31, 0.5);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.header-text {
    text-align: left;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin: 0;
}

.section-controls {
    display: flex;
    gap: 0.8rem;
}

.ctrl-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.ctrl-btn:active {
    transform: scale(0.95);
}

.packages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scrollbar-width: none;
    /* Firefox */
}

.packages-grid::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.packages-loading {
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 0;
}

/* Package Card */
.package-card {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    border-color: #ffffff;
}

.card-image-slider {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.card-offer-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card-img-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-img-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.card-image-slider:hover .card-arrow {
    opacity: 1;
}

.card-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.card-arrow.left {
    left: 8px;
}

.card-arrow.right {
    right: 8px;
}

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

.card-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.2s;
}

.card-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.3rem;
}

.card-duration {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
    width: 100%;
}

.card-breakdown {
    font-size: 0.85rem;
    color: #4ade80;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-summary {
    list-style: none;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.card-summary li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.card-summary li::before {
    content: "•";
    color: rgba(255, 255, 255, 0.3);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-price-wrapper {
    display: flex;
    flex-direction: column;
}

.old-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.old-price {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.save-amount {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.new-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.view-details-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.view-details-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #000;
}

/* Package Card Light Mode Text/UI Overrides */
.package-card .card-duration {
    color: #515154;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.package-card .card-title {
    color: #1d1d1f;
}

.package-card .card-breakdown {
    color: #16a34a;
}

.package-card .card-summary li {
    color: #515154;
}

.package-card .card-summary li::before {
    color: rgba(0, 0, 0, 0.25);
}

.package-card .card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.package-card .old-price {
    color: #86868b;
}

.package-card .new-price {
    color: #1d1d1f;
}

.package-card .view-details-btn {
    background: #1d1d1f;
    color: #fff;
}

.package-card .view-details-btn:hover {
    background: #000;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #ffffff;
    color: #0a0a0a;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-btn:hover {
    transform: translateY(-3px);
    background: #f0f0f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #fff;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 0.8rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 50px;
}

.submit-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: transform 0.2s, background 0.2s;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    color: #4ade80;
}

.form-message.error {
    display: block;
    color: #f87171;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .hero-content h1 {
        padding: 0 10px;
    }

    .hero-content h2 {
        padding: 0 15px;
    }

    .banner-section {
        padding: 2rem 1rem;
    }

    .banner-slider-wrapper {
        border-radius: 16px;
        /* Slightly smaller radius for mobile */
    }

    .banner-arrow {
        width: 36px;
        height: 36px;
        opacity: 1;
        /* Always visible on mobile */
    }

    .left-arrow {
        left: 0.5rem;
    }

    .right-arrow {
        right: 0.5rem;
    }

    .floating-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        /* Inset header on mobile */
    }

    .banner-header.section-header {
        padding: 0;
    }

    .section-controls {
        display: none;
    }

    .packages-section {
        padding: 4rem 0;
    }

    .packages-grid {
        padding: 1rem 1rem 2rem 1rem;
        /* Ensure cards have spacing from screen edge on mobile */
    }

    .packages-footer {
        padding: 0 1rem;
    }
}

/* Empty / error state */
.banner-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.packages-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.view-all-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-all-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.view-all-btn:active {
    transform: translateY(0);
}

/* ── Blogs Section ─────────────────────────────────────────── */
.blogs-section {
    width: 100%;
    background: #ffffff;
    padding: 6rem 1.5rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blogs-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.blogs-section .section-header h2 {
    color: #1d1d1f !important;
}

.blogs-section .section-header p {
    color: rgba(29, 29, 31, 0.6) !important;
}

.blog-container {
    width: 100%;
    margin-top: 2rem;
}

.blogs-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 2.5rem;
}

.blogs-section .view-all-btn {
    color: #1d1d1f;
    border: 1px solid rgba(29, 29, 31, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blogs-section .view-all-btn:hover {
    background: #1d1d1f;
    color: #ffffff;
    border-color: #1d1d1f;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card {
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    gap: 1.5rem;
    min-height: 400px;
}

.blog-media-side {
    position: relative;
    flex: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background: #000;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.media-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.media-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.media-tab:hover {
    color: #ffffff;
}

.media-tab.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid #ffffff;
}

.media-panels {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.media-panel {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.media-panel.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.blog-image-slider {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 400px;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
}

.blog-reel-frame {
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-reel-frame iframe {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.blog-img-track {
    display: flex;
    height: 100%;
    flex: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-img-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
}

.blog-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.blog-arrow.left {
    left: 1rem;
}

.blog-arrow.right {
    right: 1rem;
}

.blog-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.blog-dots .blog-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.3s, transform 0.3s;
}

.blog-dots .blog-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.blog-content {
    flex: 1;
    background: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.blog-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.3;
    margin: 0 0 1.2rem 0;
}

.blog-description {
    font-size: 0.95rem;
    color: #515154;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-align: left;
}

.watch-reel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1d1d1f;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.watch-reel-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.play-icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.blog-empty {
    text-align: center;
    color: rgba(29, 29, 31, 0.5);
    padding: 4rem 0;
    font-size: 1.1rem;
}

.blog-skeleton {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    background: linear-gradient(90deg, #f5f5f7 25%, #e8e8ed 50%, #f5f5f7 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.blog-reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    z-index: 5;
    transition: background 0.3s;
}

.blog-image-slider:hover .blog-reel-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.reel-play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}

.read-more-btn {
    color: #0071e3;
    font-weight: 600;
    cursor: pointer;
    margin-left: 6px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}

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

/* ── Gallery Section ─────────────────────────────────────────── */
.gallery-section {
    background: #ffffff;
    padding: 6rem 1.5rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-section .section-header h2 {
    color: #1d1d1f !important;
}

.gallery-section .section-header p {
    color: rgba(29, 29, 31, 0.6) !important;
}

.gallery-section .ctrl-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
}

.gallery-section .ctrl-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-grid::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.gallery-loading {
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 0;
}

/* Gallery Card */
.gallery-card {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
}

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

.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.gallery-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-slider-prev {
    left: 8px;
}

.gallery-slider-next {
    right: 8px;
}

.gallery-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.gallery-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

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

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

.gallery-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-card-date {
    font-size: 0.75rem;
    color: #8e8e93;
    /* Apple Gray */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-card-caption {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    /* Apple Charcoal */
    line-height: 1.4;
    margin: 0;
}

.gallery-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.gallery-section .view-all-btn {
    color: #1d1d1f;
    border: 1px solid rgba(29, 29, 31, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-section .view-all-btn:hover {
    background: #1d1d1f;
    color: #ffffff;
    border-color: #1d1d1f;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ── Reviews Section ─────────────────────────────────────────── */
.reviews-section {
    background: #ffffff;
    padding: 6rem 1.5rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.reviews-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-section .section-header h2 {
    color: #1d1d1f !important;
}

.reviews-section .section-header p {
    color: rgba(29, 29, 31, 0.6) !important;
}

.reviews-section .ctrl-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1d1d1f;
}

.reviews-section .ctrl-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

.reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scrollbar-width: none;
    /* Firefox */
}

.reviews-grid::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.reviews-loading {
    text-align: center;
    width: 100%;
    color: rgba(0, 0, 0, 0.4);
    padding: 3rem 0;
}

/* Review Card */
.review-card {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3b30, #ff9500);
    /* Premium Apple Gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.review-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    text-transform: capitalize;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-desc-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.review-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(29, 29, 31, 0.8);
    margin: 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 3rem;
    /* 2 lines * 1.5 line-height */
}

.review-desc.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    max-height: none;
}

.review-desc-wrapper .read-more-btn {
    margin-left: 0;
    margin-top: 0.25rem;
}

.reviews-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.reviews-section .view-all-btn {
    color: #1d1d1f;
    border: 1px solid rgba(29, 29, 31, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reviews-section .view-all-btn:hover {
    background: #1d1d1f;
    color: #ffffff;
    border-color: #1d1d1f;
}

.reviews-section #giveFeedbackBtn {
    background: #007aff;
    color: #ffffff;
    border-color: #007aff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.reviews-section #giveFeedbackBtn:hover {
    background: #0056b3;
    color: #ffffff;
    border-color: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* ── Footer Section ──────────────────────────────────────────── */
.app-footer {
    background: #0b0b0c;
    color: rgba(255, 255, 255, 0.6);
    padding: 5rem 1.5rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ff9500;
    /* Amber/Orange Accent */
    margin: 0;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-icon {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.contact-multi-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icons-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.whatsapp-icon {
    color: #25D366;
    margin-top: 0 !important;
    transition: transform 0.3s ease;
}

.contact-multi-item:hover .whatsapp-icon {
    transform: scale(1.1);
}

.contact-links-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    user-select: none;
}

.whatsapp-text {
    color: #25D366 !important;
    font-weight: 500;
}

.whatsapp-text:hover {
    color: #128C7E !important;
    text-decoration: underline;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.social-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.insta-svg {
    stroke: url(#instaGradient) !important;
}

.fb-svg {
    stroke: #1877F2 !important;
}

.insta-link:hover {
    color: #e1306c !important;
    text-decoration: underline;
}

.fb-link:hover {
    color: #1877F2 !important;
    text-decoration: underline;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-links a svg {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-links a:hover {
    color: #ffffff;
}

.footer-social-links a:hover svg {
    color: #ff9500;
    /* Brand Accent color on hover */
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Mobile Responsive Override for Blogs */
@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
        min-height: auto;
        gap: 1.5rem;
    }

    .blog-media-side {
        width: 100%;
        height: 250px;
        min-height: auto;
        flex: none;
    }

    .blog-image-slider {
        width: 100%;
        height: 100%;
        min-height: auto;
    }

    .blog-reel-frame iframe {
        height: 100%;
        min-height: auto;
    }

    .blog-content {
        width: 100%;
        padding: 2rem 1.5rem;
        flex: none;
    }

    .blog-title {
        font-size: 1.5rem;
        margin: 0 0 1rem 0;
    }

    .blog-description {
        font-size: 1rem;
        margin: 0 0 2rem 0;
    }

    .blogs-section {
        padding: 4rem 0 6rem 0;
    }

    .blog-container {
        padding: 0 1.5rem;
    }

    .blogs-footer {
        padding: 0 1.5rem;
    }

    /* Gallery Mobile Overrides */
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-grid {
        padding: 1rem 1.5rem 2rem 1.5rem;
    }

    .gallery-footer {
        padding: 0 1.5rem;
    }

    /* Reviews Mobile Overrides */
    .reviews-section {
        padding: 4rem 0;
    }

    .reviews-grid {
        padding: 1rem 1.5rem 2rem 1.5rem;
    }

    .reviews-footer {
        padding: 0 1.5rem;
    }

    /* Footer Mobile Overrides */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .app-footer {
        padding: 4rem 1.5rem 2rem 1.5rem;
    }

    /* Packages Page Mobile Overrides */
    .packages-page {
        padding: 5rem 0 0 0;
    }

    .packages-page-header {
        padding: 0 1rem;
    }

    .packages-page-content {
        padding: 0;
    }

    .packages-page .packages-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem 4rem 1rem;
    }
}

/* ── Packages Page ───────────────────────────────────────────── */
.packages-page {
    min-height: 100vh;
    background: #ffffff;
    padding: 6rem 0 0 0;
}

.packages-page-header {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
    padding: 0 1.5rem;
}

.packages-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.packages-page-header p {
    font-size: 1.2rem;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

.packages-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.packages-page .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem 4rem 1.5rem;
}

.packages-page .packages-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(29, 29, 31, 0.5);
    padding: 4rem 0;
    font-size: 1.1rem;
}

/* Active link styling for navigation */
.nav-links .active-link {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* ── Blogs Page ───────────────────────────────────────────── */
.blogs-page {
    min-height: 100vh;
    background: #ffffff;
    padding: 6rem 0 0 0;
}

.blogs-page-header {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
    padding: 0 1.5rem;
}

.blogs-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.blogs-page-header p {
    font-size: 1.2rem;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

.blogs-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.blogs-page .blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem 4rem 1.5rem;
}

.blogs-page .blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(29, 29, 31, 0.5);
    padding: 4rem 0;
    font-size: 1.1rem;
}

/* Blogs Page Mobile Overrides */
@media (max-width: 768px) {
    .blogs-page {
        padding: 5rem 0 0 0;
    }

    .blogs-page-header {
        padding: 0 1rem;
    }

    .blogs-page-content {
        padding: 0;
    }

    .blogs-page .blogs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem 4rem 1rem;
    }
}

/* ── Gallery Page ───────────────────────────────────────────── */
.gallery-page {
    min-height: 100vh;
    background: #ffffff;
    padding: 6rem 0 0 0;
}

.gallery-page-header {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
    padding: 0 1.5rem;
}

.gallery-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.gallery-page-header p {
    font-size: 1.2rem;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

.gallery-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.gallery-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem 4rem 1.5rem;
    margin: 0 auto;
}

.gallery-page .gallery-card {
    width: 100%;
}

.gallery-page .gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(29, 29, 31, 0.5);
    padding: 4rem 0;
    font-size: 1.1rem;
}

/* Gallery Page Mobile Overrides */
@media (max-width: 768px) {
    .gallery-page {
        padding: 5rem 0 0 0;
    }

    .gallery-page-header {
        padding: 0 1rem;
    }

    .gallery-page-content {
        padding: 0;
    }

    .gallery-page .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem 4rem 1rem;
    }

    .gallery-page .gallery-card {
        width: 100%;
    }
}

/* ── Reviews Page ───────────────────────────────────────────── */
.reviews-page {
    min-height: 100vh;
    background: #ffffff;
    padding: 6rem 0 8rem 0;
}

.reviews-page::after {
    content: '';
    display: block;
    background: #ffffff;
    height: 4rem;
}

.reviews-page-header {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
    padding: 0 1.5rem;
}

.reviews-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.reviews-page-header p {
    font-size: 1.2rem;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

.reviews-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    padding-bottom: 4rem;
}

.reviews-page .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem 8rem 1.5rem;
}

.reviews-page .reviews-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(29, 29, 31, 0.5);
    padding: 4rem 0;
    font-size: 1.1rem;
}

.reviews-page .review-card {
    width: 100%;
}

.reviews-page .load-more-btn {
    background: #ffffff;
    color: #1d1d1f;
    border-color: rgba(29, 29, 31, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 4rem;
}

.reviews-page .load-more-btn:hover {
    background: #f5f5f7;
    color: #1d1d1f;
    border-color: rgba(29, 29, 31, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Reviews Page Mobile Overrides */
@media (max-width: 768px) {
    .reviews-page {
        padding: 5rem 0 0 0;
    }

    .reviews-page-header {
        padding: 0 1rem;
    }

    .reviews-page-content {
        padding: 0;
    }

    .reviews-page .reviews-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem 4rem 1rem;
    }
}

/* ── Feedback Modal ───────────────────────────────────────────── */
.feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.feedback-modal.active {
    display: flex;
}

.feedback-modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feedback-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.feedback-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(29, 29, 31, 0.5);
    transition: color 0.2s;
}

.feedback-modal-close:hover {
    color: #1d1d1f;
}

.feedback-form-group {
    margin-bottom: 1.5rem;
}

.feedback-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.feedback-form-group input[type="text"],
.feedback-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(29, 29, 31, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #1d1d1f;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feedback-form-group input[type="text"]:focus,
.feedback-form-group textarea:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.feedback-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-rating {
    display: flex;
    gap: 0.5rem;
}

.feedback-rating input[type="radio"] {
    display: none;
}

.star-label {
    cursor: pointer;
    padding: 0.25rem;
    transition: transform 0.2s;
}

.star-label:hover {
    transform: scale(1.1);
}

.star-label svg {
    fill: rgba(29, 29, 31, 0.2);
    stroke: rgba(29, 29, 31, 0.2);
    transition: fill 0.2s, stroke 0.2s;
}

.star-label.active svg {
    fill: #ffcc00;
    stroke: #ffcc00;
}

.feedback-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #1d1d1f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.feedback-submit-btn:hover {
    background: #333333;
    transform: translateY(-1px);
}

.feedback-submit-btn:active {
    transform: translateY(0);
}

.feedback-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.feedback-message.success {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
}

.feedback-message.error {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
}

/* Feedback Modal Mobile Overrides */
@media (max-width: 768px) {
    .feedback-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

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

    .feedback-rating {
        gap: 0.25rem;
    }

    .star-label svg {
        width: 20px;
        height: 20px;
    }
}

/* ── Login Page ───────────────────────────────────────────── */
.login-page .nav-logo {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.login-page .nav-logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

.login-page {
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 2rem 1.5rem;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 0.5rem 0;
}

.login-header p {
    font-size: 1rem;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

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

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

.login-form .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1d1d1f;
}

.login-form .form-group input {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(29, 29, 31, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #1d1d1f;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.login-btn {
    padding: 0.875rem 1.5rem;
    background: #1d1d1f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.login-btn:hover:not(:disabled) {
    background: #333333;
    transform: translateY(-1px);
}

.login-btn:active:not(:disabled) {
    transform: translateY(0);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.login-message.success {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
}

.login-message.error {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
}

/* Login Page Mobile Overrides */
@media (max-width: 768px) {
    .login-page {
        padding: 5rem 1rem 2rem 1rem;
    }

    .login-card {
        padding: 2rem;
    }

    .login-header h1 {
        font-size: 1.5rem;
    }
}

/* ── Admin Dashboard ─────────────────────────────────────────── */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
    background: #f5f5f7;
}

/* Sidebar */
.admin-sidebar {
    width: 280px;
    background: #1d1d1f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    overflow-y: auto;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.sidebar-header p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    gap: 0.75rem;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-left: 3px solid #007aff;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.logout-btn:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.5);
}

/* Main Content */
.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 0.5rem 0;
}

.section-header p {
    font-size: 1rem;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.packages-icon { background: #007aff; }
.hotels-icon { background: #34c759; }
.orders-icon { background: #ff9500; }
.reviews-icon { background: #ffcc00; }
.blogs-icon { background: #5856d6; }
.banners-icon { background: #ff2d55; }
.gallery-icon { background: #00c7be; }

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.stat-content p {
    font-size: 0.875rem;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

/* Table */
.table-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: #f5f5f7;
}

.data-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: #1d1d1f;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table .loading,
.data-table .error {
    text-align: center;
    padding: 2rem;
    color: rgba(29, 29, 31, 0.5);
}

/* Buttons */
.btn {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #007aff;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #f5f5f7;
    color: #1d1d1f;
}

.btn-secondary:hover {
    background: #e5e5e7;
}

.btn-success {
    background: #34c759;
    color: #ffffff;
}

.btn-success:hover {
    background: #248a3d;
}

.btn-danger {
    background: #ff3b30;
    color: #ffffff;
}

.btn-danger:hover {
    background: #c92a1f;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pagination span {
    font-size: 0.9rem;
    color: #1d1d1f;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(29, 29, 31, 0.5);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #1d1d1f;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ffffff;
    display: none;
    z-index: 1001;
}

.toast.success {
    background: #34c759;
}

.toast.error {
    background: #ff3b30;
}

/* Package Details */
.package-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #1d1d1f;
}

.package-details strong {
    font-weight: 600;
    color: #1d1d1f;
}

/* Admin Forms */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.admin-form .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1d1d1f;
}

.admin-form .form-group input,
.admin-form .form-group textarea,
.admin-form .form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(29, 29, 31, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1d1d1f;
    background: #ffffff;
}

.admin-form .form-group input:focus,
.admin-form .form-group textarea:focus,
.admin-form .form-group select:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.admin-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Dynamic Rows */
.dynamic-row,
.policy-row,
.itinerary-day {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.dynamic-row input,
.dynamic-row select,
.policy-row input,
.policy-row textarea {
    flex: 1;
}

.activities-container {
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

.itinerary-day {
    flex-direction: column;
    border: 1px solid rgba(29, 29, 31, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

.itinerary-day .form-group input {
    width: 100%;
}

/* Existing Images */
.existing-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.existing-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.existing-image label {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Blog Details */
.blog-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #1d1d1f;
}

.blog-details strong {
    font-weight: 600;
    color: #1d1d1f;
}

.blog-images {
    margin-top: 1rem;
}

/* Admin Dashboard Mobile Overrides */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 240px;
    }

    .admin-main {
        margin-left: 240px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 100;
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
        padding: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-header h1 {
        font-size: 1.5rem;
    }

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

    .data-table {
        font-size: 0.8rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.75rem 1rem;
    }

    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ── Admin Modal Overrides ───────────────────────────────────── */
/* Fix h2/p color inside the white admin modal */
.admin-dashboard .modal-content h2,
.admin-dashboard .modal-content h3 {
    color: #1d1d1f;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.admin-dashboard .modal-content p {
    color: #1d1d1f;
}

.admin-dashboard .modal-content {
    max-width: 700px;
}

/* Submit button loading state */
.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-loading::after {
    content: ' ⏳';
}
