/* -------------------------------------------------------------
 * Ceylon Nomadic Travels (www.Ceylonnomadictravels.com)
 * Next-Gen Modern Luxury Tourism Platform Design System (2026 Edition)
 * ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600&display=swap');

:root {
    /* Color Palette - Luxury Sri Lankan Tourism Theme */
    --primary-dark: #042621;     /* Midnight Emerald Surface */
    --primary: #06373A;          /* Deep Emerald Teal */
    --primary-mid: #0A4F53;      /* Royal Ceylon Forest */
    --primary-light: #0E6B70;    /* Vibrant Lagoon Teal */
    --primary-glow: rgba(6, 55, 58, 0.35);

    --accent: #F59E0B;           /* Sunburst Ceylon Gold */
    --accent-hover: #D97706;     /* Deep Gold Amber */
    --accent-light: #FBBF24;     /* Bright Sunshine Yellow */
    --accent-glow: rgba(245, 158, 11, 0.45);

    --whatsapp: #25D366;         /* Official WhatsApp Green */
    --whatsapp-hover: #1EBE57;
    --whatsapp-glow: rgba(37, 211, 102, 0.4);

    --cyan: #06B6D4;             /* Lagoon Turquoise */
    --coral: #EF4444;            /* Hibiscus Red */

    /* Surfaces & Layout */
    --bg-light: #F8FAFC;         /* Soft Off-White */
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-dark-surface: #031E1A;  /* Ultra Dark Emerald */
    --text-dark: #0F172A;        /* Slate Dark */
    --text-muted: #475569;       /* Slate Subtitle */
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --border-dark: rgba(255, 255, 255, 0.12);

    /* Typography Scale */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Shadows & Radii */
    --shadow-sm: 0 4px 14px -2px rgba(4, 38, 33, 0.06);
    --shadow-md: 0 12px 30px -6px rgba(4, 38, 33, 0.12);
    --shadow-lg: 0 24px 50px -10px rgba(4, 38, 33, 0.25);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 9999px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.65;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

ul, ol {
    list-style: none;
}

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

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

/* Currency Select Badge */
.mobile-currency-item {
    display: none;
}

.currency-selector {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F1F5F9;
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.site-header.scrolled .currency-selector {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 158, 11, 0.4);
}

.currency-selector select {
    background: transparent;
    border: none;
    color: var(--primary-dark);
    font-weight: 800;
    font-family: var(--font-body);
    cursor: pointer;
    outline: none;
}

.site-header.scrolled .currency-selector select {
    color: #FFFFFF;
}

.currency-selector select option {
    background: var(--primary-dark);
    color: white;
}

/* Main Site Header - Glassmorphic Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(4, 38, 33, 0.05);
    transition: var(--transition);
    height: 76px;
}

.site-header.scrolled {
    top: 0;
    background: rgba(4, 38, 33, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-decoration: none;
}

.header-logo-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.site-header.scrolled .brand-logo-img {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.05;
    letter-spacing: -0.2px;
    transition: var(--transition);
}

.site-header.scrolled .logo-text {
    color: #FFFFFF;
}

.logo-text span {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--primary-mid);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-top: 2px;
    transition: var(--transition);
}

.site-header.scrolled .logo-text span {
    color: var(--accent-light);
}

/* Navigation Links */
.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #334155;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.site-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; width: 0; height: 2.5px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

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

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--accent-light);
}

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

.header-right-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-plan-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: white;
    padding: 10px 24px;
    font-size: 0.92rem;
    border-radius: 30px;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(6, 55, 58, 0.3);
    text-decoration: none;
}

.site-header.scrolled .header-plan-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.header-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 55, 58, 0.45);
    color: white;
}

.site-header.scrolled .header-plan-btn:hover {
    color: var(--primary-dark);
    box-shadow: 0 10px 28px var(--accent-glow);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #1E293B;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
}

.site-header.scrolled .nav-toggle {
    color: white;
    background: rgba(255,255,255,0.1);
}

/* Modern Luxury Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
    text-decoration: none;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--accent-glow);
    color: var(--primary-dark);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(6, 55, 58, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(6, 55, 58, 0.5);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-hover) 100%);
    color: white;
    box-shadow: 0 6px 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--whatsapp-glow);
    color: white;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
}

.btn-outline-dark {
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: #FFFFFF;
    border-color: var(--primary-dark);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.88rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 94vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    padding-top: 110px;
    padding-bottom: 50px;
    background-color: var(--primary-dark);
    width: 100%;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center 10%;
}

.hero-video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(3, 30, 26, 0.45) 0%, rgba(3, 30, 26, 0.3) 50%, rgba(3, 30, 26, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1050px;
    width: 100%;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
    transition: var(--transition);
}

.hero-badge-pill i {
    color: #FBBF24;
    font-size: 1.05rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.hero-badge-pill span {
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.hero-brand-badge-filigree {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.hero-brand-badge-filigree:hover {
    transform: translateY(-4px) scale(1.03);
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero-center-logo {
    height: 85px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.95));
    margin-bottom: 6px;
    animation: heroLogoFloat 5s ease-in-out infinite;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-brand-badge-filigree:hover .hero-center-logo {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 25px rgba(245, 158, 11, 0.8));
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-brand-serif {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.7);
    transition: text-shadow 0.35s ease;
}

.hero-brand-badge-filigree:hover .hero-brand-serif {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 0 0 35px rgba(245, 158, 11, 0.6);
}

.hero-brand-sub-serif {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
    margin-bottom: 8px;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.hero-brand-badge-filigree:hover .hero-brand-sub-serif {
    color: #FBBF24;
    text-shadow: 0 0 16px rgba(245, 158, 11, 0.8);
}

.filigree-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--accent-light);
    margin-top: 2px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

.filigree-line {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-light) 50%, var(--accent) 100%);
    transition: width 0.35s ease;
}

.hero-brand-badge-filigree:hover .filigree-line {
    width: 75px;
}

.filigree-line:last-child {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, transparent 100%);
}

.filigree-icon {
    font-size: 0.88rem;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.35s ease;
}

.hero-brand-badge-filigree:hover .filigree-icon {
    transform: rotate(180deg);
    color: #FBBF24;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #FFFFFF;
    letter-spacing: -1px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.highlight-explore {
    color: var(--accent-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 15px var(--accent-glow);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* Simple Hero Search Bar */
.hero-search-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 680px;
    margin-top: 28px;
}

.hero-simple-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    gap: 12px;
    width: 100%;
}

.hero-simple-search:focus-within {
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.simple-search-icon {
    font-size: 1.15rem;
    color: var(--primary);
}

.simple-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.simple-search-input::placeholder {
    color: #64748B;
    font-weight: 500;
}

.simple-search-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(6, 55, 58, 0.35);
    white-space: nowrap;
}

.simple-search-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px var(--accent-glow);
}

/* Dark Bottom Feature Stats Bar */
.hero-bottom-stats-bar {
    background: #031C18;
    color: white;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-feature-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
}

.stat-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.stat-icon {
    font-size: 1.1rem;
    color: var(--accent);
    margin-right: 2px;
}

.stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-text strong,
.stat-text strong span.counter-val {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
}

.stat-text > span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}

/* Base Section Layout Styling */
.site-section {
    padding: 85px 0;
}

/* Section Title */
.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 20px;
}

.section-title h4,
.section-title-left h4 {
    color: var(--accent-hover);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title h2,
.section-title-left h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    text-align: center;
}

/* Top Destinations Section */
.top-destinations-section {
    padding: 85px 0 65px;
    background: #FFFFFF;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.dest-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.dest-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.dest-card:hover .dest-img {
    transform: scale(1.08);
    filter: brightness(1.18) contrast(1.05);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(3, 30, 26, 0.1) 0%, rgba(3, 30, 26, 0.65) 50%, rgba(3, 30, 26, 0.95) 100%);
    color: white;
    transition: background 0.4s ease;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(180deg, rgba(3, 30, 26, 0.0) 0%, rgba(3, 30, 26, 0.22) 45%, rgba(3, 30, 26, 0.8) 100%);
}

.dest-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #FFD166;
    background: rgba(3, 30, 26, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 209, 102, 0.4);
    width: fit-content;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.dest-type i {
    color: #FFD166;
    font-size: 0.7rem;
}

.dest-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #FFFFFF;
    font-family: var(--font-heading);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.25;
}

.dest-desc {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Features / Why Choose Us */
.features-section {
    padding: 95px 0 70px;
    background: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #FFFFFF;
    padding: 40px 28px 34px;
    border-radius: 18px;
    box-shadow: 0 10px 30px -5px rgba(4, 38, 33, 0.06);
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.8;
    transition: opacity 0.35s ease, height 0.35s ease;
}

.feature-card:hover::before {
    opacity: 1;
    height: 5px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px -12px rgba(4, 38, 33, 0.16);
    border-color: rgba(245, 158, 11, 0.5);
}

.feature-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 24px;
    color: #FFFFFF;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(4deg);
}

/* Individual Feature Card Color Themes */
.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, #042621 0%, #0E6B70 100%);
}
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #042621 0%, #0E6B70 100%);
    box-shadow: 0 10px 22px -4px rgba(14, 107, 112, 0.45);
}
.feature-card:nth-child(1):hover {
    border-color: rgba(14, 107, 112, 0.5);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
}
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 10px 22px -4px rgba(245, 158, 11, 0.45);
}
.feature-card:nth-child(2):hover {
    border-color: rgba(245, 158, 11, 0.5);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #06B6D4 0%, #0284C7 100%);
}
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
    box-shadow: 0 10px 22px -4px rgba(6, 182, 212, 0.45);
}
.feature-card:nth-child(3):hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, #25D366 0%, #10B981 100%);
}
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #25D366 0%, #10B981 100%);
    box-shadow: 0 10px 22px -4px rgba(37, 211, 102, 0.45);
}
.feature-card:nth-child(4):hover {
    border-color: rgba(37, 211, 102, 0.5);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* Tour Packages Section */
.packages-section {
    padding: 90px 0;
    background: #F1F5F9;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    outline: none;
}

.tab-btn i {
    font-size: 0.92rem;
    color: var(--primary);
    transition: transform 0.25s ease, color 0.25s ease;
}

.tab-btn:hover {
    background: #F8FAFC;
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 30, 26, 0.08);
}

.tab-btn:hover i {
    color: var(--accent-hover);
    transform: scale(1.1);
}

.tab-btn.active {
    background: var(--primary-dark);
    color: #FFFFFF;
    border-color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(3, 30, 26, 0.25);
}

.tab-btn.active i {
    color: var(--accent);
}

.tab-btn.active i {
    color: #F59E0B;
}

.packages-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.packages-search-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #F59E0B;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
    margin: 0;
}

.packages-search-input {
    width: 100%;
    padding: 12px 145px 12px 52px !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 50px !important;
    outline: none !important;
    font-size: 0.96rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FFFFFF !important;
    color: #0F172A;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.packages-search-input:focus {
    border-color: #F59E0B !important;
    background: #FFFFFF !important;
    box-shadow: 0 10px 30px -5px rgba(245, 158, 11, 0.22), 0 0 0 4px rgba(245, 158, 11, 0.12) !important;
}

.packages-search-input::placeholder {
    color: #94A3B8;
    font-weight: 500;
    opacity: 1;
}

.packages-search-wrapper .clear-search-btn,
.hero-search-wrapper .hero-clear-search-btn {
    position: absolute;
    right: 114px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.25);
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    z-index: 4;
    transition: all 0.2s ease;
}

.packages-search-wrapper .clear-search-btn:hover,
.hero-search-wrapper .hero-clear-search-btn:hover {
    background: rgba(15, 23, 42, 0.15);
    color: #0F172A;
    transform: translateY(-50%) scale(1.1);
}

.packages-search-submit-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    z-index: 3;
}

.packages-search-submit-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Inline Search Error Message */
.search-inline-error-msg {
    margin-top: 12px;
    background: rgba(11, 60, 54, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #FFFFFF;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: searchShake 0.3s ease-in-out;
    position: relative;
    z-index: 10;
}

.search-inline-error-msg em {
    color: #F59E0B;
    font-style: normal;
    font-weight: 700;
}

/* Search Destination Spotlight Banner Card */
.search-destination-banner {
    background: linear-gradient(135deg, #0b3c36 0%, #062824 100%);
    border-radius: 16px;
    color: #FFFFFF;
    padding: 22px 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 10px 30px rgba(11, 60, 54, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.search-destination-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%);
}

.dest-banner-img {
    width: 140px;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.dest-banner-content {
    flex-grow: 1;
    min-width: 0;
}

.dest-banner-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.dest-banner-badge {
    font-size: 0.74rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #F59E0B;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dest-banner-type {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.95);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.dest-banner-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF;
    font-size: 1.45rem;
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.25;
}

.dest-banner-desc {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .search-destination-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .dest-banner-img {
        width: 100%;
        height: 150px;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.package-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.package-card:hover .package-img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

.package-tag {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.package-meta {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(4, 38, 33, 0.88);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.package-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-category {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.package-body h3 {
    font-family: var(--font-heading);
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.package-body p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.65;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.package-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.package-price span.price-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary);
}

/* Custom Trip Wizard Section */
.wizard-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #021411 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.wizard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
}

.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    position: relative;
    padding: 0 20px;
}

.wizard-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 3px;
}

/* Responsive Estimated Price Badge */
.wizard-price-badge {
    background: rgba(245, 158, 11, 0.14);
    border: 1.5px solid rgba(245, 158, 11, 0.5);
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 22px auto;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    font-weight: 700;
    font-size: 0.9rem;
    color: #FBBF24;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.wizard-price-badge i {
    color: #F59E0B;
    font-size: 1.05rem;
}

.wizard-price-badge .wizard-price-val {
    color: #F59E0B;
    font-weight: 900;
    font-size: 1.35rem;
    font-family: var(--font-heading);
    margin-left: 2px;
    line-height: 1;
}

.wizard-price-badge .badge-unit {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Light Theme Variant (for custom-tour.php) */
.wizard-price-badge.light-theme {
    background: #FEF3C7;
    border: 1.5px solid #F59E0B;
    color: #92400E;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.12);
}

.wizard-price-badge.light-theme i {
    color: #D97706;
}

.wizard-price-badge.light-theme .wizard-price-val {
    color: #B45309;
}

.wizard-price-badge.light-theme .badge-unit {
    color: #78350F;
}

@media (max-width: 600px) {
    .wizard-price-badge {
        padding: 6px 14px;
        border-radius: 40px;
        gap: 5px;
        font-size: 0.74rem;
        max-width: 96%;
    }

    .wizard-price-badge i {
        font-size: 0.85rem;
    }

    .wizard-price-badge .wizard-price-val {
        font-size: 1.08rem;
    }

    .wizard-price-badge .badge-unit {
        font-size: 0.68rem;
    }
}

.step-dot {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #031e1a;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.step-dot.completed {
    background: #10B981;
    border-color: #10B981;
    color: transparent;
}

.step-dot.completed::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: white;
    position: absolute;
}

.wizard-step-content {
    display: none;
}

.wizard-step-content.active {
    display: block;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.option-box {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    user-select: none;
    color: white;
}

.option-box:hover {
    border-color: rgba(245, 158, 11, 0.6);
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.option-box.selected {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(245, 158, 11, 0.08) 100%);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.option-box.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.95rem;
    color: var(--accent);
}

.option-box i {
    font-size: 1.8rem;
    color: var(--accent-light);
    margin-bottom: 10px;
    display: block;
    transition: transform 0.25s ease;
}

.option-box:hover i,
.option-box.selected i {
    transform: scale(1.1);
}

.option-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.option-box p {
    color: rgba(255, 255, 255, 0.8);
}

/* Light Wizard Theme Overrides (custom-tour.php) */
.wizard-card-light {
    background: #FFFFFF !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-lg) !important;
    color: var(--text-dark) !important;
}

.wizard-card-light .wizard-steps-indicator::before {
    background: #CBD5E1 !important;
    height: 3px !important;
}

.wizard-card-light .step-dot {
    background: #F1F5F9 !important;
    border: 2px solid #CBD5E1 !important;
    color: #475569 !important;
}

.wizard-card-light .step-dot.active {
    background: var(--accent) !important;
    color: var(--primary-dark) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.5) !important;
}

.wizard-card-light .step-dot.completed {
    background: #10B981 !important;
    border-color: #10B981 !important;
    color: white !important;
}

.wizard-card-light .step-dot.completed::after {
    color: white !important;
}

.wizard-card-light .option-box {
    background: #FFFFFF !important;
    border: 1.5px solid #E2E8F0 !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.wizard-card-light .option-box i {
    color: #D97706 !important;
}

.wizard-card-light .option-box h4 {
    color: var(--primary-dark) !important;
    font-weight: 800 !important;
}

.wizard-card-light .option-box p {
    color: #475569 !important;
    font-weight: 600 !important;
}

.wizard-card-light .option-box:hover {
    border-color: var(--accent) !important;
    background: #FEF3C7 !important;
    transform: translateY(-2px);
}

.wizard-card-light .option-box.selected {
    border: 2px solid #F59E0B !important;
    background: #FEF3C7 !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25) !important;
}

.wizard-card-light .option-box.selected h4 {
    color: #78350F !important;
    font-weight: 800 !important;
}

.wizard-card-light .option-box.selected p {
    color: #92400E !important;
    font-weight: 600 !important;
}

.wizard-card-light .option-box.selected i {
    color: #B45309 !important;
}

.wizard-card-light .option-box.selected::after {
    color: #D97706 !important;
}

.wizard-card-light input,
.wizard-card-light textarea {
    background: #FFFFFF !important;
    border: 1px solid var(--border-color) !important;
    color: var(--primary-dark) !important;
    -webkit-text-fill-color: var(--primary-dark) !important;
}

.wizard-card-light input::placeholder,
.wizard-card-light textarea::placeholder,
.wizard-card-light input::-webkit-input-placeholder,
.wizard-card-light textarea::-webkit-input-placeholder,
.wizard-card-light input::-moz-placeholder,
.wizard-card-light textarea::-moz-placeholder,
.wizard-card-light input:-ms-input-placeholder,
.wizard-card-light textarea:-ms-input-placeholder {
    color: #64748B !important;
    -webkit-text-fill-color: #64748B !important;
    opacity: 0.85 !important;
}

.wizard-card-light .wizard-prev-btn {
    background: #FFFFFF !important;
    border: 1.5px solid var(--border-color) !important;
    color: var(--primary-dark) !important;
    font-weight: 700;
    transition: all 0.25s ease;
}

.wizard-card-light .wizard-prev-btn:hover {
    background: #F1F5F9 !important;
    border-color: var(--primary-dark) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(3, 30, 26, 0.1);
}

/* Modern Premium FAQ Accordion Component */
.accordion-item {
    background: #FFFFFF;
    border: 1px solid rgba(16, 185, 129, 0.14);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px -2px rgba(3, 30, 26, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #F59E0B 0%, #10B981 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.accordion-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 24px -4px rgba(3, 30, 26, 0.09);
}

.accordion-item.active {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 12px 32px -6px rgba(3, 30, 26, 0.12), 0 0 20px rgba(16, 185, 129, 0.06);
}

.accordion-item.active::before {
    opacity: 1;
}

.accordion-header {
    padding: 20px 24px;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.accordion-header span {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.accordion-header:hover {
    background: #F8FAFC;
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ECFDF5;
    color: #059669;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
    border: 1px solid #A7F3D0;
}

.accordion-item.active .faq-icon-badge {
    background: linear-gradient(135deg, #031E1A 0%, #059669 100%);
    color: #F59E0B;
    border-color: #F59E0B;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.28);
}

.accordion-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
    color: #047857;
}

.accordion-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-toggle-btn {
    background: #FFFBEB;
    color: #D97706;
    transform: rotate(180deg);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.2);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 24px;
    color: #334155;
    font-size: 0.96rem;
    line-height: 1.75;
    background: #FAFDFB;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 20px 24px 24px 84px;
    border-top: 1px dashed #E2E8F0;
}

@media (max-width: 640px) {
    .accordion-item.active .accordion-body {
        padding: 16px 20px 20px 20px;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 90px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* Pagination Bar Component */
.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition);
    text-decoration: none;
}

.page-link:hover {
    background: rgba(6, 55, 58, 0.08);
    color: var(--primary);
}

.page-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(6, 55, 58, 0.25);
}

.page-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-info {
    font-size: 0.86rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: 25px;
        padding-top: 20px;
    }

    .pagination {
        gap: 4px;
        padding: 6px 10px;
        width: 100%;
        max-width: 380px;
        justify-content: space-between;
    }

    .page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: 0.82rem;
    }
}

.testimonial-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 24px 24px;
    border: 1px solid rgba(3, 30, 26, 0.09);
    box-shadow: 0 10px 25px -5px rgba(3, 30, 26, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px 16px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -6px rgba(3, 30, 26, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
}

.testimonial-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.88rem;
    display: inline-flex;
    gap: 3px;
    background: rgba(245, 158, 11, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.testimonial-verified {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(10, 77, 64, 0.07);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(10, 77, 64, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.testimonial-verified i {
    color: var(--primary-mid);
}

/* Infinite Rolling Marquee Ticker - Passes Reviews Horizontally */
.marquee-reviews-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 25px 0 35px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: infiniteMarqueeRoll 36s linear infinite;
    will-change: transform;
}

.marquee-reviews-wrapper:hover .marquee-reviews-track,
.marquee-reviews-wrapper:active .marquee-reviews-track {
    animation-play-state: paused;
}

@keyframes infiniteMarqueeRoll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.marquee-reviews-wrapper .testimonial-card {
    width: 360px;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

.marquee-reviews-wrapper .testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 16px 36px -6px rgba(3, 30, 26, 0.15), 
                0 0 25px rgba(245, 158, 11, 0.15);
    z-index: 20;
}

.marquee-reviews-wrapper .testimonial-card:hover .user-avatar {
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .marquee-reviews-wrapper {
        padding: 15px 0 25px;
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }
    
    .marquee-reviews-track {
        gap: 16px;
        animation: infiniteMarqueeRoll 30s linear infinite;
    }
    
    .marquee-reviews-wrapper .testimonial-card {
        width: 290px;
        flex-shrink: 0;
        padding: 20px 16px 18px;
        border-radius: 14px;
    }

    .testimonial-card::before {
        height: 3px;
    }

    .testimonial-top-row {
        margin-bottom: 12px;
        gap: 8px;
    }

    .testimonial-stars {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .testimonial-verified {
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    .testimonial-text {
        font-size: 0.86rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .testimonial-user {
        padding-top: 12px;
        gap: 10px;
    }

    .user-avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .user-details h4 {
        font-size: 0.88rem;
    }

    .user-details p {
        font-size: 0.73rem;
    }
}

.testimonial-quote-icon {
    font-size: 1.5rem;
    color: rgba(245, 158, 11, 0.22);
    margin-bottom: 8px;
    display: block;
}

.testimonial-text {
    font-size: 0.94rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 22px;
    line-height: 1.68;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #F1F5F9;
}

.user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0A4D40 100%);
    color: var(--accent);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(3, 30, 26, 0.15);
    border: 2px solid rgba(245, 158, 11, 0.35);
    flex-shrink: 0;
}

.user-details h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.user-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-card {
    background: white;
    border-radius: var(--radius-md);
    max-width: 600px;
    width: 90%;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* Floating Action Widgets */
.floating-widgets {
    position: fixed;
    bottom: 25px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.12);
}

.float-whatsapp {
    background: var(--whatsapp);
}

.float-review {
    background: var(--primary);
}

.float-backtotop {
    background: var(--primary-mid);
    opacity: 0;
    visibility: hidden;
}

.float-backtotop.show {
    opacity: 1;
    visibility: visible;
}

/* Site Footer - Navbar Inspired Glassmorphism Aesthetic */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #031C18 0%, #021412 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 75px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, #10B981 50%, #F59E0B 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.95fr 1.15fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.footer-brand-subtitle {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #F59E0B;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

.footer-brand-desc {
    font-size: 0.91rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    max-width: 380px;
    text-align: left;
}

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

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: #F59E0B;
    color: #031E1A;
    border-color: #F59E0B;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.footer-social-btn.whatsapp-social:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.footer-social-btn.instagram-social:hover {
    background: #E1306C;
    color: white;
    border-color: #E1306C;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.35);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #F59E0B;
    border-radius: 2px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list li a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link-list li a:hover {
    color: #F59E0B;
    transform: translateX(6px);
}

.footer-link-list .link-arrow {
    font-size: 0.72rem;
    color: #10B981;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-link-list li a:hover .link-arrow {
    color: #F59E0B;
    transform: translateX(3px);
}

.footer-link-list .link-pin {
    font-size: 0.78rem;
    color: #F59E0B;
    transition: transform 0.3s ease;
}

.footer-link-list li a:hover .link-pin {
    transform: scale(1.2);
}

.footer-contact-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-item div {
    text-align: left;
    min-width: 0;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.contact-item-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 600;
}

.contact-item-val {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-item-val.highlight-gold {
    color: #F59E0B;
    font-weight: 800;
    font-size: 0.98rem;
}

.footer-bottom-bar {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.7);
}

.bottom-tagline.admin-link-badge {
    margin-left: 10px;
    font-weight: 700;
    color: #10B981;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bottom-tagline.admin-link-badge:hover {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.bottom-site-link a {
    color: #F59E0B;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-site-link a:hover {
    color: #10B981;
    text-decoration: underline;
}

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

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

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-brand-logo {
        margin: 0 auto;
    }

    .footer-brand-desc {
        text-align: center !important;
        max-width: 100% !important;
        font-size: 0.88rem !important;
        line-height: 1.65 !important;
        margin: 0 auto 20px !important;
    }

    .footer-social-row {
        justify-content: center !important;
    }

    .footer-col-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-link-list {
        align-items: center;
    }

    .footer-link-list li a {
        justify-content: center;
    }

    .footer-link-list li a:hover {
        transform: translateY(-2px);
    }

    .footer-contact-box {
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-contact-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        padding: 12px 14px !important;
    }

    .footer-contact-item div {
        text-align: left !important;
    }

    .contact-item-val {
        font-size: 0.83rem !important;
        word-break: break-all;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile Responsive Drawer & Queries */
@media (max-width: 992px) {
    .header-right-action .currency-selector {
        display: none !important;
    }
    .mobile-currency-item {
        display: block !important;
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .mobile-currency-item .currency-selector {
        display: flex;
        justify-content: space-between;
        width: 100%;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(245, 158, 11, 0.4);
        padding: 8px 16px;
        color: white;
    }
    .mobile-currency-item .currency-selector select {
        color: white;
        font-size: 0.92rem;
    }
    .top-announcement-bar {
        display: none;
    }
    .site-header {
        top: 0;
        height: 70px;
    }
    .header-right-action {
        gap: 8px;
    }
    .nav-toggle {
        display: flex !important;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        transform: translateX(100%);
        visibility: hidden;
        width: 295px;
        max-width: 85vw;
        height: calc(100vh - 70px);
        background: #042621 !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    .site-header.menu-active {
        background: #042621 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }
    .site-header.menu-active .logo-text {
        color: #FFFFFF !important;
    }
    .site-header.menu-active .logo-text span {
        color: var(--accent-light) !important;
    }
    .site-header.menu-active .nav-toggle {
        color: #FFFFFF !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1.05rem;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-search-wrapper {
        margin-top: 20px;
        width: 94%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 64px;
    }
    .nav-menu {
        top: 64px;
        height: calc(100vh - 64px);
    }
    .nav-container {
        padding: 0 16px;
    }
    .brand-logo-img {
        height: 38px;
    }
    .logo-text {
        font-size: 0.98rem;
    }
    .logo-text span {
        font-size: 0.52rem;
    }
    .header-plan-btn {
        padding: 7px 16px;
        font-size: 0.78rem;
        border-radius: 20px;
    }
    .hero-section {
        height: auto;
        min-height: 100dvh;
        padding-top: 85px;
        padding-bottom: 50px;
    }
    .hero-badge-pill {
        padding: 5px 14px;
        font-size: 0.73rem;
        margin-bottom: 12px;
        white-space: nowrap;
        max-width: 98%;
        gap: 6px;
        letter-spacing: -0.1px;
    }
    .hero-badge-pill i {
        font-size: 0.85rem;
    }
    /* Hero Stats Bar Mobile Reference Layout */
    .hero-bottom-stats-bar {
        background: #031C18;
        padding: 22px 0;
    }
    .stats-feature-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 16px 0;
        max-width: 380px;
        margin: 0 auto;
        padding: 0 12px;
    }
    .stat-feature-item {
        width: 48%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2px;
    }
    .stat-feature-item.stat-item-rating {
        width: 100%;
        margin-top: 4px;
    }
    .stat-divider {
        display: block !important;
        width: 1px;
        height: 38px;
        background: rgba(255, 255, 255, 0.16);
    }
    .desktop-only-divider {
        display: none !important;
    }
    .stat-text strong,
    .stat-text strong span.counter-val {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--accent);
        line-height: 1.1;
    }
    .stat-text > span {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.88);
        font-weight: 500;
        margin-top: 2px;
    }
    .hero-brand-badge-filigree {
        padding: 6px 12px;
        margin-bottom: 14px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .hero-center-logo {
        height: 62px;
    }
    .hero-brand-serif {
        font-size: 1.9rem;
        letter-spacing: 4px;
    }
    .hero-brand-sub-serif {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }
    .filigree-line {
        width: 40px;
    }
    .hero-title {
        font-size: 1.95rem;
        line-height: 1.2;
    }
    .hero-tagline {
        font-size: 0.95rem;
    }
    .hero-search-wrapper {
        margin-top: 20px;
        width: 92%;
        max-width: 420px;
    }
    .hero-simple-search {
        padding: 5px 5px 5px 16px;
        border-radius: 40px;
    }
    .simple-search-input {
        font-size: 0.88rem;
    }
    .simple-search-btn span {
        display: none;
    }
    .simple-search-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .floating-widgets {
        bottom: 16px;
        right: 14px;
        gap: 8px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-feature-grid {
        gap: 2px;
        padding: 0 2px;
    }
    .stat-feature-item {
        gap: 3px;
    }
    .stat-icon {
        font-size: 0.95rem;
    }
    .stats-feature-grid {
        max-width: 340px;
        gap: 14px 0;
    }
    .stat-text strong,
    .stat-text strong span.counter-val {
        font-size: 1.38rem;
    }
    .stat-text > span {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.88);
    }
    .hero-badge-pill {
        font-size: 0.67rem;
        padding: 4px 10px;
    }
    .logo-text {
        font-size: 0.9rem;
        line-height: 1.0;
    }
    .logo-text span {
        display: block !important;
        font-size: 0.5rem !important;
        letter-spacing: 1px !important;
        margin-top: 1px;
    }
    .brand-logo-img {
        height: 34px;
    }
    .header-logo-card {
        gap: 6px;
    }
    .header-plan-btn {
        padding: 6px 12px;
        font-size: 0.72rem;
    }
    .hero-title {
        font-size: 1.65rem;
    }
}

/* Photo Gallery Item Hover Effect */
.gallery-item-img {
    filter: brightness(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.gallery-item-img:hover {
    transform: scale(1.06);
    filter: brightness(1.18);
}

/* -------------------------------------------------------------
 * 10. Premium Scroll-Reveal Animations System
 * ------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

/* Base Reveal Trigger Elements */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.section-title,
.dest-card,
.package-card,
.feature-card,
.fleet-card,
.review-card,
.stat-card,
.accordion-item {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal Variations */
.reveal-up,
.section-title,
.dest-card,
.package-card,
.feature-card,
.fleet-card,
.review-card,
.stat-card,
.accordion-item {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.92) translateY(20px);
}

/* Revealed Active State */
.revealed,
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed,
.section-title.revealed,
.dest-card.revealed,
.package-card.revealed,
.feature-card.revealed,
.fleet-card.revealed,
.review-card.revealed,
.stat-card.revealed,
.accordion-item.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delay Utility Classes */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* -------------------------------------------------------------
 * 11. Mobile View UX Enhancements & Responsive Layout System
 * ------------------------------------------------------------- */

/* Body Scroll Lock for Mobile Menu */
body.no-scroll {
    overflow: hidden !important;
    touch-action: none;
}

/* Mobile Navigation Drawer Backdrop Overlay */
.nav-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 30, 26, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Grid Utility Classes */
.package-details-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.sticky-booking-card {
    position: sticky;
    top: 95px;
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 90;
}

@media (max-width: 992px) {
    .sticky-booking-card {
        position: static;
        top: auto;
    }
}

.included-excluded-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

/* Contact Cards System */
.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
}

.contact-card-text {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-card-text h4 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 3px;
}

.contact-card-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-link-val {
    font-weight: 800;
    font-size: 0.92rem;
    word-break: break-all;
    overflow-wrap: anywhere;
    display: inline-block;
    max-width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.packages-filter-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.quick-specs-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 26px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    max-width: 100%;
}

/* Tablet & Below Media Queries (max-width: 992px) */
@media (max-width: 992px) {
    .package-details-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

.page-banner {
    padding: 115px 0 55px;
    position: relative;
    box-shadow: inset 0 -30px 40px rgba(0, 0, 0, 0.25);
}

.page-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.85);
}

.page-banner-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

/* Mobile Media Queries (max-width: 768px) */
@media (max-width: 768px) {
    /* Global Section Mobile Padding Fix - Eliminates Huge Gaps */
    section, 
    .site-section, 
    .packages-section, 
    .wizard-section, 
    .testimonials-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .page-banner {
        padding: 76px 0 28px !important;
    }

    .page-banner-title {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85) !important;
    }

    .page-banner-desc {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85) !important;
    }

    /* Mobile Section Headings & Paragraph Alignment */
    .section-title,
    .section-title-left {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .section-title h2,
    .section-title-left h2,
    .section-title-left h4,
    .about-grid h2,
    .about-grid h4,
    .contact-grid h2,
    section h2 {
        text-align: center !important;
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
    }

    .section-title h4,
    .section-title-left h4 {
        text-align: center !important;
        font-size: 0.78rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 6px !important;
    }

    .section-title p {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }

    /* Mobile Body Paragraphs Natural Left Alignment (excluding section header titles and justified text) */
    .site-section p:not(.section-title p):not(.justify-text),
    .about-grid p:not(.justify-text),
    .contact-grid p:not(.justify-text),
    .package-details-layout p:not(.justify-text),
    .wizard-section p:not(.justify-text) {
        text-align: left !important;
    }

    .justify-text {
        text-align: justify !important;
        text-justify: inter-word;
    }

    /* Mobile Container Padding */
    .container {
        padding: 0 16px !important;
    }

    /* About Grid & Feature Image Sizing */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .about-grid img {
        height: 260px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: var(--radius-md) !important;
    }

    .about-story-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .about-story-grid > div {
        padding: 12px 14px !important;
        font-size: 0.82rem !important;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .contact-grid > div {
        padding: 20px 14px !important;
    }

    .contact-card {
        padding: 16px 12px !important;
        gap: 12px !important;
    }

    .contact-icon-box {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.15rem !important;
    }

    .contact-card-text h4 {
        font-size: 0.94rem !important;
    }

    .contact-card-text p {
        font-size: 0.8rem !important;
    }

    .contact-link-val {
        font-size: 0.82rem !important;
    }

    /* Mobile Gallery View Modes */
    .gallery-grid,
    .full-gallery-grid.view-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .full-gallery-grid.view-grid .gallery-card-item {
        height: 155px !important;
        border-radius: 12px !important;
    }

    .full-gallery-grid.view-masonry {
        column-count: 2 !important;
        column-gap: 12px !important;
    }

    .full-gallery-grid.view-large {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
    }

    .full-gallery-grid.view-large .gallery-card-item {
        height: 280px !important;
        width: 100% !important;
        border-radius: 14px !important;
    }

    /* Horizontal Scrollable Category Filter Tabs Bar */
    .filter-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 6px 16px 14px 16px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
        max-width: calc(100% + 32px);
        justify-content: flex-start !important;
        gap: 10px;
        margin-bottom: 20px;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none !important;
    }

    .tab-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 8px 16px;
        font-size: 0.84rem;
        user-select: none;
    }

    .filter-tabs.dragging {
        cursor: grabbing;
        scroll-behavior: auto;
    }

    /* Form Input Sizing for iOS Safari Zoom Prevention */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Universal Form Placeholder Refinement */
    input::placeholder,
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.86rem;
        font-weight: 400;
    }

    .wizard-card input::placeholder,
    .wizard-card textarea::placeholder {
        color: rgba(255, 255, 255, 0.45) !important;
        font-size: 0.86rem !important;
    }

    input:not([style*="color: white"])::placeholder,
    textarea:not([style*="color: white"])::placeholder {
        color: #94A3B8;
        font-size: 0.86rem;
    }

    /* Packages Header Bar */
    .packages-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .packages-filter-bar .filter-tabs {
        margin-bottom: 0;
    }

    /* Quick Specs Bar Mobile */
    .quick-specs-bar {
        gap: 12px 18px;
        padding: 14px 18px;
        font-size: 0.88rem;
        width: 100%;
    }

    /* Floating Action Buttons Mobile Optimization */
    .floating-widgets {
        bottom: 14px !important;
        right: 12px !important;
        gap: 8px !important;
        z-index: 9999 !important;
    }

    .float-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.05rem !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    }
}

/* Small Mobile Media Queries (max-width: 640px) */
@media (max-width: 640px) {
    .included-excluded-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Gallery View Switcher Buttons */
.view-btn {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--primary-dark);
    padding: 9px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: var(--shadow-sm);
}

.view-btn:hover {
    background: #F1F5F9;
    color: var(--primary);
}

.view-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(3, 30, 26, 0.25);
}

/* Gallery 4 Layout Modes System */

/* Mode 1: Grid View (Default) */
.full-gallery-grid.view-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.full-gallery-grid.view-grid .gallery-card-item {
    height: 220px;
}

/* Mode 2: Masonry View (Natural height aspect ratio) */
.full-gallery-grid.view-masonry {
    display: block;
    column-count: 4;
    column-gap: 20px;
}
.full-gallery-grid.view-masonry .gallery-card-item {
    height: auto !important;
    margin-bottom: 20px;
    break-inside: avoid;
}
.full-gallery-grid.view-masonry .gallery-card-item img {
    height: auto !important;
    object-fit: contain;
}

/* Mode 3: Large View (1 column spacious feed) */
.full-gallery-grid.view-large {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
    gap: 28px;
}
.full-gallery-grid.view-large .gallery-card-item {
    height: 440px;
}

/* Mode 4: List View (Horizontal card format) */
.full-gallery-grid.view-list {
    display: flex;
    flex-direction: column;
    max-width: 760px;
    margin: 0 auto;
    gap: 16px;
}
.full-gallery-grid.view-list .gallery-card-item {
    height: 120px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
}
.full-gallery-grid.view-list .gallery-card-item img {
    width: 160px;
    height: 100%;
    flex-shrink: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card-item {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(3, 30, 26, 0.08);
    position: relative;
    cursor: pointer;
    background: #031E1A;
}

.gallery-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay-badge {
    position: absolute;
    inset: 0;
    background: rgba(3, 30, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card-item:hover .gallery-overlay-badge {
    opacity: 1;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.fleet-card {
    background: #ffffff;
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    border: 1px solid var(--border-color, #E2E8F0);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 38, 38, 0.25);
}

.fleet-img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F1F5F9;
}

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

.fleet-card:hover .fleet-img-container img {
    transform: scale(1.06);
}

.fleet-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #15803d;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fleet-card-content {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-spec-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #F8FAFC;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    border: 1px solid #E2E8F0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
}

.fleet-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-spec-item i {
    color: #047857;
}

.fleet-price-badge {
    background: linear-gradient(135deg, var(--accent, #F59E0B) 0%, var(--accent-hover, #D97706) 100%);
    color: #0F172A;
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px var(--accent-glow, rgba(245, 158, 11, 0.35));
    border: 1px solid rgba(217, 119, 6, 0.25);
}

.fleet-price-amount {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #0F172A;
}

.fleet-price-amount .price-val {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    color: #0F172A;
}

.fleet-price-unit {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1E293B;
    opacity: 0.95;
    margin-top: 3px;
}

.fleet-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark, #0F172A);
    margin-bottom: 8px;
}

.fleet-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted, #64748B);
    line-height: 1.55;
    margin-bottom: 18px;
}

.reviews-header-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

/* Extra Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .package-card {
        width: 100%;
    }

    .package-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .package-footer .btn {
        width: 100%;
        text-align: center;
    }

    /* Floating Action Buttons Mobile Optimization */
    .floating-widgets {
        bottom: 12px;
        right: 10px;
        gap: 8px;
        z-index: 990;
    }

    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .gallery-card-item {
        height: 145px !important;
        border-radius: 12px !important;
    }

    .reviews-header-card {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-header-card .btn {
        width: 100%;
        text-align: center;
    }

    .wizard-section {
        padding: 45px 0 65px !important;
    }

    .wizard-card {
        padding: 22px 14px 24px !important;
        border-radius: 16px !important;
        margin: 0 4px !important;
    }

    .wizard-steps-indicator {
        margin-bottom: 24px !important;
        padding: 0 5px !important;
    }

    .step-dot {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.88rem !important;
    }

    .wizard-step-content h3 {
        font-size: 1.12rem !important;
        line-height: 1.35 !important;
        margin-bottom: 14px !important;
    }

    .option-box {
        padding: 16px 8px !important;
        border-radius: 12px !important;
    }

    .option-box i {
        font-size: 1.4rem !important;
        margin-bottom: 6px !important;
    }

    .option-box h4 {
        font-size: 0.88rem !important;
        line-height: 1.25 !important;
    }

    .option-box p {
        font-size: 0.72rem !important;
        margin-top: 3px !important;
    }

    .wizard-step-content .wizard-nav-actions,
    .wizard-step-content > div[style*="flex"],
    .wizard-step-content > div[style*="text-align: right"] {
        display: flex !important;
        justify-content: space-between !important;
        gap: 10px !important;
        margin-top: 22px !important;
        width: 100% !important;
    }

    .wizard-step-content .btn {
        flex: 1 !important;
        width: 100% !important;
        padding: 12px 14px !important;
        font-size: 0.88rem !important;
        justify-content: center !important;
        text-align: center !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .wizard-step-content #submitWizardBtn {
        font-size: 0.92rem !important;
        padding: 13px 16px !important;
    }
}

/* Mobile Only: Developer Credit Footer Link */
@media (max-width: 768px) {
    .bottom-site-link {
        text-align: center !important;
        margin-top: 6px !important;
    }
    .bottom-site-link a {
        display: block !important;
        margin-top: 4px !important;
        white-space: nowrap !important;
    }
}






