/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette (Emerald-Teal Theme) */
    --primary: hsl(172, 80%, 25%);
    --primary-light: hsl(172, 70%, 35%);
    --primary-dark: hsl(172, 90%, 18%);
    --primary-rgb: 15, 118, 110;
    
    --secondary: hsl(42, 85%, 55%);
    --secondary-hover: hsl(42, 95%, 48%);
    
    --neutral-dark: hsl(205, 50%, 12%);
    --neutral-light: hsl(210, 20%, 98%);
    --text-main: hsl(205, 30%, 18%);
    --text-muted: hsl(205, 15%, 50%);
    
    --white: #ffffff;
    --black: #000000;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Layout & Styling Presets */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, Cambria, "Times New Roman", serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 16px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 12px 20px -8px rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --header-height: 80px;
    
    /* Glassmorphism Styles */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-dark-bg: rgba(15, 32, 39, 0.7);
    --glass-dark-border: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--neutral-light);
    overflow-x: hidden;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

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

/* Utility Helpers */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.border-top { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 20px; margin-top: 20px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    gap: 8px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

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

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--neutral-dark);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

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

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

.btn-text {
    color: var(--primary);
    font-weight: 600;
    padding: 4px 8px;
}

.btn-text:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.text-danger { color: var(--danger) !important; }

/* Cards & Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.main-header.scrolled {
    background-color: var(--white);
    height: 70px;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 22px;
    font-family: var(--font-serif);
    color: var(--text-main);
}

.logo .highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

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

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

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

.badge {
    background-color: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--border-radius-full);
    margin-left: 4px;
    vertical-align: middle;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    background: none;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--neutral-dark);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomOutEffect 20s ease-out infinite alternate;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 32, 39, 0.4) 0%, rgba(15, 32, 39, 0.85) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--secondary);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero Search Widget */
.hero-search-widget {
    background: rgba(15, 32, 39, 0.65);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
}

.search-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-form label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-form input, .search-form select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-fast);
}

.search-form input:focus, .search-form select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
}

.search-form select option {
    background-color: var(--neutral-dark);
    color: var(--white);
}

.btn-search {
    padding: 14px 28px;
    font-size: 15px;
    height: 48px;
}

.wave-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 4;
}

.wave-transition svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-transition .shape-fill {
    fill: var(--neutral-light);
}

/* ==========================================================================
   HIGHLIGHTS SECTION (STATS)
   ========================================================================== */
.highlight-section {
    padding: 40px 0;
    position: relative;
    z-index: 5;
    margin-top: -50px;
}

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

.stat-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

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

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    vertical-align: super;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 8px;
}

/* ==========================================================================
   SECTION COMMON HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-subtitle.text-light {
    color: var(--secondary);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

.section-title.text-white {
    color: var(--white);
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    margin: 16px auto;
    border-radius: var(--border-radius-full);
}

.title-line.bg-white {
    background-color: var(--secondary);
}

.section-desc {
    color: var(--text-muted);
    font-size: 15px;
}

.section-desc.text-light-gray {
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   DESTINATIONS SECTION
   ========================================================================== */
.destinations-section {
    padding: 80px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.destination-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

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

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

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

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

.card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    z-index: 10;
}

.card-tag.highlight-tag {
    background-color: var(--secondary);
    color: var(--neutral-dark);
}

.card-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(15, 32, 39, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.card-price .price-val {
    color: var(--secondary);
    font-weight: 700;
    font-size: 15px;
}

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

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-rating {
    color: var(--text-main);
    font-weight: 600;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.card-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}

/* ==========================================================================
   PACKAGES SECTION (FILTER)
   ========================================================================== */
.packages-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.packages-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    background-color: var(--white);
    color: var(--text-muted);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

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

.package-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-item.hidden {
    display: none !important;
}

.package-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.pack-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(15, 118, 110, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
}

.pack-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.pack-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 1.4;
    min-height: 44px;
}

.pack-features {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pack-features li {
    font-size: 13px;
    color: var(--text-muted);
}

.pack-price-wrapper {
    margin-bottom: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}

.pack-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   SIMULATOR BOOKING ENGINE
   ========================================================================== */
.booking-section {
    padding: 80px 0;
    background-color: var(--neutral-dark);
    position: relative;
    overflow: hidden;
}

.booking-bg-elements {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius-full);
    background: radial-gradient(circle, rgba(15, 118, 110, 0.2) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.booking-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 40px;
}

.booking-form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
}

.simulator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }

.simulator-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.simulator-form label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.simulator-form select, .simulator-form input[type="text"], .simulator-form input[type="email"], .simulator-form input[type="date"], .simulator-form input[type="number"] {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-fast);
}

.simulator-form select:focus, .simulator-form input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary);
}

.simulator-form select option {
    background-color: var(--neutral-dark);
    color: var(--white);
}

/* Radio Tile Cards */
.radio-group-tile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tile-label {
    cursor: pointer;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    transition: var(--transition-fast);
}

.tile-label input[type="radio"] {
    display: none;
}

.tile-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tile-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
}

.tile-desc {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
}

.tile-markup {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 4px;
}

.tile-label:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
}

.tile-label.active {
    background: rgba(15, 118, 110, 0.2);
    border-color: var(--primary-light);
    box-shadow: 0 0 10px rgba(15, 118, 110, 0.3);
}

/* Checkboxes */
.checkbox-group-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 13px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 18px;
    width: 18px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255,255,255,0.15);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary-light);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container .checkmark::after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

/* Booking Price Summary */
.summary-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 30px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.summary-title {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 20px;
}

.divider {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.summary-row .label {
    color: rgba(255,255,255,0.65);
}

.summary-row .value {
    font-weight: 600;
}

.summary-row-divider {
    height: 1px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    margin: 6px 0;
}

.font-sm { font-size: 12px !important; }
.text-gray { color: rgba(255,255,255,0.5) !important; }

.total-row {
    margin-top: 10px;
    align-items: center;
}

.total-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.total-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.summary-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   DASHBOARD SECTION (localStorage TICKETS)
   ========================================================================== */
.dashboard-section {
    padding: 80px 0;
}

.dashboard-container {
    max-width: 900px;
    margin: 0 auto;
}

.no-bookings-view {
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.no-bookings-icon {
    font-size: 64px;
    animation: bounce 2s infinite;
}

.no-bookings-view h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
}

.no-bookings-view p {
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 12px;
}

/* Stats strip */
.dashboard-stats-strip {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 16px 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    justify-content: space-between;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.mini-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* E-TICKET GRAPHIC CUSTOM LAYOUT */
.tickets-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ticket-wrapper {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    border-left: 6px solid var(--primary);
    transition: var(--transition-normal);
}

.ticket-wrapper.cancelled {
    border-left-color: var(--danger);
    opacity: 0.85;
}

.ticket-wrapper.cancelled::after {
    content: 'BATAL';
    position: absolute;
    top: 40px;
    left: 40%;
    transform: rotate(-15deg);
    border: 3px solid var(--danger);
    color: var(--danger);
    font-size: 32px;
    font-weight: 900;
    padding: 4px 16px;
    border-radius: 8px;
    opacity: 0.3;
    pointer-events: none;
}

/* Ticket Main Body */
.ticket-main {
    padding: 30px;
    position: relative;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 12px;
}

.ticket-brand {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary);
}

.ticket-id {
    font-size: 12px;
    font-family: monospace;
    color: var(--text-muted);
    background-color: var(--neutral-light);
    padding: 4px 8px;
    border-radius: 4px;
}

.ticket-body-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ticket-info {
    display: flex;
    flex-direction: column;
}

.ticket-info.col-span-2 {
    grid-column: span 2;
}

.ticket-lbl {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ticket-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.ticket-val.price {
    color: var(--primary);
}

.ticket-extras-list {
    font-size: 11px;
    color: var(--text-muted);
    list-style: square;
    padding-left: 14px;
}

/* Perforation Tear divider */
.ticket-tear {
    position: relative;
    border-right: 1px dashed rgba(0, 0, 0, 0.12);
    background-color: var(--white);
}

.ticket-tear::before, .ticket-tear::after {
    content: '';
    position: absolute;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: var(--border-radius-full);
    background-color: var(--neutral-light);
    z-index: 5;
}

.ticket-tear::before {
    top: -10px;
}

.ticket-tear::after {
    bottom: -10px;
}

/* Ticket Stub side (Barcode / Print) */
.ticket-stub {
    background-color: #fafbfc;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px dashed rgba(0, 0, 0, 0.08);
}

.stub-qr-placeholder {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}

.stub-qr-placeholder svg {
    width: 100%;
    height: 100%;
}

.stub-status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
}

.status-active {
    background-color: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.status-cancelled {
    background-color: rgba(239, 68, 68, 0.12);
    color: var(--danger);
}

.stub-actions {
    width: 100%;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--neutral-dark);
    position: relative;
}

.testimonials-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(15, 118, 110, 0.4);
}

.author-avatar.avatar-blue { background-color: #3b82f6; }
.author-avatar.avatar-purple { background-color: #a855f7; }

.author-info {
    text-align: left;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.author-title {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--secondary);
    width: 24px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info-card {
    padding: 40px;
    height: 100%;
}

.info-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text-main);
}

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

.info-icon {
    font-size: 24px;
    background-color: rgba(15, 118, 110, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Form Styles */
.contact-card {
    padding: 40px;
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--text-main);
}

#contactUsForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#contactUsForm .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#contactUsForm label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

#contactUsForm input, #contactUsForm select, #contactUsForm textarea {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition-fast);
}

#contactUsForm input:focus, #contactUsForm select:focus, #contactUsForm textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

/* ==========================================================================
   MODAL POPUP
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 32, 39, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 20px;
}

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

.modal-dialog {
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--border-radius-md);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

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

.modal-content {
    background: var(--white);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: none;
    border-radius: var(--border-radius-md);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    line-height: 1;
    color: var(--white);
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.modal-banner {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.modal-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 32, 39, 0.95) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.modal-banner-content {
    position: relative;
    z-index: 5;
    color: var(--white);
}

.modal-tag {
    background-color: var(--secondary);
    color: var(--neutral-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-top: 8px;
}

.modal-body {
    padding: 30px;
}

.modal-meta-bar {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}

.modal-rating { color: var(--warning); }
.modal-price-tag {
    color: var(--primary);
    margin-left: auto;
    font-size: 15px;
    font-weight: 700;
}

.modal-desc-wrapper h3, .modal-itinerary-wrapper h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.modal-desc-wrapper p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.itinerary-list li {
    font-size: 13.5px;
    color: var(--text-muted);
    position: relative;
    padding-left: 24px;
}

.itinerary-list li::before {
    content: '📌';
    position: absolute;
    left: 0;
    top: 2px;
}

.modal-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: var(--neutral-light);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
}

.include-box h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-main);
}

.include-box ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.include-box li {
    font-size: 11px;
    color: var(--text-muted);
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--neutral-dark);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    border-left: 4px solid var(--primary-light);
    transform: translateY(20px);
    opacity: 0;
    animation: toastIn 0.3s forwards;
}

.toast.toast-success {
    border-left-color: var(--success);
}

.toast.toast-error {
    border-left-color: var(--danger);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--neutral-dark);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand-pitch {
    font-size: 13.5px;
    line-height: 1.7;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.newsletter-desc {
    font-size: 13.5px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    padding: 10px 16px;
    font-size: 13.5px;
    color: var(--white);
}

.btn-newsletter {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: 10px 20px;
    font-size: 13.5px;
}

.footer-bottom {
    padding: 30px 0;
    font-size: 13px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes zoomOutEffect {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 40px; }
    .destinations-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .summary-card { position: static; margin-top: 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 30px;
        transition: var(--transition-normal);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 15px; }
    .hero-buttons { flex-direction: column; }
    .search-form { grid-template-columns: 1fr; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    .ticket-wrapper { grid-template-columns: 1fr; }
    .ticket-tear { display: none; }
    .ticket-stub { border-left: none; border-top: 1px dashed rgba(0,0,0,0.08); padding-top: 20px; }
    .ticket-body-grid { grid-template-columns: 1fr 1fr; }
    
    .radio-group-tile { grid-template-columns: 1fr; }
    .modal-includes-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .ticket-body-grid { grid-template-columns: 1fr; }
    .hero-search-widget { padding: 20px; }
    .booking-card { padding: 20px; }
    .contact-info-card { padding: 20px; }
    .contact-card { padding: 20px; }
    .modal-body { padding: 20px; }
}
