/* Hide reCAPTCHA badge */
.grecaptcha-badge { visibility: hidden !important; }

/* CSS Custom Properties (Light theme defaults) */
:root {
    --bg-primary: #f5efe6;
    --bg-secondary: #ede5d8;
    --bg-card: #fdf8f0;
    --bg-input: #fdf8f0;
    --text-primary: #333;
    --text-secondary: #666;
    --text-heading: #203a43;
    --border-color: #ddd5c8;
    --shadow-sm: rgba(0, 0, 0, 0.06);
    --shadow-md: rgba(0, 0, 0, 0.1);
    --hero-fade: #f5efe6;
    --features-bg: linear-gradient(135deg, #ede5d8 0%, #e5ddd2 100%);
    --visa-info-bg: #ece6dc;
    --primary: #FF6B35;
    --primary-dark: #e55a2b;
    --radius: 8px;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --footer-bg: #0f2027;
}

body.dark {
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-card: #1f2b47;
    --bg-input: #233354;
    --text-primary: #e0e0e0;
    --text-secondary: #aaa;
    --text-heading: #f0f0f0;
    --border-color: #2a3a5c;
    --shadow-sm: rgba(0, 0, 0, 0.2);
    --shadow-md: rgba(0, 0, 0, 0.3);
    --hero-fade: #1a1a2e;
    --features-bg: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    --visa-info-bg: #1f2b47;
    --footer-bg: #0d1117;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
    transition: background 0.3s, color 0.3s;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Allow text selection in inputs, textareas, and content that users may want to copy */
input, textarea, select,
.admin-table td, .admin-table th,
p, .contact-info a {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
    cursor: auto;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.4s, visibility 0.4s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid #e0e0e0;
    border-top-color: #f18f01;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

a {
    text-decoration: none;
    color: inherit;
}


ul {
    list-style: none;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo-img {
    max-height: 40px;
    width: auto;
    vertical-align: middle;
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ddd;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f18f01;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-arrow {
    font-size: 0.65em;
    margin-left: 2px;
    opacity: 0.7;
}
.submenu-toggle {
    display: none;
}
.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 32, 39, 0.97);
    border-radius: 10px;
    padding: 0.5rem 0;
    padding-top: 1rem;
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 1100;
    list-style: none;
    margin-top: 0;
}
.nav-submenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}
.nav-dropdown:hover .nav-submenu {
    display: block;
}
.nav-submenu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #ccc !important;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.nav-submenu li a:hover,
.nav-submenu li a.active {
    background: rgba(241, 143, 1, 0.15);
    color: #f18f01 !important;
}

.logo a {
    color: inherit;
}

/* Nav Controls */
.nav-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Language & Currency Switcher */
.lang-switcher,
.currency-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-arrow {
    font-size: 0.7rem;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 100;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 0.6rem 1rem;
    color: #333;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f8f9fa;
}

.lang-option.selected {
    background: #fff8ef;
    color: #f18f01;
    font-weight: 600;
}

/* Hero Section */
main {
    padding-top: 70px;
}

/* Hero sections extend behind the fixed header */
.hero,
.tour-hero,
.dest-hero,
.post-hero,
.booking-section {
    margin-top: -70px;
    padding-top: 70px;
}

.hero {
    height: 100vh;
    margin-top: -70px;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0f2027;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.7), rgba(44, 83, 100, 0.5), rgba(15, 32, 39, 0.7)),
                url('../img/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 0 2rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--hero-fade));
    pointer-events: none;
}

/* Hero Floating Decorations */
.hero-floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-float {
    position: absolute;
    opacity: 0.15;
    filter: blur(1px);
}

.hero-cloud {
    font-size: 4rem;
    color: #fff;
}

.hero-cloud-1 {
    top: 15%;
    left: -5%;
    font-size: 5rem;
    animation: floatCloudRight 25s linear infinite;
}

.hero-cloud-2 {
    top: 30%;
    left: -10%;
    font-size: 3.5rem;
    opacity: 0.1;
    animation: floatCloudRight 35s linear infinite;
    animation-delay: -10s;
}

.hero-cloud-3 {
    top: 55%;
    left: -8%;
    font-size: 4.5rem;
    opacity: 0.08;
    animation: floatCloudRight 30s linear infinite;
    animation-delay: -20s;
}

.hero-plane {
    color: #fff;
    opacity: 0.2;
    filter: none;
}

.hero-plane-1 {
    font-size: 1.8rem;
    top: 20%;
    left: -5%;
    animation: flyAcross 18s linear infinite;
}

.hero-plane-2 {
    font-size: 1.2rem;
    top: 60%;
    left: -5%;
    opacity: 0.12;
    animation: flyAcross 24s linear infinite;
    animation-delay: -8s;
}

.hero-globe {
    font-size: 2.5rem;
    bottom: 20%;
    right: 8%;
    opacity: 0.08;
    filter: none;
    animation: spinGlobe 20s linear infinite, bobFloat 6s ease-in-out infinite;
}

@keyframes floatCloudRight {
    from { transform: translateX(0); }
    to { transform: translateX(120vw); }
}

@keyframes flyAcross {
    from { transform: translateX(0) translateY(0) rotate(-8deg); }
    50% { transform: translateX(55vw) translateY(-30px) rotate(-5deg); }
    to { transform: translateX(110vw) translateY(10px) rotate(-10deg); }
}

@keyframes spinGlobe {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bobFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -15px; }
}

/* Hero Typing Effect */
.hero-typed {
    display: inline-block;
    border-right: 3px solid rgba(255, 255, 255, 0.8);
    animation: blinkCursor 0.7s step-end infinite;
    overflow: hidden;
    white-space: nowrap;
    min-height: 1.2em;
}

.hero-typed.typing-done {
    border-right-color: transparent;
    animation: none;
    white-space: normal;
}

@keyframes blinkCursor {
    0%, 100% { border-right-color: rgba(255, 255, 255, 0.8); }
    50% { border-right-color: transparent; }
}

/* Hero Subtitle Fade In */
.hero-subtitle-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-subtitle-fade.visible {
    opacity: 0.9;
    transform: translateY(0);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Trip Toggle */
.trip-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.trip-btn {
    padding: 0.75rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.trip-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.trip-btn.active {
    background: #f18f01;
    border-color: #f18f01;
    color: #fff;
}

/* Hero Search Bar */
.hero-search {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 1rem 1.2rem;
    border-radius: 60px;
    margin-top: 0.5rem;
}

.persons-row {
    display: contents;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.search-field label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 0.8rem;
}

.search-field input {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    color: #333;
    outline: none;
    width: 160px;
    font-family: inherit;
}

.search-field input::placeholder {
    color: #999;
}

.search-field select {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    color: #333;
    outline: none;
    width: 90px;
    font-family: inherit;
    cursor: pointer;
}

.package-field select,
.flight-field select {
    width: 160px;
}

/* City Autocomplete */
.city-autocomplete {
    position: relative;
}

.city-input {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    color: #333;
    outline: none;
    width: 160px;
    font-family: inherit;
}

.city-input::placeholder {
    color: #999;
}

.city-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-height: 260px;
    overflow-y: auto;
    z-index: 200;
    display: none;
}

.city-dropdown.open {
    display: block;
}

.city-dropdown .city-group-label {
    padding: 0.5rem 1rem 0.2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
}

.city-dropdown .city-option {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: background 0.15s;
}

.city-dropdown .city-option:hover,
.city-dropdown .city-option.highlighted {
    background: #fff3e0;
    color: #f18f01;
}

.city-dropdown .city-option .city-country {
    font-size: 0.75rem;
    color: #999;
    margin-left: 0.3rem;
}

body.dark .city-dropdown {
    background: #1f2b47;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

body.dark .city-dropdown .city-option {
    color: #e0e0e0;
}

body.dark .city-dropdown .city-option:hover,
body.dark .city-dropdown .city-option.highlighted {
    background: #2a3a5c;
}

body.dark .city-dropdown .city-group-label {
    color: #777;
}

/* Search Price Display */
.search-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.3rem 0.8rem;
    color: #fff;
}

.search-price-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.search-price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f18f01;
    line-height: 1;
}

.search-price-pp {
    font-size: 0.65rem;
    opacity: 0.7;
}

.search-btn {
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .search-field input {
        width: 100%;
    }

    .search-btn {
        align-self: stretch;
    }
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #f18f01;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

/* Destinations Section */
.destinations {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.destinations h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.destinations h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f18f01;
    margin: 0.8rem auto 2.5rem;
    border-radius: 2px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--bg-card);
    transform-style: preserve-3d;
    will-change: transform;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.card .card-image {
    transition: transform 0.4s ease, filter 0.3s;
}

.card .card-body {
    transition: transform 0.4s ease;
}

.card:hover .card-body {
    transform: translateZ(30px);
}

.card .card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
}

.card:hover .card-shine {
    opacity: 1;
}

.card-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.card:hover .card-image {
    filter: brightness(1.1) saturate(1.2);
    transform: scale(1.1);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 143, 1, 0.15) 0%, rgba(12, 124, 213, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card:hover .card-image::before {
    opacity: 1;
}

.card-emoji {
    font-size: 4rem;
}

.card-body {
    padding: 1.5rem;
    text-align: left;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
    transition: color 0.3s;
}

.card:hover .card-body h3 {
    color: #0c7cd5;
}

.card-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f18f01;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #fff8ef;
    border-radius: 6px;
    transition: transform 0.3s, background 0.3s;
}
.card:hover .price {
    transform: scale(1.08);
    background: #fff0d9;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.section-cta {
    margin-top: 2.5rem;
}

.btn-outline-dark {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #203a43;
    border: 2px solid #203a43;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: #203a43;
    color: #fff;
    transform: translateY(-2px);
}

/* About / Features Section */
.about {
    padding: 5rem 2rem;
    background: var(--features-bg);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f18f01;
    margin: 0.8rem auto 2.5rem;
    border-radius: 2px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px var(--shadow-md);
    border-top-color: #f18f01;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, #fff8ef, #ffecd2);
    border-radius: 50%;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-heading);
}

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

.contact-info-panel .info-block {
    margin-bottom: 1.8rem;
}
.contact-info-panel .info-block h3 {
    font-size: 1.15rem;
    color: #203a43;
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #f18f01;
    display: inline-block;
}
.contact-info-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-panel ul li {
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #444;
    line-height: 1.4;
}
.contact-info-panel ul li i {
    color: #f18f01;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.contact-info-panel ul li a {
    color: #2c5364;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info-panel ul li a:hover {
    color: #f18f01;
}

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

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    background: var(--bg-input);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2c5364;
}

.contact-form .btn {
    align-self: flex-start;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Social Float */
.social-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.social-facebook {
    background: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-telegram {
    background: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.social-whatsapp {
    background: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: #203a43;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #f18f01;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    h1 { font-size: 1.75rem !important; }
    h2 { font-size: 1.4rem !important; }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(15, 32, 39, 0.98);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0 !important;
        transition: right 0.3s;
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-dropdown {
        position: relative;
    }
    .nav-dropdown > a {
        display: inline-block !important;
    }
    .submenu-toggle {
        display: inline-block;
        background: none;
        border: none;
        color: #fff;
        font-size: 1rem;
        padding: 0.8rem 0.8rem;
        cursor: pointer;
        opacity: 0.7;
        vertical-align: middle;
    }
    .submenu-toggle.open {
        transform: rotate(180deg);
    }
    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown:focus-within .nav-submenu {
        display: none;
    }
    .nav-submenu {
        display: none;
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        margin-top: 0;
    }
    .nav-submenu::before {
        display: none;
    }
    .nav-submenu.open {
        display: block !important;
    }
    .nav-submenu li a {
        padding: 0.5rem 0 0.5rem 1.2rem !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        color: rgba(255,255,255,0.7) !important;
    }
    .nav-submenu li a:hover,
    .nav-submenu li a.active {
        color: #f18f01 !important;
        background: transparent;
    }

    .nav-controls {
        display: none;
    }

    .nav-links.open ~ .nav-controls {
        display: flex;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 260px;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        background: rgba(15, 32, 39, 0.98);
        z-index: 1001;
    }

    .social-float {
        bottom: 80px;
        right: 16px;
    }

    .social-float-btn {
        width: 42px;
        height: 42px;
    }

    .back-to-top {
        right: 16px;
        width: 42px;
        height: 42px;
    }
}

/* Footer */
footer {
    background: var(--footer-bg);
    color: #aaa;
    padding: 0;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: left;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f18f01;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}
.footer-list li i {
    color: #f18f01;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.footer-list li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-list li a:hover {
    color: #f18f01;
}
.footer-social {
    text-align: center;
    padding: 1.5rem 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-social h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.social-links a[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: #fff;
}

.social-links a[aria-label="Telegram"]:hover {
    background: #0088cc;
    color: #fff;
}

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

/* Active nav link */
.nav-links a.active {
    color: #f18f01;
}

/* Destination Detail Page */
.destination-detail {
    padding-top: 80px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.detail-hero {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 20px 20px;
    background-size: cover;
    background-position: center;
}

.detail-emoji {
    font-size: 6rem;
}

.detail-content {
    padding: 2rem;
    text-align: center;
}

.detail-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #203a43;
}

.detail-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.detail-price {
    margin-bottom: 2rem;
}

.detail-price .price {
    font-size: 1.8rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #f18f01;
    color: #f18f01;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: #f18f01;
    color: #fff;
}

/* Login Section */
.login-section {
    padding: 8rem 2rem 5rem;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.login-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #203a43;
}

/* About Text Section */
.about-text {
    padding: 4rem 2rem;
    text-align: center;
}

.about-container {
    max-width: 700px;
    margin: 0 auto;
}

.about-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #203a43;
}

.about-container p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Admin Section */
.admin-section {
    padding: 6rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.admin-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #203a43;
    text-align: center;
}

.admin-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.tab {
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab:hover,
.tab.active {
    color: #f18f01;
    border-bottom-color: #f18f01;
}

.admin-panel {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.admin-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #203a43;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-form input,
.admin-form textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.admin-form input:focus,
.admin-form textarea:focus {
    border-color: #2c5364;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table th,
.admin-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #203a43;
}

.btn-danger {
    background: #dc3545;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

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

/* Bookings */
.bookings-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    flex: 1;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: #fff;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.booking-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* Performance */
.perf-score-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.perf-score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perf-score-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.perf-score-label {
    font-size: 0.8rem;
    color: #888;
}

.perf-score-text h4 {
    margin: 0 0 0.3rem;
    font-size: 1.3rem;
    color: #203a43;
}

.perf-score-text p {
    margin: 0;
    color: #666;
}

.perf-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.perf-section h4 {
    margin: 0 0 1rem;
    color: #203a43;
    font-size: 1.1rem;
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.perf-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.perf-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.perf-value {
    display: block;
    font-weight: 600;
    color: #203a43;
}

.perf-checks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perf-check {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.perf-check-icon {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.perf-check-pass {
    background: #d4edda;
    color: #155724;
}

.perf-check-warn {
    background: #fff3cd;
    color: #856404;
}

.perf-check-fail {
    background: #f8d7da;
    color: #721c24;
}

/* Settings */
.setting-row {
    margin-bottom: 1.2rem;
}

.setting-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #203a43;
}

.setting-row label small {
    display: block;
    font-weight: 400;
    color: #888;
    font-size: 0.85rem;
}

.setting-row input {
    width: 100%;
}

/* Search Results Page */
.search-results {
    padding-top: 70px;
}

.search-hero-banner {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 3rem 2rem 2.5rem;
}

.search-hero-overlay {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.search-hero-overlay h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.search-info {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.search-tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.85rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tag-icon {
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.search-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.results-count {
    color: #203a43;
    font-size: 1rem;
    font-weight: 600;
}

.results-sort {
    font-size: 0.85rem;
    color: #888;
}

.flight-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.flight-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative;
    border: 1px solid #f0f0f0;
}

.flight-card:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.flight-card-best {
    border: 2px solid #f18f01;
}

.flight-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: #f18f01;
    color: #fff;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-card-top {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.8rem;
    gap: 1rem;
}

.flight-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background: #fafbfc;
    border-top: 1px solid #f0f0f0;
}

.flight-dates {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #666;
}

.flight-dates strong {
    color: #203a43;
}

.flight-airline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 80px;
}

.airline-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
}

.airline-placeholder {
    font-size: 2rem;
    color: #ccc;
}

.airline-code {
    font-size: 0.8rem;
    font-weight: 700;
    color: #203a43;
    background: #f0f0f0;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
}

.flight-num {
    font-size: 0.7rem;
    color: #aaa;
}

.flight-route {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 0 1rem;
}

.flight-city {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.flight-city strong {
    font-size: 1.6rem;
    color: #203a43;
    letter-spacing: 1px;
}

.city-name {
    font-size: 0.8rem;
    color: #999;
}

.flight-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 140px;
}

.flight-duration {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.2rem;
}

.arrow-bottom-info {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    align-items: center;
}

.arrow-stop-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f18f01;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #f18f01;
}

.transfers.has-stops {
    background: #fff3e0;
    color: #e65100;
    font-weight: 600;
}

.trip-duration-days {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.transfers {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    background: #f5f5f5;
}

.transfers.direct {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
}

.arrow-visual {
    display: flex;
    align-items: center;
    gap: 0;
}

.arrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.arrow-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ccc, #f18f01);
}

.arrow-plane {
    font-size: 1.2rem;
    color: #f18f01;
    margin: 0 0.2rem;
}

.trip-label {
    font-size: 0.65rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    min-width: 130px;
}

.flight-price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f18f01;
    line-height: 1;
}

.flight-price-pp {
    font-size: 0.75rem;
    color: #bbb;
}

.flight-price-total {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    background: #f8f8f8;
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    margin-top: 0.2rem;
}

.btn-book {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    background: #f18f01;
}

.btn-book:hover {
    background: #d67d00;
}

@media (max-width: 768px) {
    .search-hero-overlay h2 {
        font-size: 1.4rem;
    }

    .flight-card-top {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        padding: 1.2rem;
    }

    .flight-card-bottom {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
        text-align: center;
    }

    .flight-dates {
        flex-direction: column;
        gap: 0.3rem;
    }

    .flight-route {
        padding: 0;
    }

    .flight-city strong {
        font-size: 1.3rem;
    }

    .flight-arrow {
        min-width: 100px;
    }

    .arrow-line {
        width: 25px;
    }

    .flight-airline {
        flex-direction: row;
        gap: 0.5rem;
    }

    .flight-price {
        align-items: center;
    }

    .results-bar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Search Section Headings */
.search-section {
    margin-bottom: 2.5rem;
}

.section-heading {
    font-size: 1.4rem;
    color: #203a43;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid #0c7cd5;
    display: inline-block;
}

.alert.info {
    background: #e8f4fd;
    color: #1a6fa8;
    border: 1px solid #b8ddf0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Hotel Cards */
.hotel-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hotel-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hotel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.hotel-card-best {
    border: 2px solid #0c7cd5;
}

.hotel-badge {
    background: linear-gradient(135deg, #0c7cd5, #2196f3);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    display: inline-block;
}

.hotel-card-inner {
    display: flex;
    gap: 0;
}

.hotel-image {
    width: 312px;
    min-height: 260px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f0f0f0;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #e8f4fd, #d0e8f5);
    color: #0c7cd5;
}

.hotel-info {
    flex: 1;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-name {
    font-size: 1.1rem;
    color: #203a43;
    margin-bottom: 0.3rem;
}

.hotel-stars {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.star-label {
    color: #888;
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.hotel-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.hotel-detail {
    font-size: 0.82rem;
    color: #555;
    background: #f5f7fa;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.hotel-price-section {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid #f0f0f0;
}

.hotel-price {
    display: flex;
    flex-direction: column;
}

.hotel-price-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0c7cd5;
}

.hotel-price-detail {
    font-size: 0.78rem;
    color: #888;
}

.hotel-price-pernight {
    font-size: 0.82rem;
    color: #555;
    font-weight: 600;
}

/* Hotel responsive */
@media (max-width: 768px) {
    .hotel-card-inner {
        flex-direction: column;
    }

    .hotel-image {
        width: 100%;
        min-height: 180px;
        max-height: 200px;
    }

    .hotel-price-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-price-section .btn {
        width: 100%;
        text-align: center;
    }
}

/* Children Ages */
.children-ages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.children-ages label {
    font-size: 0.85rem;
    white-space: nowrap;
}
.children-ages-inputs {
    display: flex;
    gap: 0.4rem;
}
.children-ages-inputs select {
    width: 55px;
    padding: 0.4rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.85rem;
}

/* Hotel Promotions & Cancellation on search */
.hotel-promotions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}
.hotel-promo-tag {
    font-size: 0.78rem;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}
body.dark .hotel-promo-tag {
    background: rgba(46, 125, 50, 0.15);
    color: #81c784;
}
.hotel-cancellation-info {
    margin-top: 0.4rem;
}
.cancel-policy {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 500;
}

/* Voucher extra styles */
.voucher-ref-agency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
}
.voucher-room-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
.voucher-room-item:last-child {
    border-bottom: none;
}
.voucher-rate-comments {
    background: #fff8ef;
    padding: 0.8rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    border-left: 3px solid #f18f01;
}
body.dark .voucher-rate-comments {
    background: rgba(241, 143, 1, 0.1);
}
.voucher-cancel-policy {
    background: #f0f7ff;
    padding: 0.8rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    font-size: 0.85rem;
}
body.dark .voucher-cancel-policy {
    background: rgba(12, 124, 213, 0.1);
}
.voucher-payment {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 10px;
    margin-top: 1rem;
}
body.dark .voucher-payment {
    background: rgba(255,255,255,0.05);
}
.voucher-payment p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Booking Page */
.booking-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}
.booking-error-page {
    text-align: center;
    padding: 4rem 2rem;
}
.booking-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.booking-error-page h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}
.booking-error-page p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}
.booking-flow {
    padding-top: 1rem;
}
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.booking-step {
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 2px solid #e0e0e0;
}
.booking-step.active {
    background: #0c7cd5;
    color: #fff;
    border-color: #0c7cd5;
}
.booking-step.done {
    background: #27ae60;
    color: #fff;
    border-color: #27ae60;
}
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.booking-summary {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-sm);
    position: sticky;
    top: 100px;
}
.booking-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}
.booking-hotel-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.booking-hotel-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.booking-detail h4 {
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 0.3rem;
}
.booking-category {
    color: #f18f01;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.booking-dest {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.booking-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.booking-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.booking-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.booking-value {
    font-weight: 600;
    color: var(--text-heading);
}
.booking-cancellation {
    background: #fff8ef;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #f18f01;
}
.booking-cancellation h5 {
    margin-bottom: 0.5rem;
    color: #333;
}
.booking-cancellation p {
    font-size: 0.85rem;
    color: #666;
}
body.dark .booking-cancellation {
    background: rgba(241, 143, 1, 0.1);
}
.booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #eee;
    font-size: 1.1rem;
    font-weight: 700;
}
.booking-total-price {
    font-size: 1.5rem;
    color: #0c7cd5;
}
.booking-form-panel {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-sm);
}
.booking-form-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.booking-form .form-group {
    margin-bottom: 1.2rem;
}
.booking-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
}
.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--bg-primary);
    color: var(--text-heading);
    box-sizing: border-box;
}
.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #0c7cd5;
}
.btn-book-confirm {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
}
.btn-book-confirm:hover {
    background: #219a52;
    transform: translateY(-2px);
}
.booking-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Voucher */
.voucher {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 30px var(--shadow-sm);
}
.voucher-header {
    text-align: center;
    margin-bottom: 2rem;
}
.voucher-icon {
    width: 70px;
    height: 70px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}
.voucher-header h2 {
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}
.voucher-subtitle {
    color: var(--text-secondary);
}
.voucher-ref {
    text-align: center;
    background: #f0f7ff;
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}
body.dark .voucher-ref {
    background: rgba(12, 124, 213, 0.1);
}
.voucher-ref-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}
.voucher-ref-code {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c7cd5;
    letter-spacing: 2px;
}
.voucher-details {
    margin-bottom: 2rem;
}
.voucher-section {
    margin-bottom: 1.5rem;
}
.voucher-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}
.voucher-hotel-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
}
.voucher-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.voucher-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.voucher-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.voucher-value {
    font-weight: 600;
    color: var(--text-heading);
}
.voucher-total {
    font-size: 1.3rem;
    color: #0c7cd5;
}
.voucher-status-confirmed {
    color: #27ae60;
}
.voucher-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .booking-summary {
        position: static;
    }
    .booking-steps {
        flex-direction: column;
        align-items: center;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    .voucher {
        padding: 2rem 1.5rem;
    }
    .voucher-grid {
        grid-template-columns: 1fr;
    }
    .voucher-actions {
        flex-direction: column;
    }
}

@media print {
    header, footer, .breadcrumbs, .booking-steps, .voucher-actions,
    .social-float, .back-to-top, .cookie-banner { display: none !important; }
    .voucher { box-shadow: none; border: 1px solid #ddd; }
}

/* 404 Page */
.error-page {
    padding: 10rem 2rem 5rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-illustration {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 1rem;
}

.error-globe {
    font-size: 8rem;
    display: block;
    animation: globe-float 3s ease-in-out infinite;
}

.error-plane {
    position: absolute;
    font-size: 2.5rem;
    top: 10px;
    right: -10px;
    animation: plane-orbit 4s linear infinite;
    transform-origin: -40px 60px;
}

@keyframes globe-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes plane-orbit {
    0% { transform: rotate(0deg) translateX(70px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}

.error-page h1 {
    font-size: 8rem;
    color: var(--text-heading);
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(135deg, #f18f01, #d67d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page h2 {
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.error-page p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 2rem;
    max-width: 480px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Pages need top padding for fixed header */
.destinations,
.about,
.contact {
    padding-top: 6rem;
}

/* Responsive - All Mobile */
@media (max-width: 768px) {

    /* === Hero === */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 5rem 1rem 2rem;
    }
    .hero-content h1 { font-size: 1.6rem; }
    .hero-typed { white-space: normal; }
    .hero-content p { font-size: 0.9rem; margin-bottom: 0.8rem; }
    .hero-cloud { font-size: 2rem; }
    .hero-cloud-1 { font-size: 2.5rem; }
    .hero-plane-1 { font-size: 1rem; }
    .hero-globe { font-size: 1.2rem; }
    .trip-toggle { gap: 0.3rem; margin-bottom: 0.8rem; }
    .trip-btn { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
    .persons-row { display: flex; gap: 0.5rem; }
    .persons-row .search-field { flex: 1; }
    .search-field select { width: 100%; }
    .hero-price { font-size: 1.3rem; }
    .search-price { font-size: 0.9rem; }

    /* === Navigation === */
    .nav-links { gap: 1rem; }

    /* === All Section Headings === */
    section h2 { font-size: 1.6rem; }
    section p { font-size: 0.95rem; }

    /* === Pages with fixed header === */
    .destinations, .about, .contact { padding-top: 5rem; }

    /* === Tours Section === */
    .tours-section { padding: 2rem 1rem; }
    .tours-section h2 { font-size: 1.5rem; margin-bottom: 0.3rem; }
    .tours-subtitle { font-size: 0.85rem !important; margin-bottom: 1rem !important; }

    /* === Destinations / Cards === */
    .destinations { padding: 3rem 1rem; }
    .card-grid { grid-template-columns: 1fr; gap: 1rem; }
    .card { margin: 0; }

    /* === Visa Section === */
    .visa-support { padding: 3rem 1rem; }
    .visa-features { grid-template-columns: 1fr; gap: 1rem; }
    .visa-feature { padding: 1.2rem; }
    .visa-info-box { padding: 1.2rem; font-size: 0.9rem; }

    /* === Stats Bar === */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.8rem; }

    /* === About / Features === */
    .about { padding: 3rem 1rem; }
    .features { flex-direction: column; align-items: center; }
    .feature { padding: 1.5rem; }
    .about-text { padding: 2rem 1rem; }
    .about-container { padding: 1.5rem; }

    /* === FAQ Section === */
    .faq-section { padding: 3rem 1rem; }
    .faq-question { font-size: 0.95rem; padding: 1rem; }
    .faq-answer { font-size: 0.9rem; padding: 0 1rem 1rem; }

    /* === Partners === */
    .partners { padding: 2rem 1rem; }
    .partner-logo { height: 35px; margin: 0 1rem; }

    /* === Contact Page === */
    .contact { padding: 3rem 1rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-form .btn { width: 100%; }
    .info-block { padding: 1rem 0; }

    /* === Search Results === */
    .search-body { padding: 1rem; }
    .flight-card, .hotel-card { padding: 1rem; }
    .flight-route { flex-direction: column; gap: 0.5rem; }
    .hotel-card-inner { flex-direction: column; }
    .hotel-image { width: 100%; height: 180px; }
    .hotel-info { padding: 1rem; }
    .results-bar { flex-direction: column; gap: 0.5rem; }

    /* === Tour List Pages === */
    .tour-list-section { padding: 3rem 1rem; }
    .tour-list-layout { flex-direction: column; }
    .tour-filters { width: 100%; position: static; }
    .tour-list-grid { grid-template-columns: 1fr; }
    .tour-list-card { margin: 0; }

    /* === Booking Page === */
    .booking-section { padding: 3rem 1rem; }

    /* === Footer === */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-list li { justify-content: center; }
    .footer-social { padding: 1.5rem 1rem; }

    /* === Breadcrumbs === */
    .breadcrumbs { padding: 5rem 1rem 0.5rem; font-size: 0.85rem; }

    /* === Admin === */
    .admin-section { padding: 5rem 1rem 2rem; }
    .admin-section h2 { font-size: 1.6rem; }
    .admin-tabs { flex-wrap: wrap; gap: 0; }
    .tab { padding: 0.6rem 1rem; font-size: 0.85rem; flex: 1; text-align: center; min-width: 0; }
    .admin-panel { padding: 1.2rem; }
    .admin-table th, .admin-table td { padding: 0.5rem 0.4rem; font-size: 0.8rem; }
    .bookings-stats { flex-direction: column; }
    .perf-score-section { flex-direction: column; text-align: center; }
    .perf-grid { grid-template-columns: 1fr; }
    .setting-row input { font-size: 0.9rem; }

    /* === Blobs (decorative) === */
    .blob { display: none; }

    /* Admin mobile */
    .admin-section {
        padding: 5rem 1rem 2rem;
    }

    .admin-section h2 {
        font-size: 1.6rem;
    }

    .admin-tabs {
        flex-wrap: wrap;
        gap: 0;
    }

    .tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .admin-panel {
        padding: 1.2rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.5rem 0.4rem;
        font-size: 0.8rem;
    }

    .bookings-stats {
        flex-direction: column;
    }

    .perf-score-section {
        flex-direction: column;
        text-align: center;
    }

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

    .setting-row input {
        font-size: 0.9rem;
    }

    /* General mobile heading sizes */
    .about h2,
    .contact h2,
    section h2 {
        font-size: 1.8rem;
    }
}

/* Extra small phones (320px-480px) */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.3rem; }
    .hero-content p { font-size: 0.8rem; }
    .trip-btn { padding: 0.4rem 0.8rem; font-size: 0.7rem; }
    .hero-search { padding: 0.6rem; gap: 0.4rem; }
    .hero-search input, .hero-search select { font-size: 0.8rem; padding: 0.4rem; }
    .search-field label { font-size: 0.65rem; }
    .search-btn { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
    nav { padding: 0.8rem 1rem; }
    .logo-img { max-height: 32px; }
    section h2 { font-size: 1.3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 1.5rem; }
    .social-float { bottom: 70px; right: 10px; gap: 6px; }
    .social-float-btn { width: 36px; height: 36px; }
    .social-float-btn svg { width: 18px; height: 18px; }
    .back-to-top { width: 36px; height: 36px; right: 10px; }
    footer { font-size: 0.8rem; }
}

/* Incoming Tours Slider */
.tours-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.55), rgba(15, 52, 96, 0.55)),
                url('https://images.unsplash.com/photo-1695571803214-9e6820bffce7?w=1920&q=80') center/cover no-repeat fixed;
    color: #fff;
}
.tours-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.tours-subtitle {
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}
.tours-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.tour-category-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    width: 300px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tour-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.tour-category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    margin: 12px;
    border-radius: 12px;
    transition: transform 0.4s;
    overflow: hidden;
}
.tour-category-card:hover .tour-category-img {
    transform: scale(1.03);
}
.tour-category-body {
    padding: 0.8rem 1.2rem 1.5rem;
    text-align: center;
}
.tour-category-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tour-category-body p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
body.dark .tour-category-card {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
    .tours-grid { flex-direction: column; align-items: center; }
    .tour-category-card { width: 100%; max-width: 340px; }
}

/* Tours Overview Page */
.tours-page {
    padding: 2rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.tours-page > h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}
.tours-page .section-subtitle {
    color: var(--text-secondary) !important;
    margin-bottom: 2.5rem;
}
.tours-page .tours-grid {
    margin-bottom: 3rem;
    justify-content: center;
}
.tours-page .tour-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-sm);
}
.tours-page .tour-category-body h3 {
    color: var(--text-heading);
}
.tours-page .tour-category-body p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}
.tours-featured > h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}
.featured-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.featured-tours-grid .tour-list-card {
    text-align: left;
}

/* Contact Form Validation */
.contact-form .field-error {
    color: #dc3545;
    font-size: 0.82rem;
    margin-top: 4px;
    display: none;
}
.contact-form input.invalid,
.contact-form textarea.invalid {
    border: 2px solid #dc3545 !important;
}
.contact-form input.valid,
.contact-form textarea.valid {
    border: 2px solid #28a745 !important;
}

/* Tour List Page */
.tour-list-section {
    padding: 2rem 2rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}
.tour-list-section h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}
.tour-list-subtitle {
    text-align: center;
    color: var(--text-secondary) !important;
    margin-bottom: 2.5rem;
}
.tour-list-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.tour-filters {
    width: 260px;
    flex-shrink: 0;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}
.tour-filters h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #eee;
}
.filter-group {
    margin-bottom: 1.2rem;
}
.filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--bg-primary);
    color: var(--text-heading);
    cursor: pointer;
    transition: border-color 0.3s;
}
.filter-group select:focus {
    outline: none;
    border-color: #2e86ab;
}
.btn-filter-reset {
    width: 100%;
    padding: 10px;
    background: none;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.btn-filter-reset:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}
body.dark .tour-filters h3 {
    border-bottom-color: #333;
}
body.dark .filter-group select,
body.dark .filter-group input[type="text"],
body.dark .filter-group input[type="date"] {
    border-color: #333;
}
body.dark .btn-filter-reset {
    border-color: #333;
}
.filter-group input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--bg-primary);
    color: var(--text-heading);
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.filter-group input[type="text"]:focus,
.filter-group input[type="date"]:focus {
    outline: none;
    border-color: #2e86ab;
}
.filter-group input[type="date"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--bg-primary);
    color: var(--text-heading);
    transition: border-color 0.3s;
    box-sizing: border-box;
    cursor: pointer;
}
.filter-price-range {
    padding-top: 0.3rem;
}
.filter-price-range input[type="range"] {
    width: 100%;
    cursor: pointer;
    accent-color: #2e86ab;
}
.filter-price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}
.filter-price-labels span:last-child {
    font-weight: 700;
    color: #2e86ab;
}
.tour-list-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.tour-list-price strong {
    font-size: 1.1rem;
    color: #2e86ab;
}
.tour-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    flex: 1;
}
.tour-list-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}
.tour-list-card {
    display: flex;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.tour-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.tour-list-img {
    width: 220px;
    min-height: 220px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}
.tour-list-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.tour-list-dates {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #2e86ab;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.tour-list-date-icon {
    font-size: 1.1rem;
}
.tour-list-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
}
.tour-list-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.tour-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tour-list-duration {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.btn-tour-list {
    background: #2e86ab;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 2px solid #2e86ab;
}
.btn-tour-list:hover {
    background: transparent;
    color: #2e86ab;
    border-color: #2e86ab;
}
@media (max-width: 768px) {
    .tour-list-layout { flex-direction: column; }
    .tour-filters { width: 100%; position: static; }
    .tour-list-card { flex-direction: column; }
    .tour-list-img { width: 100%; height: 200px; min-height: auto; }
}

/* Visa Support */
.visa-support {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}
.visa-container {
    max-width: 1000px;
    margin: 0 auto;
}
.visa-content {
    text-align: center;
}
.visa-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.visa-subtitle {
    color: #777;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.visa-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}
.visa-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.visa-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.visa-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.visa-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #333;
}
.visa-feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.visa-info-box {
    background: var(--visa-info-bg);
    border-left: 4px solid #2e86ab;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
    text-align: left;
}
.visa-info-box p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.btn-visa {
    display: inline-block;
    background: #2e86ab;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: 2px solid #2e86ab;
}
.btn-visa:hover {
    background: transparent;
    color: #2e86ab;
}
@media (max-width: 768px) {
    .visa-features { grid-template-columns: 1fr; }
}

/* Lazy Background Images */
.lazy-bg {
    background-color: #e8e8e8;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
    background-image: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.lazy-bg.lazy-loaded {
    animation: none;
    background-size: cover;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

body.dark .lazy-bg {
    background-color: #2a3a5c;
    background-image: linear-gradient(90deg, #2a3a5c 25%, #3a4a6c 50%, #2a3a5c 75%);
}

/* Dark Mode Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    line-height: 1;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Dark mode overrides for elements that use hardcoded colors */
body.dark .lang-dropdown {
    background: #1f2b47;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

body.dark .lang-option {
    color: #e0e0e0;
}

body.dark .lang-option:hover {
    background: #233354;
}

body.dark .lang-option.selected {
    background: #2a3a5c;
    color: #f18f01;
}

body.dark .contact-info-panel ul li {
    color: #bbb;
}

body.dark .contact-info-panel ul li a {
    color: #7db8d4;
}

body.dark .contact-info-panel .info-block h3 {
    color: var(--text-heading);
}

body.dark .visa-info-box p {
    color: #ccc;
}

body.dark .visa-feature p {
    color: var(--text-secondary);
}

body.dark .alert.success {
    background: #1a3a2a;
    color: #6fcf97;
    border-color: #2a5a3a;
}

body.dark .alert.error {
    background: #3a1a1a;
    color: #f08080;
    border-color: #5a2a2a;
}

body.dark .price {
    color: #f18f01;
}


body.dark .feature-icon {
    background: linear-gradient(135deg, #2a3a5c, #1f2b47);
}

body.dark .btn-outline-dark {
    color: #e0e0e0;
    border-color: #e0e0e0;
}

body.dark .btn-outline-dark:hover {
    background: #e0e0e0;
    color: #1a1a2e;
}

/* Stats Counter Bar */
.stats-bar {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 143, 1, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f18f01;
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f18f01;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 2rem 3rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Partners / Airlines Logos Section */
.partners {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    text-align: center;
    overflow: hidden;
}

.partners h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.partners h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f18f01;
    margin: 0.8rem auto 1rem;
    border-radius: 2px;
}

.partners .section-subtitle {
    margin-bottom: 2rem;
}

.partners-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    height: 48px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

body.dark .partner-logo {
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.5;
}

body.dark .partner-logo:hover {
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f2027;
    color: #ddd;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.4rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.3s, transform 0.2s;
}

.cookie-accept {
    background: #f18f01;
    color: #fff;
}

.cookie-accept:hover {
    background: #d67d00;
    transform: translateY(-1px);
}

.cookie-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
}

.cookie-decline:hover {
    border-color: #aaa;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ─── FAQ Accordion ─── */
.faq-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: inherit;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #f18f01;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0.5rem 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ─── Breadcrumbs ─── */
.breadcrumbs {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs a {
    color: #f18f01;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #d67d00;
    text-decoration: underline;
}

.breadcrumbs .breadcrumb-sep {
    margin: 0 0.5rem;
    color: var(--text-secondary);
}

.breadcrumbs .breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ─── Search Filters ─── */
.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input[type="range"] {
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-group input[type="range"] {
    width: 160px;
    padding: 0.5rem 0;
    border: none;
    background: transparent;
    accent-color: #f18f01;
}

.filter-price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 60px;
}

.star-filter {
    display: flex;
    gap: 0.4rem;
}

.star-filter-btn {
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-input);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.star-filter-btn.active {
    background: #f18f01;
    color: #fff;
    border-color: #f18f01;
}

.star-filter-btn:hover:not(.active) {
    border-color: #f18f01;
    color: #f18f01;
}

@media (max-width: 768px) {
    .search-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group input[type="range"] {
        width: 100%;
    }
}

/* ─── Accessibility: Skip to content ─── */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #f18f01;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
}

/* ─── Accessibility: Focus visible ─── */
*:focus-visible {
    outline: 3px solid #f18f01;
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    outline: none;
}

/* ─── Recently Viewed Destinations ─── */
.recently-viewed {
    padding: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recently-viewed h3 {
    color: var(--text-heading);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.rv-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.rv-strip::-webkit-scrollbar {
    height: 4px;
}

.rv-strip::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.rv-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 2px 8px var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: var(--text-primary);
}

.rv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px var(--shadow-md);
}

.rv-card-img {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-secondary);
}

.rv-card-body {
    padding: 0.7rem 0.8rem;
}

.rv-card-body h4 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rv-card-body span {
    font-size: 0.8rem;
    color: #f18f01;
    font-weight: 600;
}

/* ─── Page Transitions ─── */
.page-transition-out {
    animation: pageOut 0.3s ease forwards;
}

.page-transition-in {
    animation: pageIn 0.4s ease both;
}

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

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

/* ─── Offline Page ─── */
.offline-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 2rem;
}

.offline-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: floatIcon 3s ease-in-out infinite;
}

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

.offline-page h1 {
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.offline-page p {
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.offline-page .btn {
    display: inline-block;
}

/* ─── Morphing Blob Decorations ─── */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    will-change: border-radius, transform;
}

body.dark .blob {
    opacity: 0.08;
}

/* Blob animations — organic shape morphing */
.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f18f01, #ffc107);
    top: -100px;
    right: -80px;
    animation: blobMorph1 12s ease-in-out infinite, blobDrift1 20s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0c7cd5, #00b4d8);
    bottom: -80px;
    left: -60px;
    animation: blobMorph2 10s ease-in-out infinite, blobDrift2 18s ease-in-out infinite;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #2c5364, #203a43);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blobMorph3 14s ease-in-out infinite;
    opacity: 0.06;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f18f01, #e74c3c);
    top: -60px;
    left: -100px;
    animation: blobMorph1 15s ease-in-out infinite reverse, blobDrift2 22s ease-in-out infinite;
}

.blob-5 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #00b4d8, #0c7cd5);
    bottom: -50px;
    right: -70px;
    animation: blobMorph2 11s ease-in-out infinite, blobDrift1 16s ease-in-out infinite reverse;
}

@keyframes blobMorph1 {
    0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
    25% { border-radius: 70% 30% 50% 50% / 30% 62% 38% 70%; }
    50% { border-radius: 30% 70% 40% 60% / 55% 30% 70% 45%; }
    75% { border-radius: 55% 45% 60% 40% / 70% 55% 45% 30%; }
}

@keyframes blobMorph2 {
    0%, 100% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
    33% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%; }
    66% { border-radius: 50% 50% 45% 55% / 65% 35% 65% 35%; }
}

@keyframes blobMorph3 {
    0%, 100% { border-radius: 33% 67% 50% 50% / 43% 39% 61% 57%; }
    50% { border-radius: 67% 33% 50% 50% / 57% 61% 39% 43%; }
}

@keyframes blobDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

@keyframes blobDrift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 15px); }
}

/* Sections that contain blobs need containment */
.has-blobs {
    position: relative;
    overflow: hidden;
}

.has-blobs > *:not(.blob) {
    position: relative;
    z-index: 1;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .blob,
    .hero-float,
    .hero-typed,
    .page-transition-in,
    .page-transition-out {
        animation: none !important;
    }
    .hero-typed {
        border-right: none;
    }
    .hero-subtitle-fade {
        opacity: 0.9;
        transform: none;
    }
}
