/* ==========================================
   GOZO VACATIONS STYLE SHEET
   ========================================== */

/* --- CSS Variables & Theme Core --- */
:root {
    --color-primary: #0a1128;
    /* Deep Ocean Navy Blue */
    --color-primary-light: #121c3a;
    --color-turquoise: #0fb5b3;
    /* Premium Turquoise */
    --color-turquoise-hover: #0d9695;
    --color-gold: var(--color-turquoise);
    /* Redirect Gold to Turquoise */
    --color-gold-hover: var(--color-turquoise-hover);
    --color-accent-light: #f7eed7;
    /* Warm Soft Gold/Cream */
    --color-bg-light: #f8fafc;
    --color-bg-dark: #040814;
    --color-text-dark: #1e293b;
    --color-text-light: #f1f5f9;
    --color-text-gray: #64748b;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 20px -5px rgba(15, 181, 179, 0.25);

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 181, 179, 0.2);
}

/* --- Base Resets & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 3.5rem;
    color: var(--color-turquoise);
}

.hero-content-box h1 {
    color: #b8860b !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-fast);
}



input,
select,
textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    width: 100%;
    outline: none;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-turquoise);
    box-shadow: 0 0 0 3px rgba(15, 181, 179, 0.15);
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

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

.sub-accent {
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-size: 2.2rem;
    letter-spacing: 2px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.btn-gold {
    background-color: var(--color-gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

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

.btn-outline {
    border: 2px solid var(--color-gold);
    color: var(--color-primary);
}

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

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* --- Layout Elements --- */

/* Top Announcement Bar */
.top-announcement-bar {
    background: var(--color-primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    z-index: 1001;
    width: 100%;
    max-width: 100vw;
    border-bottom: 1px solid rgba(15, 181, 179, 0.3);
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.announcement-content {
    padding: 0 4rem;
    display: inline-block;
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Main Header */
.main-header {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('header_bg.png');
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid var(--color-turquoise);
    backdrop-filter: blur(10px);
    transition: padding var(--transition-fast), background-color var(--transition-fast);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
    justify-self: start;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) brightness(1.05);
}

.logo-brand-text {
    font-family: var(--font-heading);
    color: #2F5D8A;
    text-transform: uppercase;
    margin-left: 0.65rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
    text-shadow: none;
}

.brand-line1 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.brand-line2 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(47, 93, 138, 0.9);
}

.logo:hover .brand-line1,
.logo:hover .brand-line2 {
    color: var(--color-turquoise);
}


.main-nav {
    display: flex;
    align-items: center;
    justify-self: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-link {
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    color: #2F5D8A;
    transition: color var(--transition-fast);
}

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

.nav-link.active,
.nav-link:hover {
    color: #163A6B;
}

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

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
}

.nav-auth-btn {
    border: 2px solid var(--color-turquoise);
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-auth-btn:hover {
    background-color: var(--color-turquoise);
    border-color: var(--color-turquoise);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(15, 181, 179, 0.45);
    transform: translateY(-1px);
}

.mobile-only-nav-item {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-login-icon {
    display: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Banner Design System */
.page-banner {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    background: linear-gradient(rgba(10, 17, 40, 0.85), rgba(4, 8, 20, 0.95));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.page-banner h2 {
    color: var(--color-turquoise);
    font-size: 4rem;
    letter-spacing: 0;
    margin-bottom: 0.5rem;
}

.page-banner p {
    color: var(--color-accent-light);
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 300;
}

.packages-banner {
    background-image: url('packages_banner.png');
}

.about-banner {
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&q=80&w=1200');
}

.reviews-banner {
    background-image: url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&q=80&w=1200');
}

.contact-banner {
    background-image: url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&q=80&w=1200');
}

.admin-banner {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=1200');
}

.main-content-padding {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

/* --- Views and Routing --- */
.view {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ================= HOME VIEW ================= */

/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 500px;
    background-color: var(--color-primary);
    overflow: hidden;
}

.slides-container {
    height: 100%;
    perspective: 2000px;
    transform-style: preserve-3d;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease;
}

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

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.4);
    display: flex;
    align-items: center;
}

.hero-slide-overlay .container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    /* Override standard container to allow wider hero content */
}

.hero-content-box {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    opacity: 1;
}

.hero-content-box h1,
.hero-content-box p,
.hero-content-box .btn {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-content-box h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-slide.active .hero-content-box p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-slide.active .hero-content-box .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.slide-tag {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 10;
    background-color: rgba(0, 140, 158, 0.25);
    /* Teal tint 25% */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);

    /* Preserve animation */
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.hero-slide.active .slide-tag {
    transform: translateY(0);
    opacity: 1;
}

.hero-content-box h1,
.hero-content-box h2 {
    font-family: 'Gonzaga', serif !important;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #E5BA30 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-size: 3.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase !important;
}

.hero-content-box p {
    font-size: 1.15rem;
    margin: 0 auto 2.5rem auto;
    color: var(--color-accent-light);
    font-weight: 300;
    max-width: 800px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth), transform var(--transition-smooth), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.hero-slider:hover .slider-btn {
    opacity: 1;
    pointer-events: auto;
}

.hero-slider:hover .slider-btn.prev {
    transform: translateY(-50%) scale(1) translateX(0);
}

.hero-slider:hover .slider-btn.next {
    transform: translateY(-50%) scale(1) translateX(0);
}

.slider-btn:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-primary);
}

.slider-btn.prev {
    left: 2rem;
    transform: translateY(-50%) scale(0.9) translateX(-15px);
}

.slider-btn.next {
    right: 2rem;
    transform: translateY(-50%) scale(0.9) translateX(15px);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

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

/* Tagline */
.tagline-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-subtitle {
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: capitalize !important;
}

.tagline-text {
    font-size: 2.2rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.decorative-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.decorative-separator .line {
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
}

.decorative-separator .separator-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Destinations Section */
.destinations-section {
    padding-top: 5rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--color-turquoise);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0.5rem auto 0 auto;
}

.section-header p {
    color: var(--color-text-gray);
    font-size: 1.1rem;
}

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

.destination-card {
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

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

.destination-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 0%, rgba(10, 17, 40, 0.2) 60%, rgba(10, 17, 40, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.destination-card h3 {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.destination-card .package-indicator {
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.destination-card:hover .destination-card-img {
    transform: scale(1.1);
}

.destination-card:hover .destination-card-overlay {
    background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.4) 60%, rgba(10, 17, 40, 0.1) 100%);
}

.destination-card:hover .package-indicator {
    transform: translateY(0);
    opacity: 1;
}

/* Features Teaser */
.features-teaser {
    background-color: var(--color-primary);
    color: #fff;
    padding: 5rem 0;
}

.teaser-card {
    text-align: center;
    padding: 1.5rem;
}

.teaser-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.teaser-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.teaser-card p {
    color: var(--color-accent-light);
    font-size: 0.9rem;
    font-weight: 300;
}


/* ================= PACKAGES VIEW ================= */

.filters-container {
    background-color: #fff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
}

.filter-tab {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-gray);
    background-color: #f1f5f9;
}

.filter-tab.active,
.filter-tab:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.search-sort-group {
    display: flex;
    gap: 1rem;
    flex-grow: 1;
    max-width: 600px;
}

.search-box {
    position: relative;
    flex-grow: 2;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-gray);
}

.search-box input {
    padding-left: 2.5rem;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-grow: 1;
    min-width: 180px;
}

.sort-box label {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Packages Grid & Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.package-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.package-card-img-box {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.package-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.package-card-img-box .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.package-card:hover .package-card-img-box .hover-img {
    opacity: 1;
    transform: scale(1.08);
}

.package-duration-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gold);
}

.package-category-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(212, 175, 55, 0.9);
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
}

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

.package-card-content h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.package-inclusions {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.package-inclusions li {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-inclusions li i {
    color: var(--color-gold);
    font-size: 0.8rem;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
    margin-top: auto;
}

.package-price span {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    display: block;
}

.package-price strong {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-body);
}

.no-packages-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.no-packages-msg i {
    font-size: 3rem;
    color: var(--color-text-gray);
    margin-bottom: 1rem;
}

.no-packages-msg h4 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}


/* ================= ABOUT US VIEW ================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
    border: 2px solid var(--color-gold);
}

.glow-box {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    opacity: 0.3;
    z-index: 1;
}

.about-text-content h3 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-text-content p {
    color: var(--color-text-gray);
    margin-bottom: 1.25rem;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold);
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.4;
}

.vision-mission-cards {
    margin-top: 2rem;
}

/* ================= PREMIUM VISION & MISSION CARDS ================= */
.premium-glass {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.premium-glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.decorative-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 150px;
    color: var(--color-turquoise);
    opacity: 0.05;
    z-index: 0;
    transform: rotate(-15deg);
    transition: transform 0.6s ease;
}

.premium-glass:hover .decorative-bg-icon {
    transform: rotate(0deg) scale(1.1);
}

.card-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon.premium-icon {
    width: 70px;
    height: 70px;
    background: #071A2F;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 20px rgba(24, 183, 200, 0.3);
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.card-icon.premium-icon i {
    color: #ffffff !important;
    font-size: 2.1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.premium-glass:hover .card-icon.premium-icon {
    transform: rotate(10deg) scale(1.05);
}

.vision-card h3,
.mission-card h3 {
    font-family: 'Pacifico', cursive !important;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gold) !important;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-turquoise), var(--color-gold));
    border-radius: 2px;
    margin: 0 auto 1.2rem auto;
    transition: width 0.4s ease;
}

.premium-glass:hover .accent-line {
    width: 90px;
}

.vision-card p,
.mission-card p {
    color: var(--color-text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}


/* ================= WHY GOZO & REVIEWS VIEW ================= */

.why-gozo-wrapper {
    margin-bottom: 6rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.why-card i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.why-card h3 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.why-card p {
    color: var(--color-text-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Google Reviews Section */
.google-reviews-integration {
    background-color: #fff;
    padding: 4rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.google-reviews-dashboard {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: none;
    border: 1px solid #e2e8f0;
}

.rating-summary {
    text-align: center;
}

.rating-g-logo {
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #EA4335;
}

.g-yellow {
    color: #FBBC05;
}

.g-green {
    color: #34A853;
}

.average-rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin-bottom: 0.75rem;
}

.sync-badge {
    background-color: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.sync-badge i.spin {
    animation: fa-spin 2s linear infinite;
}

.rating-bars-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-gray);
}

.rating-bar-row span:first-child {
    width: 60px;
    text-align: right;
}

.rating-bar-row span:last-child {
    width: 35px;
}

.rating-progress-bar {
    flex-grow: 1;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #FBBC05;
    border-radius: 4px;
}

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

.review-display-card {
    background-color: var(--color-bg-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-fast);
}

.review-display-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.review-avatar-mock {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-meta h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
}

.reviewer-meta span {
    font-size: 0.75rem;
    color: var(--color-text-gray);
}

.review-card-stars {
    color: #f59e0b;
    font-size: 0.8rem;
}

.review-card-body p {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.5;
}

.google-source-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #4285F4;
    font-size: 1.1rem;
}


/* ================= CONTACT VIEW ================= */

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
}

.contact-info-panel h3,
.contact-form-panel h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.info-intro {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
}

.info-item .icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--color-gold);
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.info-item p {
    color: var(--color-text-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.info-item a:hover {
    color: var(--color-gold);
}

.social-panel h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #cbd5e1;
}

.social-circle:hover {
    color: #fff;
    transform: scale(1.1);
}

.social-circle.instagram:hover,
.social-circle.facebook:hover,
.social-circle.email:hover {
    background-color: var(--color-turquoise);
    border-color: var(--color-turquoise);
}

.contact-form-panel form {
    margin-top: 1rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.4rem;
}

.max-width-350 {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}


/* ================= ADMIN VIEW ================= */

.admin-auth-gate {
    max-width: 500px;
    margin: 4rem auto;
    padding: 3rem 2rem;
}

.auth-lock-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.admin-auth-gate h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.admin-auth-gate p {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* auth-error-msg is styled in the Auth Modal section below */

/* Console Layout */
.admin-dashboard-console {
    animation: fadeIn 0.4s ease;
}

.admin-sidebar-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.admin-navigation-list {
    padding: 1.5rem;
}

.admin-profile {
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 0.75rem auto;
}

.admin-profile h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

.admin-profile span {
    font-size: 0.75rem;
    color: var(--color-text-gray);
}

.admin-nav-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.admin-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-gray);
    width: 100%;
    text-align: left;
}

.admin-tab-btn:hover,
.admin-tab-btn.active {
    background-color: var(--color-primary);
    color: #fff;
}

.admin-tab-btn .badge {
    margin-left: auto;
    background-color: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
}

.logout-btn {
    text-align: center;
}

.admin-workspace-content {
    min-height: 450px;
}

.admin-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.admin-tab-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--color-gold);
    padding-left: 0.75rem;
}

.tab-subtitle {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

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

.action-header h3 {
    margin-bottom: 0;
}

/* Stats Row */
.admin-stats-row {
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.5rem;
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.stat-icon.purple {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.stat-icon.gold {
    background-color: #fef3c7;
    color: #d97706;
}

.stat-icon.green {
    background-color: #d1fae5;
    color: #059669;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-gray);
}

.admin-info-block h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.admin-info-block li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Forms in Admin */
.admin-form-panel {
    margin-bottom: 2rem;
    border-color: var(--color-gold);
}

.admin-form-panel h4 {
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.form-actions-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Data Tables */
.table-container {
    padding: 0;
    overflow-x: auto;
}

.admin-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    text-align: left;
}

.admin-data-table th,
.admin-data-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.admin-data-table th {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.admin-data-table tr:hover td {
    background-color: #f8fafc;
}

.table-action-btn {
    font-size: 0.85rem;
    margin-right: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.table-action-btn.edit {
    color: #2563eb;
    background-color: #eff6ff;
}

.table-action-btn.delete {
    color: #dc2626;
    background-color: #fef2f2;
}

.table-action-btn:hover {
    transform: scale(1.05);
}

/* Leads listing styling */
.lead-card-box {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-gold);
}

.lead-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.lead-title-name h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-primary);
}

.lead-title-name span {
    font-size: 0.75rem;
    color: var(--color-text-gray);
}

.lead-badge {
    background-color: var(--color-accent-light);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.lead-contact-strip {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 0.75rem;
}

.lead-message-text {
    font-size: 0.85rem;
    background-color: var(--color-bg-light);
    padding: 0.75rem;
    border-radius: 4px;
    font-style: italic;
}

.lead-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
}

.no-leads-msg {
    text-align: center;
    padding: 4rem 2rem;
}

.no-leads-msg i {
    font-size: 2.5rem;
    color: var(--color-text-gray);
    margin-bottom: 1rem;
}


/* ================= MODALS ================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 8, 20, 0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-card {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0;
}

.modal-close {
    font-size: 2rem;
    line-height: 1;
    color: var(--color-text-gray);
}

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

.enquiry-modal-summary {
    background-color: var(--color-bg-light);
    border-left: 3px solid var(--color-gold);
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-gray);
}

.enquiry-modal-summary strong {
    color: var(--color-primary);
    font-size: 1rem;
}

/* Star rating input for review modal */
.star-input-group {
    display: flex;
    gap: 0.4rem;
    font-size: 1.6rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.star-input {
    color: #f59e0b;
    transition: transform 0.15s ease;
}

.star-input:hover {
    transform: scale(1.2);
}

.star-input.dimmed {
    color: #e2e8f0;
}

.write-review-cta {
    padding-top: 1.5rem;
}

.write-review-cta p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 1rem;
}


/* ================= FLOATING WIDGETS ================= */

/* Floating WhatsApp widget */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    font-family: var(--font-body);
}

.whatsapp-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.whatsapp-toggle-btn:hover {
    transform: scale(1.08);
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc2626;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.whatsapp-bubble {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid #cbd5e1;
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.whatsapp-bubble.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.whatsapp-bubble-header {
    background-color: #075e54;
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-agent-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.whatsapp-agent-info h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
}

.whatsapp-agent-info span {
    font-size: 0.7rem;
    color: #d1fae5;
}

.whatsapp-close {
    margin-left: auto;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
}

.whatsapp-bubble-body {
    padding: 1rem;
    background-color: #efeae2;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-msg {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-msg.received {
    background-color: #fff;
    border-top-left-radius: 0;
    align-self: flex-start;
}

.whatsapp-msg.sent {
    background-color: #dcf8c6;
    border-top-right-radius: 0;
    align-self: flex-end;
}

.msg-time {
    font-size: 0.6rem;
    color: var(--color-text-gray);
    display: block;
    text-align: right;
    margin-top: 0.25rem;
}

.whatsapp-bubble-footer {
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    background-color: #f0f0f0;
    border-top: 1px solid #cbd5e1;
}

.whatsapp-bubble-footer input {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    border-color: #cbd5e1;
}

#whatsapp-send-btn {
    background-color: #128c7e;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

#whatsapp-send-btn:hover {
    background-color: #075e54;
}

/* Quick call mobile */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-gold);
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    border: 2px solid var(--color-gold);
}


/* ================= FOOTER ================= */

.main-footer {
    background-image: none;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-top: 3px solid var(--color-turquoise);
    padding: 4rem 0 2rem 0;
}

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

.footer-logo h2 {
    display: none;
}

.footer-logo span {
    display: none;
}

.footer-logo-img {
    width: 220px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-col.about p {
    color: var(--color-accent-light);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.footer-social-links {
    display: flex;
    gap: 0.8rem;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

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

.footer-col h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-col.links li {
    margin-bottom: 0.75rem;
}

.footer-col.links a {
    color: var(--color-accent-light);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col.links a:hover {
    color: var(--color-gold);
    padding-left: 0.25rem;
}

.footer-col.contact .contact-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.footer-col.contact p {
    color: var(--color-accent-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.footer-col.contact p i {
    color: var(--color-gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-col.contact .contact-link:hover p {
    color: turquoise;
    transform: translateX(8px);
}

.footer-col.contact .contact-link:hover p i {
    color: turquoise;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    font-size: 0.75rem;
    color: var(--color-text-gray);
}

.footer-bottom p {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a {
    color: var(--color-gold);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* ================= AUTHENTICATION MODAL (LIGHT THEME) ================= */
.auth-modal-card {
    max-width: 480px;
    width: 90%;
    background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 0 20px 48px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    color: var(--color-text-dark);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.auth-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 2rem;
    line-height: 1;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

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

.auth-modal-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(15, 181, 179, 0.1);
    border-color: rgba(15, 181, 179, 0.3);
    transform: translateY(0);
}

.auth-modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.auth-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.auth-modal-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.auth-modal-subtitle {
    font-size: 0.85rem;
    color: var(--color-turquoise);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
    position: relative;
}

.auth-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.auth-tab-btn:hover {
    color: var(--color-primary);
}

.auth-tab-btn.active {
    color: var(--color-turquoise);
    border-bottom-color: var(--color-turquoise);
}

.auth-form {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.auth-form.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

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

.auth-form a {
    color: var(--color-turquoise);
    font-weight: 600;
}

.auth-form a:hover {
    text-decoration: underline;
}

.auth-form label i {
    color: var(--color-turquoise);
    margin-right: 0.5rem;
}

.auth-form input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: var(--color-text-dark);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    width: 100%;
    transition: all var(--transition-fast);
}

.auth-form input::placeholder {
    color: #9ca3af;
}

.auth-form input:focus {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 181, 179, 0.2);
    outline: none;
}

.auth-submit-btn {
    background-color: var(--color-primary) !important;
    border: 1px solid var(--color-primary) !important;
    color: #ffffff !important;
    padding: 0.9rem !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.95rem !important;
    margin-top: 1.8rem;
    box-shadow: 0 4px 10px rgba(10, 17, 40, 0.15) !important;
    width: 100%;
    transition: all var(--transition-fast) !important;
}

.auth-submit-btn:hover:not(:disabled) {
    background-color: var(--color-turquoise) !important;
    border-color: var(--color-turquoise) !important;
    box-shadow: 0 6px 15px rgba(15, 181, 179, 0.3) !important;
    transform: translateY(-2px);
}

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

.auth-error-msg {
    display: none;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    text-align: center;
    background: #fef2f2;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid #fecaca;
}


/* ================= CUSTOMER DASHBOARD VIEW ================= */
.customer-banner {
    background-image: url('https://images.unsplash.com/photo-1506012787146-f92b2d7d6d96?auto=format&fit=crop&q=80&w=1200');
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

.profile-card-box {
    text-align: center;
    border: 1px solid rgba(15, 181, 179, 0.15);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-turquoise) 0%, #088382 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 6px 15px rgba(15, 181, 179, 0.35);
}

.profile-card-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.profile-details-list {
    margin-top: 2rem;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
}

.profile-details-list h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-field {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-field strong {
    color: var(--color-text-gray);
    font-weight: 500;
}

.profile-field span {
    color: var(--color-text-dark);
    font-weight: 600;
}

.profile-card-box .logout-btn {
    margin-top: 2rem;
}

.bookings-card-box {
    border: 1px solid rgba(15, 181, 179, 0.15);
}

.bookings-placeholder-box {
    padding: 5rem 2rem;
    border: 2px dashed rgba(15, 181, 179, 0.2);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    background-color: rgba(15, 181, 179, 0.02);
}

.placeholder-icon {
    font-size: 3.5rem;
    color: var(--color-turquoise);
    opacity: 0.5;
    margin-bottom: 1.2rem;
}

.bookings-placeholder-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.bookings-placeholder-box p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}


/* ================= RESPONSIVE MEDIA QUERIES ================= */

@media (max-width: 1024px) and (min-width: 769px) {
    .main-nav ul {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .admin-toggle-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

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

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-grid-layout {
        grid-template-columns: 1fr;
    }

    .google-reviews-dashboard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .admin-sidebar-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .top-bar {
        display: none !important;
    }

    .top-announcement-bar {
        display: flex !important;
        font-size: 0.78rem;
        padding: 0.45rem 0;
        z-index: 1001;
    }

    #view-container,
    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .main-header {
        padding: 0.8rem 0;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .logo {
        order: 1;
    }

    .logo-img {
        height: 60px;
    }

    .logo-brand-text {
        margin-left: 0.4rem;
    }

    .brand-line1 {
        font-size: 1.05rem;
        letter-spacing: 2.5px;
    }

    .brand-line2 {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .header-actions {
        display: none;
    }

    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--color-primary);
        padding: 1.5rem 2rem;
        border-bottom: 2px solid var(--color-turquoise);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }

    .mobile-only-nav-item {
        display: block !important;
        margin-top: 1.5rem;
    }

    .nav-auth-btn-mobile {
        display: block;
        width: 100%;
        border: 2px solid var(--color-turquoise);
        background-color: var(--color-turquoise);
        color: #ffffff;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-auth-btn-mobile:hover {
        background-color: var(--color-turquoise-hover);
        border-color: var(--color-turquoise-hover);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content-box h1,
    .hero-content-box h2 {
        font-size: 2.5rem;
    }

    .tagline-text {
        font-size: 1.6rem;
    }

    .slider-btn,
    .hero-slider-arrow {
        display: none !important;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }

    .category-tabs {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        white-space: nowrap;
    }

    .search-sort-group {
        flex-direction: column;
        max-width: 100%;
    }

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

    .reviews-grid-display {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .modal-card {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .mobile-call-button {
        display: none !important;
    }
}

/* ==========================================
   BLOG / TRAVEL STORIES VIEW STYLES
   ========================================== */

.blog-banner {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&q=80&w=1200');
}

.blog-filters-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.blog-category-tabs {
    display: flex;
    gap: 0.5rem;
    background-color: #f1f5f9;
    padding: 0.4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.blog-filter-tab {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-gray);
    transition: var(--transition-fast);
}

.blog-filter-tab:hover {
    color: var(--color-primary);
}

.blog-filter-tab.active {
    background-color: var(--color-turquoise);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.blog-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 5rem;
}

.blog-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-card-img-box img {
    transform: scale(1.05);
}

.blog-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

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

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 0.75rem;
}

.blog-meta i {
    color: var(--color-turquoise);
}

.blog-card h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.5rem;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-gray);
}

/* Modal adjustments for blog content */
.blog-modal-meta i {
    color: var(--color-turquoise);
}

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

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

/* ==========================================
   KEN BURNS ZOOM EFFECT
   ========================================== */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* ==========================================
   HOME TESTIMONIAL CAROUSEL
   ========================================== */
.home-testimonials-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.home-testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
}

.home-testimonials-carousel {
    display: flex;
    position: relative;
    min-height: 250px;
}

.home-testimonials-page {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.home-testimonials-page.active {
    opacity: 1;
}

.testimonial-home-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.testimonial-home-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    transform: translateY(-5px);
    border-color: rgba(15, 181, 179, 0.4);
}

/* Responsive grid for testimonials */
@media (max-width: 992px) {
    .home-testimonials-page {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .testimonial-home-card:nth-child(3) {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .home-testimonials-page {
        grid-template-columns: 1fr !important;
    }

    .testimonial-home-card:nth-child(2),
    .testimonial-home-card:nth-child(3) {
        display: none !important;
    }
}

/* ==========================================
   TESTIMONIALS GRID MODAL
   ========================================== */
.testimonials-modal-grid {
    padding: 1rem 0;
}

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

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

/* ==========================================
   WHY CHOOSE GOZO SECTION & 3D CUBE
   ========================================== */
.why-choose-section {
    padding: 6rem 0;
    background-color: var(--color-primary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.why-choose-text .section-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(15, 181, 179, 0.2);
    border: 1px solid rgba(15, 181, 179, 0.4);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-turquoise);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.feature-item:hover .feature-icon {
    background: var(--color-turquoise);
    color: #fff;
    transform: scale(1.05);
}

.feature-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    color: #ffffff;
    font-family: 'Clash Display', sans-serif !important;
    font-weight: 700 !important;
}

.feature-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 3D Cube Styles */
.why-choose-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cube-wrapper {
    position: relative;
    padding: 2rem;
}

.cube-scene {
    width: 300px;
    height: 300px;
    perspective: 1000px;
    margin: 0 auto;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-15deg) rotateY(-15deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    backface-visibility: hidden;
}

/* Positioning faces */
.cube-face.front {
    transform: rotateY(0deg) translateZ(150px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(150px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(150px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(150px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(150px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(150px);
}

/* Cube interactive hint */
.cube-hint {
    margin-top: 2rem;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

/* Responsive grid for why-choose */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cube-scene {
        width: 250px;
        height: 250px;
    }

    .cube-face {
        width: 250px;
        height: 250px;
    }

    .cube-face.front {
        transform: rotateY(0deg) translateZ(125px);
    }

    .cube-face.back {
        transform: rotateY(180deg) translateZ(125px);
    }

    .cube-face.right {
        transform: rotateY(90deg) translateZ(125px);
    }

    .cube-face.left {
        transform: rotateY(-90deg) translateZ(125px);
    }

    .cube-face.top {
        transform: rotateX(90deg) translateZ(125px);
    }

    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(125px);
    }
}

/* ==========================================
   AUTH MODAL & VALIDATION UPDATES
   ========================================== */

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Modal Scroll Styling */
.auth-modal-card {
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.auth-modal-card::-webkit-scrollbar {
    width: 6px;
}

.auth-modal-card::-webkit-scrollbar-track {
    background: transparent;
}

.auth-modal-card::-webkit-scrollbar-thumb {
    background-color: var(--color-turquoise);
    border-radius: 10px;
}

/* Validation Styling */
.input-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-gray);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    transition: color 0.3s ease;
    outline: none;
}

.password-wrapper .password-toggle:hover {
    color: var(--color-primary);
}

.password-wrapper input {
    padding-right: 40px;
}

.is-invalid {
    border-color: #dc3545 !important;
    animation: shake 0.3s;
}

.is-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15) !important;
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 4px;
    min-height: 18px;
    display: none;
    animation: fadeIn 0.3s;
}

@keyframes shake {

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

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-container a {
    color: var(--color-turquoise);
    text-decoration: underline;
}

.checkbox-container a:hover {
    color: var(--color-turquoise-hover);
}

/* Image Upload custom styles in admin panels */
.device-upload-wrapper {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-or-text {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    font-weight: 500;
}

.file-upload-input {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    border: 1px dashed var(--color-turquoise);
    border-radius: var(--radius-sm);
    background-color: rgba(15, 181, 179, 0.03);
    cursor: pointer;
    width: auto;
}

background-color: rgba(15, 181, 179, 0.08);
}

/* ================= RESPONSIVE STYLES ================= */

/* --- Tablet (768px - 1024px) --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .grid-4,
    .destinations-grid,
    .blog-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content-box h1,
    .hero-content-box h2 {
        font-size: 2.8rem;
    }

    .page-banner h2 {
        font-size: 2rem;
    }

    .main-nav ul {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .logo-img {
        height: 70px;
    }

    .brand-line1 {
        font-size: 1.2rem;
    }

    .about-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-grid-layout {
        grid-template-columns: 1fr;
    }

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

/* --- Mobile Phones (up to 767px) --- */
@media (max-width: 767px) {
    .header-actions {
        display: none;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
        position: relative;
        color: var(--color-primary);
        order: 1;
        margin-right: auto;
    }

    .logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
    }

    .logo:hover {
        transform: translateX(-50%) scale(1.02);
    }

    .mobile-login-icon {
        display: block;
        order: 3;
        margin-left: auto;
        color: var(--color-primary);
        z-index: 1001;
        position: relative;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        z-index: 1000;
        transition: left var(--transition-smooth);
        padding-top: 6rem;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }

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

    .main-nav.active~.mobile-menu-toggle {
        color: var(--color-primary);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 2.5rem;
        gap: 0;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .nav-link {
        color: var(--color-primary);
        font-size: 1.15rem;
        font-weight: 600;
        display: block;
        padding: 1.2rem 0;
        width: 100%;
    }

    .nav-link:after {
        display: none;
        /* Remove hover line on mobile for cleaner look */
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--color-turquoise);
    }

    .mobile-only-nav-item {
        display: none !important;
    }

    .nav-auth-btn-mobile {
        width: 100%;
        border: 2px solid var(--color-turquoise);
        background-color: transparent;
        color: #fff;
        padding: 0.8rem;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
    }

    .logo-img {
        height: 60px;
    }

    .brand-line1 {
        font-size: 1.1rem;
    }

    .brand-line2 {
        font-size: 0.6rem;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .destinations-grid,
    .blog-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-box h1,
    .hero-content-box h2 {
        font-size: 2.2rem;
    }

    .tagline-text {
        font-size: 1.5rem;
    }

    .page-banner h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .top-announcement-bar {
        font-size: 0.75rem;
    }

    .slider-btn,
    .hero-slider-arrow {
        display: none !important;
    }

    .auth-modal-card {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .cube-wrapper {
        margin: 2rem auto 0;
    }

    .category-tabs,
    .blog-category-tabs,
    .search-sort-group {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .rating-summary,
    .rating-bars-container {
        flex-direction: column;
        align-items: center;
    }

    .social-icons-large {
        justify-content: center;
    }

    .admin-navigation-list {
        margin-bottom: 2rem;
    }

    .admin-sidebar-layout {
        flex-direction: column;
    }
}

/* --- CUSTOM OVERRIDES --- */
:root {
    --font-heading: 'Poppins', sans-serif !important;
    --font-body: 'Poppins', sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.nav-link,
.brand-line1,
.brand-line2,
.filter-tab {
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.02em;
}

p,
span,
li,
input,
textarea,
select {
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.7;
}

.btn,
.nav-link,
.package-card,
.filter-tab,
.modal-card {
    transition: all 0.3s ease-in-out;
}

/* About Us Background */
#about-view {
    background: linear-gradient(to bottom, rgba(245, 247, 250, 0.92), rgba(245, 247, 250, 0.95)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&q=80&w=1920') center/cover fixed !important;
}

/* Popular Destinations Circular Design */
.destinations-grid {
    display: flex !important;
    justify-content: center !important;
    gap: 3rem !important;
    flex-wrap: wrap !important;
}

.destination-card {
    border-radius: 50% !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
    width: 220px !important;
    height: 220px !important;
    margin: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transform: scale(1) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    cursor: pointer;
}

.destination-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3) !important;
    /* Premium gold glow */
}

.destination-card-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.destination-card-overlay {
    border-radius: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: rgba(10, 25, 47, 0.6) !important;
    transition: background 0.3s ease !important;
}

.destination-card:hover .destination-card-overlay {
    background: rgba(10, 25, 47, 0.4) !important;
}

/* Welcome Enquiry Popup Animation */
#welcome-enquiry-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

#welcome-enquiry-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Footer Branding */
.footer-branding h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

/* Custom Popup Card Style */
.popup-premium-card {
    max-width: 650px !important;
    transform: scale(0.95) !important;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    padding: 2.5rem !important;
}

#welcome-enquiry-modal.active .popup-premium-card {
    transform: scale(1) !important;
}

@media (max-width: 768px) {
    .popup-actions {
        flex-direction: column !important;
    }

    .popup-premium-card {
        padding: 1.5rem !important;
        margin: 1rem !important;
        width: calc(100% - 2rem) !important;
    }
}

/* ==========================================================
   PREMIUM LUXURY UI/UX OVERRIDES
   ========================================================== */

/* 1. Global Spacing & Layout */
.section {
    padding: 7rem 0 !important;
    /* Breathing room */
}

.packages-grid,
.destinations-grid,
.blog-grid,
.why-choose-grid {
    gap: 3rem !important;
}

/* 2. Glassmorphism & Header */
.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.modal-overlay,
.auth-modal-overlay {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    background-color: rgba(4, 8, 20, 0.6) !important;
}

/* 3. Card Design Modernization */
.package-card,
.blog-card,
.testimonial-card,
.auth-modal-card {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

/* 4. Hover Elevations & Micro-Interactions */
.package-card:hover,
.blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.package-image img,
.blog-card-image img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.package-card:hover .package-image img,
.blog-card:hover .blog-card-image img {
    transform: scale(1.05) !important;
}

/* Update Destination Cards Hover */
.destination-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.2) !important;
}

/* 5. Buttons Refinement */
.btn {
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
}

.btn-primary {
    box-shadow: 0 4px 15px rgba(10, 17, 40, 0.15) !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(10, 17, 40, 0.25) !important;
}

.btn-gold {
    box-shadow: 0 4px 15px rgba(15, 181, 179, 0.2) !important;
}

.btn-gold:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(15, 181, 179, 0.3) !important;
}

.btn:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Nav Links Micro-interaction */
.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-turquoise);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* 6. Typography Refinement for Forms & Hierarchy */
.auth-form input,
.auth-form select,
.auth-form textarea,
.form-group input,
.form-group textarea,
.form-group select {
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    background-color: #f8fafc !important;
    transition: all 0.3s ease !important;
}

.auth-form input:focus,
.form-group input:focus,
.form-group textarea:focus {
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(15, 181, 179, 0.15) !important;
    border-color: var(--color-turquoise) !important;
}

h1,
h2 {
    letter-spacing: 0em !important;
}

h3,
h4 {
    letter-spacing: 0em !important;
}

.section-subtitle {
    letter-spacing: 0.1em !important;
}
}

/* ==============================================================
   WELCOME MODAL PREMIUM DESIGN
   ============================================================== */
.welcome-modal-premium {
    width: 92%;
    max-width: 800px;
    border-radius: 24px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 3.5rem 2.5rem;
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.welcome-modal-premium .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 10;
    transition: all 0.3s ease;
}

.welcome-modal-premium .modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.welcome-glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.welcome-premium-title {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.welcome-premium-subtitle {
    text-align: center;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.welcome-input-group label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.4rem;
    display: block;
    font-size: 0.9rem;
}

.welcome-input-wrapper {
    position: relative;
}

.welcome-input-wrapper .input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-turquoise);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.welcome-premium-input {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    padding: 0.85rem 1.2rem 0.85rem 3.2rem !important;
    height: 52px !important;
    width: 100%;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.welcome-premium-input:focus {
    background: #ffffff !important;
    border-color: var(--color-turquoise) !important;
    box-shadow: 0 0 0 3px rgba(15, 181, 179, 0.2) !important;
}

select.welcome-premium-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.2rem top 50% !important;
    background-size: 0.7rem auto !important;
}

.welcome-popup-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-welcome-submit {
    flex: 2;
    background: linear-gradient(to right, #008C9E, #0F1B3D);
    color: #ffffff;
    border-radius: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 140, 158, 0.3);
    border: none;
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-welcome-submit:hover {
    box-shadow: 0 6px 20px rgba(0, 140, 158, 0.5);
    transform: translateY(-2px);
}

.btn-welcome-outline {
    flex: 1;
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-welcome-outline:hover {
    border-color: var(--color-turquoise);
    color: var(--color-turquoise);
    background: rgba(15, 181, 179, 0.05);
}

@media (max-width: 768px) {
    .welcome-modal-premium {
        padding: 2rem 1.5rem;
    }

    .welcome-glass-panel {
        padding: 1.5rem;
    }

    .welcome-popup-actions {
        flex-direction: column;
    }

    .btn-welcome-submit,
    .btn-welcome-outline {
        width: 100%;
    }
}

/* Enquiry Modal Scenic Background */
#enquiry-modal .modal-card {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&q=80&w=800') center/cover !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 28px !important;
    overflow: hidden;
}

#enquiry-modal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#enquiry-modal .modal-header h3 {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ==============================================================
   COMPREHENSIVE RESPONSIVE DESIGN OVERRIDES
   ============================================================== */

/* --- TABLETS & LAPTOPS (Max 1024px) --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem !important;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-content-box h1 {
        font-size: 3rem;
    }

    .hero-content-box p {
        font-size: 1.1rem;
    }

    .hero-slide-overlay .container {
        width: 90% !important;
    }

    .main-nav ul {
        gap: 1.5rem;
    }
}

/* --- MOBILE DEVICES (Max 768px) --- */
@media (max-width: 768px) {

    /* Grids to 1 column */
    .grid-4,
    .grid-3,
    .grid-2,
    .reviews-grid-display,
    .dashboard-grid,
    .admin-sidebar-layout,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Container Spacing */
    .container {
        padding: 0 1rem !important;
    }

    section {
        padding: 3.5rem 0 !important;
    }

    /* Header & Navigation */
    .header-container {
        grid-template-columns: 1fr auto auto !important;
        /* Logo, Login, Hamburger */
        gap: 1rem;
        padding: 0 1rem !important;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

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

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .main-nav.active ul li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered Delays for Menu Items */
    .main-nav.active ul li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-nav.active ul li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .main-nav.active ul li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .main-nav.active ul li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .main-nav.active ul li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .main-nav.active ul li:nth-child(6) {
        transition-delay: 0.35s;
        border-bottom: none;
        padding-top: 1.5rem;
    }

    .main-nav .nav-link {
        color: #ffffff !important;
        font-size: 1.15rem !important;
        font-weight: 600;
        display: flex;
        align-items: center;
        padding: 1.2rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .main-nav .nav-link::before {
        content: '\203A';
        /* Chevron › */
        color: var(--color-turquoise);
        font-size: 1.8rem;
        line-height: 1;
        margin-right: 12px;
        margin-bottom: 3px;
        transition: transform 0.3s ease;
    }

    .main-nav .nav-link::after {
        display: none !important;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        color: var(--color-turquoise) !important;
        background: rgba(255, 255, 255, 0.05);
    }

    .main-nav .nav-link:hover::before,
    .main-nav .nav-link.active::before {
        transform: translateX(6px);
    }

    .mobile-menu-toggle {
        display: block !important;
        color: var(--color-primary);
        font-size: 1.5rem;
        cursor: pointer;
        background: none;
        border: none;
    }

    .mobile-login-icon {
        display: block !important;
        color: var(--color-primary);
        font-size: 1.5rem;
        cursor: pointer;
        background: none;
        border: none;
    }

    .nav-auth-btn {
        display: none !important;
    }

    .mobile-only-nav-item {
        display: block !important;
        width: 100%;
    }

    /* Upgraded Mobile Login Button */
    .nav-auth-btn-mobile {
        background: linear-gradient(135deg, var(--color-gold), #e6a800);
        color: #ffffff;
        padding: 1.1rem 2rem;
        border-radius: 28px;
        width: 100%;
        font-weight: 700;
        font-size: 1.1rem;
        border: none;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-auth-btn-mobile:hover,
    .nav-auth-btn-mobile:active {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    }

    /* Hero Section & Page Views */
    #home-view,
    #packages-view,
    #blog-view,
    #about-view,
    .view,
    .view-section,
    .hero-slider,
    .slides-container,
    .hero-slide {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .hero-content-box h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content-box p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-slide-overlay .container {
        width: 95% !important;
    }

    .slide-tag {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Forms */
    .form-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    /* Modals generally */
    .modal-card {
        width: 95% !important;
        max-height: 90vh;
        overflow-y: auto;
        padding: 1.5rem !important;
    }

    .welcome-modal-premium {
        width: 88% !important;
        padding: 1rem !important;
        max-height: 80vh !important;
        overflow: hidden !important;
        border-radius: 16px !important;
        display: flex;
        flex-direction: column;
    }

    .welcome-modal-premium .modal-close {
        top: 8px !important;
        right: 8px !important;
        width: 28px !important;
        height: 28px !important;
        z-index: 100 !important;
        font-size: 1.2rem !important;
    }

    .welcome-glass-panel {
        padding: 1.25rem 1rem !important;
        overflow-y: auto !important;
        flex: 1;
        border-radius: 12px !important;
        margin-top: 0.5rem;
    }

    .welcome-premium-title {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .welcome-premium-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    .welcome-modal-premium label {
        font-size: 0.8rem !important;
        margin-bottom: 0.2rem !important;
    }

    .welcome-modal-premium .form-group {
        margin-bottom: 0.5rem !important;
    }

    .welcome-modal-premium .form-row {
        gap: 0.5rem !important;
    }

    .welcome-premium-input {
        padding: 0.5rem 0.5rem 0.5rem 2rem !important;
        height: 38px !important;
        font-size: 0.85rem !important;
    }

    .welcome-modal-premium .input-icon {
        font-size: 0.85rem !important;
        left: 0.7rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .btn-welcome-submit {
        padding: 0.6rem !important;
        font-size: 0.9rem !important;
        height: 42px !important;
    }

    .btn-welcome-outline {
        padding: 0.5rem !important;
        font-size: 0.85rem !important;
        height: 38px !important;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Footer Mobile Overrides */
    .main-footer {
        padding-bottom: 90px !important;
        /* Prevents floating widget overlap */
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2.5rem !important;
    }

    .footer-col h3 {
        margin-bottom: 1.5rem;
        display: inline-block;
        position: relative;
    }

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

    /* Quick Navigation Centering */
    .footer-col.links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
        list-style: none;
        gap: 0.8rem;
    }

    .footer-nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer-nav-link i {
        margin-right: 8px;
    }

    /* Contact Info Centering */
    .footer-col.contact .contact-link p {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 12px;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .footer-col.contact .contact-link p i {
        margin-top: 4px;
        min-width: 16px;
    }

    /* Connect with us Centering */
    .footer-col.contact>p {
        text-align: center;
        margin-top: 2rem !important;
        margin-bottom: 1.2rem !important;
        display: block;
    }

    .footer-social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 0;
    }

    .footer-social-links a::before,
    .footer-social-links a::after {
        display: none !important;
        /* Removes any stray pseudo-elements */
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding-top: 2rem !important;
        margin-top: 3rem !important;
    }

    .admin-hint {
        margin-top: 0 !important;
    }
}

/* --- SMALL MOBILES (Max 480px) --- */
@media (max-width: 480px) {
    .hero-content-box h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

/* --- RESPONSIVE TABLES --- */
.admin-data-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 17, 40, 0.7);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        display: block;
    }

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

/* ==========================================
   SCENIC ENQUIRY MODAL STYLES
   ========================================== */

#enquiry-modal .modal-card {
    background-image: url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    background-color: transparent;
    /* Override glass-panel base color */
}

/* Dark frosted glass overlay */
#enquiry-modal .modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 20, 40, 0.60);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
}

/* Elevate contents above overlay */
#enquiry-modal .modal-header,
#enquiry-modal .modal-body {
    position: relative;
    z-index: 2;
}

/* High contrast text and layout */
#enquiry-modal .modal-header h3 {
    color: #ffffff;
}

#enquiry-modal .modal-close {
    color: rgba(255, 255, 255, 0.7);
}

#enquiry-modal .modal-close:hover {
    color: #ffffff;
}

#enquiry-modal label {
    color: #ffffff;
    font-weight: 500;
}

#enquiry-modal .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

#enquiry-modal .enquiry-modal-summary {
    background-color: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    border-left: 3px solid var(--color-gold);
    backdrop-filter: blur(8px);
}

#enquiry-modal .enquiry-modal-summary strong,
.summary-price strong {
    color: #000000 !important;
    font-weight: 800 !important;
}

/* Input Fields Visibility */
#enquiry-modal input,
#enquiry-modal textarea {
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-text-dark);
}

#enquiry-modal input:focus,
#enquiry-modal textarea:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 181, 179, 0.4);
}

/* Update Tagline Heading Font */
.tagline-section .section-subtitle {
    font-family: 'Pacifico', cursive !important;
    font-size: 2.8rem !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
}

/* Update Why Choose Gozo Heading Font */
.why-choose-text .section-subtitle {
    font-family: 'Pacifico', cursive !important;
    font-size: 2.8rem !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
    display: inline-block;
}

/* Update Popular Destinations Heading Font */
.destinations-section .section-header h2 {
    font-family: 'Pacifico', cursive !important;
    font-size: 3.8rem !important;
    letter-spacing: 0px !important;
}

@media (max-width: 768px) {
    .destinations-section .section-header h2 {
        font-size: 2.6rem !important;
    }
}

/* Update Destination Category Labels Typography */
.destination-card h3 {
    font-family: 'Lilita One', cursive !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    font-size: clamp(1.1rem, 5vw, 1.35rem) !important;
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35) !important;
    white-space: nowrap !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100%;
}

/* Update Testimonials Heading Font */
.home-testimonials-section .section-header h2 {
    font-family: inherit !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 7px !important;
    color: var(--color-turquoise) !important;
}

.home-testimonials-section .section-header h2:after {
    background-color: var(--color-turquoise) !important;
}

@media (max-width: 768px) {
    .home-testimonials-section .section-header h2 {
        font-size: 2.6rem !important;
    }
}

/* Update Enquiry Popup Heading Font */
.welcome-premium-title {
    font-family: 'Pacifico', cursive !important;
    font-size: 2.2rem !important;
    color: #D8A03B !important;
    letter-spacing: 1px !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

@media (max-width: 768px) {
    .welcome-premium-title {
        font-size: 1.8rem !important;
    }
}

/* Update Our Tour Packages, About, Blog & Contact Heading Font */
.packages-banner h2,
.about-banner h2,
.blog-banner h2,
.contact-banner h2 {
    font-family: 'Marcellus', serif !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    letter-spacing: 3px !important;
    color: #D8A03B !important;
    /* Gold is the best suitable luxury color */
    font-size: 3.2rem !important;
}

/* Update Our Founder Story Heading Font */
.about-text-content .sub-accent {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* Flip Phone Icons to Face Right */
.fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block;
}

/* Ensure the phone icon in the enquiry popup is also flipped without breaking its vertical alignment */
.welcome-input-wrapper .input-icon.fa-phone-alt {
    transform: translateY(-50%) scaleX(-1);
}

/* Custom Support Avatar Image Styling */
.support-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.whatsapp-toggle-btn {
    background-color: #ffffff !important;
    padding: 0 !important;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-agent-avatar {
    background-color: transparent !important;
    padding: 0 !important;
    overflow: hidden;
}

/* ==========================================
   PREMIUM PACKAGES PAGE REDESIGN
   ========================================== */

/* Hero Banner */
.premium-hero-banner {
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: -2rem;
    /* Pull up grid slightly */
}

.premium-overlay {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.8) 0%, rgba(10, 17, 40, 0.4) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: var(--color-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.premium-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.premium-hero-desc {
    color: #f0f0f0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.premium-hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 1.5rem;
}

.premium-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 0 3rem 0;
}

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

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

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

/* Premium Package Cards */
.package-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.package-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.premium-card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.premium-main-img,
.premium-hover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.premium-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.package-card:hover .premium-main-img,
.card:hover .premium-main-img,
.bento-item:hover .premium-main-img,
.premium-card-img-wrapper:hover .premium-main-img {
    transform: scale(1.08);
}

.package-card:hover .premium-hover-img,
.card:hover .premium-hover-img,
.bento-item:hover .premium-hover-img,
.premium-card-img-wrapper:hover .premium-hover-img {
    opacity: 1 !important;
    z-index: 2 !important;
    transform: scale(1.08);
}

.card-img-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.premium-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffff;
    color: #0f766e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

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

.premium-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
    min-height: 3rem;
    display: flex;
    align-items: flex-start;
}

.premium-card-meta {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.premium-card-meta i {
    color: #0f766e;
    margin-right: 0.4rem;
    font-size: 0.9rem;
}

.premium-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.feature-chip {
    background: #f1f5f9;
    color: #334155;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.feature-chip i {
    color: #0f766e;
    margin-right: 4px;
    font-size: 0.75rem;
}

.premium-card-footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: 0.75rem;
}

.premium-price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
}

.premium-book-btn {
    background: #0f766e;
    color: #ffffff;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
}

.premium-book-btn:hover {
    background: #0d655e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

/* Enhanced Filters */
.filters-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 24px;
    margin-top: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0;
    flex: 1 1 auto;
}

.category-tabs .filter-tab {
    border-radius: 30px;
    padding: 0 1.25rem;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    background: #fdfdfd;
    color: #555;
    margin: 0;
}

.category-tabs .filter-tab:hover {
    background: #f0f0f0;
}

.category-tabs .filter-tab.active {
    background: var(--color-dark);
    color: var(--color-gold);
    border-color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(10, 17, 40, 0.2);
}

.search-sort-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: none;
    padding-top: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 320px;
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0 1.2rem 0 3rem;
    height: 42px;
    background: #fafafa;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}

.search-box input:focus {
    border-color: var(--color-gold);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-box label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    display: flex;
    align-items: center;
    height: 42px;
    white-space: nowrap;
}

.sort-box select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0 2.5rem 0 1rem;
    height: 42px;
    background: #fafafa;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}

.sort-box select:focus {
    border-color: var(--color-gold);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

/* Responsiveness for Filters */
@media (max-width: 1100px) {
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-sort-group {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .search-box {
        max-width: 100%;
        flex-basis: 100%;
    }
}

/* ================= PREMIUM ENQUIRY POPUP ================= */
#enquiry-modal .premium-enquiry-modal,
#welcome-enquiry-modal .premium-enquiry-modal,
#custom-enquiry-modal .premium-enquiry-modal,
#lead-details-modal .premium-enquiry-modal {
    background-color: #ffffff !important;
    width: 100%;
    max-width: 650px;
    border-radius: 18px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(7, 26, 47, 0.25);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Scroll handling */
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

#enquiry-modal.active .premium-enquiry-modal,
#welcome-enquiry-modal.active .premium-enquiry-modal,
#custom-enquiry-modal.active .premium-enquiry-modal,
#lead-details-modal.active .premium-enquiry-modal {
    transform: scale(1);
    opacity: 1;
}

#enquiry-modal .modal-header,
#welcome-enquiry-modal .modal-header,
#custom-enquiry-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #E6E6E6;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    position: sticky;
    top: -2.5rem;
    background-color: #FAF8F3;
    z-index: 10;
    padding-top: 1rem;
}

/* Specific overrides for Welcome Modal Header */
#welcome-enquiry-modal .welcome-modal-header {
    flex-direction: column;
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}

#welcome-enquiry-modal .welcome-modal-header .auth-modal-logo {
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
}

#welcome-enquiry-modal .welcome-modal-header .auth-logo-img {
    height: 80px;
}

#welcome-enquiry-modal .welcome-modal-header h3.custom-enquiry-heading {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

#welcome-enquiry-modal .welcome-modal-header .welcome-premium-subtitle {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

#welcome-enquiry-modal .modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

#enquiry-modal .modal-header h3,
#welcome-enquiry-modal .modal-header h3,
#custom-enquiry-modal .modal-header h3 {
    font-family: 'Sora', sans-serif;
    color: #071A2F;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

#enquiry-modal .modal-close,
#welcome-enquiry-modal .modal-close,
#custom-enquiry-modal .modal-close {
    background: #E6E6E6;
    color: #071A2F;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

#enquiry-modal .modal-close:hover,
#welcome-enquiry-modal .modal-close:hover,
#custom-enquiry-modal .modal-close:hover {
    background: #D4A93A;
    color: #fff;
    transform: rotate(90deg);
}

/* Premium Summary Card */
.enquiry-modal-summary {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    border: 1px solid #E6E6E6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.summary-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.summary-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #071A2F;
    margin: 0;
}

.summary-meta {
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-price {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.2rem;
}

.summary-price strong {
    font-size: 1.1rem;
    color: #071A2F;
    margin-left: 0.3rem;
}

/* Form Styles */
#modal-enquiry-form .form-row,
#welcome-enquiry-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

#modal-enquiry-form .form-group,
#welcome-enquiry-form .form-group {
    flex: 1;
    margin-bottom: 0;
    /* Clear default */
}

#modal-enquiry-form .form-group label,
#welcome-enquiry-form .form-group label {
    color: #071A2F;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

#modal-enquiry-form .input-wrapper,
#welcome-enquiry-form .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#modal-enquiry-form .input-icon,
#welcome-enquiry-form .input-icon {
    position: absolute;
    left: 1rem;
    color: #14A8A8;
    font-size: 1rem;
    pointer-events: none;
}

#modal-enquiry-form input,
#modal-enquiry-form textarea,
#welcome-enquiry-form input,
#welcome-enquiry-form select {
    width: 100%;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: #071A2F;
    transition: all 0.3s ease;
}

#modal-enquiry-form .input-wrapper input,
#welcome-enquiry-form .input-wrapper input,
#welcome-enquiry-form .input-wrapper select {
    padding-left: 2.8rem;
}

#modal-enquiry-form input:focus,
#modal-enquiry-form textarea:focus,
#welcome-enquiry-form input:focus,
#welcome-enquiry-form select:focus {
    border-color: #D4A93A;
    box-shadow: 0 4px 15px rgba(212, 169, 58, 0.15);
    outline: none;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-premium-submit {
    background: #14A8A8;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-premium-submit:hover {
    background: #0f8585;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 168, 168, 0.3);
}

.btn-cancel {
    background: transparent;
    color: #888;
    font-weight: 600;
    border: none;
    text-decoration: underline;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cancel:hover {
    color: #071A2F;
}

@media (max-width: 768px) {

    #enquiry-modal .premium-enquiry-modal,
    #welcome-enquiry-modal .premium-enquiry-modal,
    #custom-enquiry-modal .premium-enquiry-modal {
        width: 90%;
        padding: 1.5rem;
    }

    #modal-enquiry-form .form-row,
    #welcome-enquiry-form .form-row,
    #modal-custom-enquiry-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    #enquiry-modal .modal-header,
    #welcome-enquiry-modal .modal-header,
    #custom-enquiry-modal .modal-header {
        top: -1.5rem;
    }
}

/* ================= ADMIN UI STANDARDIZATION ================= */
.admin-tab-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-gold);
}

.action-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    padding-left: 0.5rem;
    border-left: 4px solid var(--color-gold);
    line-height: 1.2;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.admin-data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.admin-data-table th,
.admin-data-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.admin-data-table th {
    background-color: #f8fafc;
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.admin-data-table td {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Add Buttons */
.btn-admin-add {
    height: 42px;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-gold);
    color: var(--color-dark);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-admin-add:hover {
    background: var(--color-dark);
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Action Buttons (Edit/Delete) */
.admin-actions-cell {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-admin-action {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-admin-action:hover {
    background: #f1f5f9;
    color: var(--color-dark);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.btn-admin-action.delete:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

.btn-admin-action.call {
    color: #10b981;
}

.btn-admin-action.call:hover {
    background: #ecfdf5;
    color: #047857;
    border-color: #a7f3d0;
}

.btn-admin-action.view {
    color: #0284c7;
}

.btn-admin-action.view:hover {
    background: #e0f2fe;
    color: #0369a1;
    border-color: #7dd3fc;
}

.lead-row-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lead-row-item:hover {
    background-color: #f8fafc !important;
}

/* Truncation Utilities */
.truncate-1-line {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

/* Thumbnail Utilities */
.admin-thumb-70 {
    width: 70px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* Our Values Section Styles */
.our-values-section {
    padding: 4rem 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: var(--color-primary);
    /* Use the website's blue background */
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.our-values-section .sub-accent {
    color: #dfb162 !important;
    /* Specific gold color from image */
}

.our-values-section h2 {
    color: #ffffff !important;
}

.values-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    width: 100%;
}

.value-item {
    flex: 1 1 0;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.value-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    /* Light divider for dark bg */
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(223, 177, 98, 0.15), rgba(223, 177, 98, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfb162;
    /* Gold color */
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: translateY(-5px);
    background: #dfb162;
    color: var(--color-primary);
}

.value-item h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.value-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .values-grid {
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 45%;
        margin-bottom: 2rem;
    }

    .value-item:nth-child(even)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .value-item::after {
        display: none !important;
    }
}

/* ==============================================================
   HERO SIGNATURE SCRIPT STYLES
   ============================================================== */
.hero-content-box h2.hero-signature {
    font-family: 'Allura', cursive !important;
    font-size: 3rem !important;
    /* Elegant signature size */
    color: #FFFFFF !important;
    /* Changed to white */
    text-shadow: 0 2px 10px rgba(216, 160, 59, 0.5), 0 2px 4px rgba(0, 0, 0, 0.4) !important;
    /* Glow and slight contrast shadow */
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 400 !important;
    margin-bottom: 2rem !important;
    margin-top: -0.5rem !important;
    text-align: center !important;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.hero-slide.active .hero-content-box h2.hero-signature {
    /* Animation final state */
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s !important;
    /* Reveals right after the main heading */
}

@media (max-width: 768px) {
    .hero-content-box h2.hero-signature {
        font-size: 2.2rem !important;
    }
}

/* ==============================================================
   GLOBAL ICON GOLD COLOR OVERRIDE
   ============================================================== */
/* Make all standard FontAwesome icons real Gold */
i.fas,
i.fab,
i.far,
.fas,
.fab,
.far,
.separator-icon {
    color: #D8A03B !important;
}

/* Preserve icon color inside solid buttons for contrast */
.btn i,
button i,
.social-circle i {
    color: inherit !important;
}

/* ==============================================================
   CIRCULAR DESTINATIONS REDESIGN
   ============================================================== */
.circular-destinations-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.circular-destination-card {
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-img-box {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid transparent;
    transition: all 0.3s ease;
}

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

.circle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.circle-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    font-weight: normal;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
    white-space: nowrap;
    z-index: 2;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}

/* Hover Effects */
.circular-destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.circular-destination-card:hover .circle-img-box {
    border-color: #4dc4c4;
    /* Ocean Teal glow */
    box-shadow: 0 0 15px rgba(77, 196, 196, 0.5);
}

.circular-destination-card:hover .circle-img-box img {
    transform: scale(1.1);
}

.circular-destination-card:hover .circle-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .circular-destinations-wrapper {
        gap: 2rem;
    }

    .circle-img-box {
        width: 200px;
        height: 200px;
    }

    .circle-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .circular-destinations-wrapper {
        gap: 1.5rem;
    }

    .circle-img-box {
        width: 180px;
        height: 180px;
    }

    .circle-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .circular-destinations-wrapper {
        gap: 1rem;
    }

    .circle-img-box {
        width: 150px;
        height: 150px;
    }

    .circle-title {
        font-size: 1.4rem;
    }
}

/* ==============================================================
   FOOTER MOBILE RESPONSIVENESS (Redesign)
   ============================================================== */
@media (max-width: 768px) {
    .main-footer .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-footer .footer-branding {
        display: flex;
        justify-content: center;
    }

    .main-footer .footer-col.links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-footer .contact-link p {
        justify-content: center;
        text-align: center;
    }

    .main-footer .footer-social-links {
        justify-content: center;
    }

    .footer-brand-desc {
        font-size: 15px;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-col.about {
        padding-right: 0 !important;
    }

    .footer-branding {
        text-align: center !important;
    }
}

/* Footer Description Typography */
.footer-brand-desc {
    font-size: 18px;
}

@media (max-width: 1024px) {
    .footer-brand-desc {
        font-size: 16px;
    }
}

/* Enquiry Popup Improvements */
.custom-enquiry-heading {
    color: #0f172a !important;
    font-family: 'Poppins', 'Sora', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    text-align: center;
    letter-spacing: -0.01em !important;
    word-spacing: normal !important;
    margin-bottom: 0.5rem !important;
    white-space: normal !important;
    line-height: 1.3 !important;
}

@media (max-width: 1024px) {
    .custom-enquiry-heading {
        font-size: 1.45rem !important;
    }
}

@media (max-width: 768px) {
    .custom-enquiry-heading {
        font-size: 1.3rem !important;
    }
}

/* Destinations Section Cursive Heading */
.destinations-cursive-heading {
    font-size: 44px;
}

@media (max-width: 1024px) {
    .destinations-cursive-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .destinations-cursive-heading {
        font-size: 30px;
    }
}

/* ====================================================
   PREMIUM UI/UX ENHANCEMENTS & ANIMATIONS
==================================================== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Base Reveal Class */
.reveal-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Fade Up */
.fade-up {
    transform: translateY(40px);
}

/* Fade In */
.fade-in {
    /* Base opacity handles this */
}

/* Slide Left / Right */
.slide-left {
    transform: translateX(-50px);
}

.slide-right {
    transform: translateX(50px);
}

/* Scale Up */
.scale-up {
    transform: scale(0.95);
}

/* Glassmorphism Premium */
.premium-glass {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px 0 rgba(7, 27, 52, 0.05) !important;
}

.dark-glass {
    background: rgba(7, 27, 52, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Magnetic Hover Button */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, background-color 0.3s ease;
}

.magnetic-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Card Hover Enhancements (Lift & Shadow) */
.premium-card-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 27, 52, 0.1);
}

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

/* Circular Destination Hover */
.circular-destination-card .circle-img-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.circular-destination-card:hover .circle-img-box {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(7, 27, 52, 0.15);
}

.circular-destination-card:hover h3 {
    color: var(--color-gold) !important;
}

/* Image Zoom Wrapper */
.zoom-wrapper {
    overflow: hidden;
}

.zoom-wrapper img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Stats Section Styles */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary), #0c2b54);
    color: white;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.stat-item:hover h3 {
    color: #E5C76B;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

/* Bento Grid for Why Choose Us */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bento-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(7, 27, 52, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(7, 27, 52, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.bento-item:hover .value-icon i {
    transform: scale(1.1) rotate(5deg);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.bento-item .value-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.bento-item.large .value-icon {
    font-size: 3.5rem;
}

.bento-item h4 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.bento-item.large h4 {
    font-size: 2rem;
}

.bento-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bento-item.large p {
    font-size: 1.1rem;
}

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

    .bento-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

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

    .bento-item.large {
        grid-column: span 1;
    }

    .bento-item {
        min-height: 200px;
    }
}

/* Footer Enhancements */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-circle {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.footer-branding img {
    transition: filter 0.4s ease;
}

.footer-branding img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* Enquiry Popup Enhancements */
.welcome-modal-premium {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active .welcome-modal-premium {
    transform: scale(1);
    opacity: 1;
}

.welcome-glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(7, 27, 52, 0.2);
}

.welcome-premium-input:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

/* Footer Brand Description */
.footer-brand-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.2px;
    text-align: left;
    color: #D4AF37;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.15);
    max-width: 420px;
    margin: -20px 0 0 0;
}

@media (max-width: 1024px) {
    .footer-brand-desc {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .footer-brand-desc {
        font-size: 16px;
    }
}

/* Legal Footer Links */
.legal-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 1rem;
    background-color: transparent;
    flex-wrap: wrap;
    margin-top: 20px;
}

.legal-footer-links a {
    font-family: var(--font-accent);
    color: #F8F8F8;
    background: none;
    padding: 0;
    border: none;
    font-weight: 600;
    font-size: 19px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.legal-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #D4AF37;
    transition: width 0.3s ease, left 0.3s ease;
}

.legal-footer-links a:hover {
    color: #D4AF37;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.legal-footer-links a:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 768px) {
    .legal-footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Legal Modals */
.legal-modal-overlay {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(10, 17, 40, 0.6);
}

.legal-modal-card {
    background: #ffffff;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.legal-modal-header {
    background: var(--color-primary);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-modal-header h3 {
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-size: 2rem;
    margin: 0;
}

.legal-modal-close {
    color: #ffffff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    position: static;
    transition: color 0.3s ease;
}

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

.legal-modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    font-family: var(--font-body);
    color: var(--color-text-dark);
}

.legal-modal-body h4 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.legal-modal-body h5 {
    color: var(--color-turquoise);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.legal-modal-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-modal-body ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-modal-body ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-modal-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-modal-body th,
.legal-modal-body td {
    border: 1px solid #cbd5e1;
    padding: 0.75rem 1rem;
    text-align: left;
}

.legal-modal-body th {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    font-weight: 600;
}

/* Custom Enquiry Modal Text Color & Design Fixes */
#custom-enquiry-modal .premium-enquiry-modal {
    background-color: #FAF8F3 !important;
}

#custom-enquiry-modal .modal-header h3 {
    color: #071A2F !important;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

#custom-enquiry-modal label {
    color: #071A2F !important;
    font-weight: 600 !important;
}

#custom-enquiry-modal .modal-close {
    background: #E6E6E6 !important;
    color: #071A2F !important;
}

#custom-enquiry-modal .modal-close:hover {
    background: #D4A93A !important;
    color: #ffffff !important;
}

#custom-enquiry-modal input,
#custom-enquiry-modal select,
#custom-enquiry-modal textarea {
    background-color: #ffffff !important;
    border: 1px solid rgba(7, 26, 47, 0.2) !important;
    color: #071A2F !important;
}

#custom-enquiry-modal input:focus,
#custom-enquiry-modal select:focus,
#custom-enquiry-modal textarea:focus {
    background-color: #ffffff !important;
    border-color: #0f766e !important;
    box-shadow: 0 0 0 3px rgba(15, 181, 179, 0.3) !important;
}

/* ================= MOBILE & TABLET RESPONSIVE DECORATIONS ================= */
@media (max-width: 1024px) {

    /* Hide desktop actions & nav links in header */
    .header-actions,
    .main-header .main-nav {
        display: none !important;
    }

    /* Make header flex and relatively positioned to support absolute logo alignment */
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        position: relative !important;
        height: 60px !important;
    }

    /* Center align the logo absolute within the header-container */
    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        align-items: center !important;
        z-index: 100 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Show mobile hamburger menu toggle on LEFT side */
    .mobile-menu-toggle {
        display: block !important;
        order: 0 !important;
        background: none !important;
        border: none !important;
        color: #2F5D8A !important;
        /* Matches brand text color */
        font-size: 1.5rem !important;
        cursor: pointer !important;
        margin-right: auto !important;
        margin-left: 0 !important;
        z-index: 101 !important;
    }

    /* Logo styling size & text check */
    .logo-img {
        height: 50px !important;
        /* Smaller logo in mobile/tablet for header height */
        width: auto !important;
    }

    /* Hide logo brand text on mobile and tab view */
    .logo-brand-text {
        display: none !important;
    }

    .brand-line1 {
        font-size: 1rem !important;
        letter-spacing: 2px !important;
    }

    .brand-line2 {
        font-size: 0.5rem !important;
        letter-spacing: 1px !important;
    }

    /* Enable mobile menu toggle popup to show main-nav when active (white background, gold borders) */
    .main-nav.active {
        display: block !important;
        width: 100% !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background-color: #ffffff !important;
        /* White Background */
        padding: 1.5rem 2rem !important;
        border-bottom: 2px solid #D4A93A !important;
        /* Gold Border Line */
        box-shadow: var(--shadow-lg) !important;
        z-index: 999 !important;
        text-align: left !important;
    }

    .main-nav.active ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        width: 100% !important;
    }

    .main-nav.active li {
        width: 100% !important;
        text-align: left !important;
    }

    /* Gold separate lines between list items */
    .main-nav.active li:not(.mobile-only-nav-item) {
        border-bottom: 1px solid rgba(212, 169, 58, 0.4) !important;
        padding-bottom: 0.5rem !important;
        margin-bottom: 0.25rem !important;
    }

    .main-nav.active .nav-link {
        color: var(--color-primary) !important;
        /* Navy Blue Text Color */
        display: block !important;
        padding: 0.5rem 0 !important;
        font-size: 1.05rem !important;
        text-align: left !important;
        width: 100% !important;
    }

    /* Hide chevron symbols in mobile view */
    .main-nav .nav-link::before,
    .main-nav .nav-link::after {
        display: none !important;
    }

    .main-nav.active .mobile-only-nav-item {
        display: block !important;
        margin-top: 1rem !important;
        width: 100% !important;
        max-width: 280px !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    /* Style Custom Enquiry button to navy blue background with white text */
    .nav-auth-btn-mobile {
        background-color: var(--color-primary) !important;
        /* Navy blue background */
        border-color: var(--color-primary) !important;
        color: #ffffff !important;
        /* White text */
        display: block !important;
        width: 100% !important;
        padding: 0.6rem 1.4rem !important;
        border-radius: var(--radius-lg) !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        text-align: center !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: none !important;
        text-transform: none !important;
        letter-spacing: normal !important;
    }

    .nav-auth-btn-mobile:hover {
        background-color: var(--color-primary-light) !important;
        border-color: var(--color-primary-light) !important;
        color: #ffffff !important;
    }
}

.mobile-filter-select-wrapper {
    display: none;
}

@media (max-width: 768px) {
    .category-tabs {
        display: none !important;
    }

    .mobile-filter-select-wrapper {
        display: block !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }

    .mobile-filter-select {
        width: 100% !important;
        height: 45px !important;
        padding: 0 1rem !important;
        border-radius: 8px !important;
        border: 1px solid rgba(7, 26, 47, 0.15) !important;
        background-color: #ffffff !important;
        color: #071A2F !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        outline: none !important;
        cursor: pointer !important;
    }
}

/* Mobile Banners & Alignment Fixes */
@media (max-width: 1024px) {

    /* Clear section top padding on views with banners to remove the white gap */
    .view,
    .view-section {
        padding-top: 0 !important;
    }

    /* Revert background-attachment to scroll on mobile to remove white space rendering bugs */
    .page-banner,
    .premium-hero-banner {
        background-attachment: scroll !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* About Us mobile image wrapper alignment & spacing */
    .about-image-wrapper {
        margin-top: 1.5rem !important;
        margin-bottom: 2.5rem !important;
        width: 100% !important;
    }

    /* About Us mobile image alignment & scaling */
    .about-main-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* About Us founder's title font scaling to prevent wrap/overflow */
    #about-view h3 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    /* Shrink glow-box offset slightly on mobile to avoid negative margin left-edge screen overflow */
    .glow-box {
        top: -8px !important;
        left: -8px !important;
        width: calc(100% + 16px) !important;
        height: calc(100% + 16px) !important;
    }
}

/* Responsive fixes for legal modals and About Us page alignment */
@media (max-width: 768px) {
    .about-text-content {
        text-align: center !important;
    }

    .about-quote {
        border-left: none !important;
        border-top: 2px solid var(--color-gold) !important;
        border-bottom: 2px solid var(--color-gold) !important;
        padding: 1rem 0 !important;
        margin: 2rem auto !important;
        max-width: 90% !important;
        text-align: center !important;
    }
}

@media (max-width: 600px) {
    .legal-modal-card {
        width: 95% !important;
        max-height: 90vh !important;
    }

    .legal-modal-header {
        padding: 1rem 1.25rem !important;
    }

    .legal-modal-header h3 {
        font-size: 1.3rem !important;
    }

    .legal-modal-close {
        font-size: 1.5rem !important;
    }

    .legal-modal-body {
        padding: 1.25rem !important;
    }

    .legal-modal-body h4 {
        font-size: 1.1rem !important;
        margin: 1.25rem 0 0.75rem 0 !important;
    }

    .legal-modal-body ul {
        margin-left: 1.25rem !important;
    }

    .legal-modal-body table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* Force all headings to uppercase */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase !important;
}

/* ================= PREMIUM DESTINATIONS REDESIGN ================= */

.destinations-premium-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.premium-label {
    display: block;
    color: var(--color-turquoise);
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 11px;
    margin-bottom: -10px;
    text-transform: uppercase;
}

.premium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.premium-divider .line {
    height: 1px;
    width: 40px;
    background-color: var(--color-turquoise);
}

.premium-divider i {
    color: var(--color-turquoise);
    font-size: 1.2rem;
}

.premium-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 3.0rem !important;
    font-weight: 700;
    color: #111;
    margin: 0 0 1rem;
    letter-spacing: -1px;
    text-transform: none !important;
}

.premium-desc {
    max-width: 650px;
    margin: 0 auto;
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.premium-destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    padding: 20px 0;
}

.premium-destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #000;
}

.premium-destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.premium-destination-card.featured {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

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

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

.premium-destination-card:hover .card-bg img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 35px 25px 25px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.popular-badge {
    position: absolute;
    top: 20px;
    background-color: var(--color-turquoise);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.premium-destination-card.featured .popular-badge {
    opacity: 1;
}

.dest-icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-turquoise);
    margin-bottom: 15px;
    border: 2px solid transparent;
}

.premium-destination-card:hover .dest-icon,
.premium-destination-card.featured .dest-icon {
    border-color: rgba(255, 255, 255, 0.4);
}

.dest-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600 !important;
    margin: 0 0 8px;
    text-transform: uppercase !important;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.dest-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px;
    line-height: 1.4;
    min-height: 40px;
}

.explore-btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.premium-destination-card.featured .explore-btn {
    background-color: var(--color-turquoise);
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
}

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

    .premium-destination-card.featured {
        transform: none;
        z-index: 1;
    }
}

@media (max-width: 768px) {
    .dest-title {
        font-size: 1.5rem !important;
        letter-spacing: 0.5px;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .card-content {
        padding: 25px 15px 20px;
    }

    .premium-title {
        font-size: 3rem !important;
    }

    .premium-destinations-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 20px 20px 20px;
        scroll-padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        scrollbar-width: none;
    }

    .premium-destinations-grid::-webkit-scrollbar {
        display: none;
    }

    .premium-destination-card {
        flex: 0 0 calc(85% - 8px);
        scroll-snap-align: center;
        min-height: 450px;
        opacity: 1;
        transform: none;
    }

    .premium-destination-card.mobile-reveal {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .premium-destination-card.mobile-reveal.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Ensure the last card has space on the right since padding-right on container might be ignored in flex overflow */
    .premium-destinations-grid::after {
        content: '';
        flex: 0 0 4px;
        /* Makes up for the missing right space */
    }

    .premium-destination-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .dest-title {
        font-size: 1.35rem !important;
    }

    .admin-auth-gate {
        margin: 1.5rem auto !important;
        padding: 1.5rem 1rem !important;
        max-width: 92% !important;
    }
}

.why-choose-cursive-title {
    color: #D8A03B !important;
    font-family: 'Brittany Signature', 'Allura', cursive !important;
    font-size: 2.2rem !important;
    font-weight: normal !important;
    text-transform: none !important;
}

.about-cursive-title {
    color: #D8A03B !important;
    font-family: 'Brittany Signature', 'Allura', cursive !important;
    font-size: 2rem !important;
    font-weight: normal !important;
    text-transform: none !important;
    white-space: nowrap;
}

@media (max-width: 768px) {

    /* 1. Reduce large banner titles on mobile */
    .packages-banner h2,
    .about-banner h2,
    .blog-banner h2,
    .contact-banner h2 {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
    }

    /* 2. Fix overlapping and overflowing cursive titles on mobile */
    .about-cursive-title {
        font-size: 1.4rem !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        margin-top: 0.5rem !important;
        margin-bottom: 1rem !important;
    }

    .about-text-content .sub-accent {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
        display: block !important;
    }

    .why-choose-cursive-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-top: 0.5rem !important;
    }

    /* 3. Reduce legal footer links font size on mobile */
    .legal-footer-links a {
        font-size: 13px !important;
        letter-spacing: 1px !important;
    }
}

/* ================= WHATSAPP INTEGRATION & THANK YOU MODAL STYLES ================= */
.btn-pkg-whatsapp {
    background-color: #25D366 !important;
    color: #ffffff !important;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    cursor: pointer;
}

.btn-pkg-whatsapp:hover {
    background-color: #128c7e !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-admin-action.whatsapp {
    background-color: #25D366 !important;
    color: #ffffff !important;
    transition: all 0.2s ease;
}

.btn-admin-action.whatsapp:hover {
    background-color: #128c7e !important;
    transform: scale(1.08);
}

.thankyou-modal-box {
    animation: popInModal 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popInModal {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wa-preview-box {
    transition: all 0.2s ease;
}

.wa-preview-box:hover {
    border-color: #818cf8 !important;
}

/* WhatsApp Admin Table Action Buttons Fix */
.wa-action-cell {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    min-width: 195px !important;
}

.wa-btn-test {
    background-color: #25D366 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 0.45rem 0.75rem !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    border: none !important;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25) !important;
    transition: all 0.2s ease !important;
}

.wa-btn-test:hover {
    background-color: #128c7e !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

.wa-btn-copy {
    background-color: #475569 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 0.45rem 0.75rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.2s ease !important;
}

.wa-btn-copy:hover {
    background-color: #334155 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* =========================================================================
   HERO SLIDER NAVIGATION ARROWS & SWIPE STYLING
   ========================================================================= */
.hero-slider {
    position: relative;
    user-select: none;
    touch-action: pan-y;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    background: rgba(15, 23, 42, 0.55);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-slider-arrow.prev-arrow {
    left: 25px;
}

.hero-slider-arrow.next-arrow {
    right: 25px;
}

.hero-slider:hover .hero-slider-arrow {
    opacity: 1;
    visibility: visible;
}

.hero-slider-arrow:hover {
    background: var(--color-gold, #c5a880) !important;
    color: #000000 !important;
    border-color: var(--color-gold, #c5a880) !important;
    transform: translateY(-50%) scale(1.12) !important;
    box-shadow: 0 6px 18px rgba(197, 168, 128, 0.5) !important;
}

.hero-slider-arrow:active {
    transform: translateY(-50%) scale(0.95) !important;
}

@media (max-width: 768px) {
    .hero-slider-arrow,
    .slider-btn {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}