/* Homepage Styles */
:root {
    --primary: #0D1B2A;
    --primary-light: #1E3A5F;
    --gold: #C9A227;
    --gold-dark: #A8841E;
    --accent: #2ECC71;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray: #6C757D;
    --dark: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--gold);
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 7px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--off-white);
    color: var(--gold);
}

.main-nav svg {
    transition: transform 0.3s;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    z-index: 1001;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover svg {
    transform: rotate(180deg);
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.dropdown li a:hover {
    background: var(--off-white);
}

.dropdown li a strong {
    color: var(--accent);
}

/* Dropdown Wide (More menu) */
.dropdown-wide {
    min-width: 300px;
    right: 0;
    left: auto;
}

.dropdown-heading {
    padding: 8px 15px 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    pointer-events: none;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 6px 10px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-phone:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.header-book-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-book-btn:hover {
    background: #27AE60;
    transform: scale(1.05);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--off-white);
    border: 2px solid var(--gray-200, #E9ECEF);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.2s;
    white-space: nowrap;
}

.lang-current:hover {
    border-color: var(--gold);
}

.lang-current svg {
    transition: transform 0.2s;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 120px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 1001;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 6px;
    text-align: left;
    transition: background 0.15s;
    color: var(--primary);
}

.lang-option:hover {
    background: var(--off-white);
}

.lang-option.active {
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

/* HERO */
.hero {
    position: relative;
    height: 700px;
    margin-top: 70px;
    overflow: visible;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 100px 40px;
    color: var(--white);
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E0E0E0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 4;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.btn-primary strong {
    font-size: 1.2rem;
}

.hero-nav {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-nav button {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav button:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* QUICK BOOKING */
.quick-booking {
    background: transparent;
    padding: 0;
    margin-top: -120px;
    position: relative;
    z-index: 20;
}

.booking-box {
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group select,
.form-group input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 100%;
    min-width: 0;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.25);
}

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-book {
    padding: 14px 30px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    align-self: end;
}

.btn-book:hover {
    background: #27AE60;
    transform: translateY(-2px);
}

/* TRUST SECTION */
.trust-section {
    padding: 40px 0;
    background: var(--off-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 15px;
}

.trust-item .trust-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    color: var(--white);
}

.trust-item .trust-icon svg {
    width: 26px;
    height: 26px;
}

.trust-item span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* TOURS SECTION */
.tours-section {
    padding: 80px 0;
}

.tours-section.packages {
    background: var(--off-white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tours-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* TOUR CARD */
.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.bestseller {
    background: var(--accent);
    color: var(--white);
}

.badge.hotdeal {
    background: #E74C3C;
    color: var(--white);
}

.badge.popular {
    background: var(--gold);
    color: var(--white);
}

.tour-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
    line-height: 1.4;
    min-height: 44px;
}

.tour-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto;
}

.tour-price .old {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.tour-price .current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.tour-price .per {
    font-size: 0.8rem;
    color: var(--gray);
}

.btn-reserve {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reserve:hover {
    background: var(--gold);
}

/* WHY SECTION */
/* HOW IT WORKS */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.how-it-works .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -20px;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.step-item h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-width: 50px;
    padding-top: 80px;
}

.step-connector svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
    opacity: 0.6;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--gold-dark);
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-col a {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 999;
        overflow-y: auto;
        padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .main-nav .nav-list li a {
        padding: 12px 15px;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        min-width: auto;
        max-height: 300px;
        overflow-y: auto;
        border-radius: 0;
        display: none;
    }

    .dropdown-wide {
        min-width: auto;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .slide-content {
        padding: 40px 20px;
    }

    .slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-primary strong {
        font-size: 1rem;
    }

    /* Hero nav - compact on mobile */
    .hero-nav {
        bottom: 100px;
        gap: 12px;
    }

    .hero-nav button {
        width: 36px;
        height: 36px;
    }

    .hero-nav button svg {
        width: 14px;
        height: 14px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dots {
        gap: 6px;
    }

    /* Quick Booking - reduce overlap on mobile */
    .quick-booking {
        margin-top: -80px;
    }

    .booking-box {
        padding: 20px 15px;
        border-radius: 14px;
    }

    .booking-box h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group select,
    .form-group input {
        padding: 11px 12px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .btn-book {
        padding: 14px;
        font-size: 0.95rem;
        width: 100%;
    }

    /* Tours */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tours-section {
        padding: 50px 0;
    }

    /* Trust badges */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .trust-item {
        padding: 12px 8px;
    }

    .trust-item .trust-icon {
        width: 42px;
        height: 42px;
    }

    .trust-item .trust-icon svg {
        width: 20px;
        height: 20px;
    }

    .trust-item span:last-child {
        font-size: 0.72rem;
    }

    /* How It Works */
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        width: 30px;
        min-width: 30px;
    }

    .step-connector svg {
        width: 20px;
        height: 20px;
    }

    .step-item {
        width: 100%;
        max-width: 400px;
        padding: 20px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    /* Dropdowns in mobile nav */
    .dropdown {
        min-width: auto;
    }

    .dropdown-wide {
        min-width: auto;
    }

    /* Header tweaks */
    .header-inner {
        height: 60px;
    }

    .main-nav {
        top: 60px;
    }

    .hero {
        margin-top: 60px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-book-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Language switcher */
    .lang-current {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .lang-dropdown {
        min-width: 100px;
    }

    /* Partners */
    .partners-grid {
        gap: 20px;
    }

    .partner-item img {
        height: 32px;
    }

    /* Modal */
    .reservation-modal-content {
        padding: 25px 20px;
    }
}

/* Ultra-small phones */
@media (max-width: 400px) {
    .hero {
        height: 450px;
        margin-top: 56px;
    }

    .slide-content {
        padding: 30px 15px;
    }

    .slide-content h1 {
        font-size: 1.35rem;
    }

    .quick-booking {
        margin-top: -70px;
    }

    .booking-box {
        padding: 15px 12px;
    }

    .header-inner {
        height: 56px;
        padding: 0 10px;
    }

    .main-nav {
        top: 56px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .header-right {
        gap: 6px;
    }

    .header-book-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .lang-current {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .trust-item {
        padding: 10px 4px;
    }

    .trust-item span:last-child {
        font-size: 0.65rem;
    }

    .container {
        padding: 0 12px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .tours-section {
        padding: 35px 0;
    }
}

/* RESERVATION MODAL */
.reservation-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.reservation-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reservation-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.reservation-success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--white);
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reservation-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 10px;
}

.reservation-details {
    background: var(--off-white);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.reservation-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.reservation-details p:last-child {
    margin-bottom: 0;
}

.status-pending {
    background: #FFF3CD;
    color: #856404;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.reservation-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.reservation-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Preview Modal Styles */
.preview-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.preview-header {
    margin-bottom: 5px;
}

.preview-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.preview-details {
    padding: 0 !important;
    background: transparent !important;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.preview-row:last-child {
    border-bottom: none;
}

.preview-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6C757D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.preview-actions {
    margin-top: 10px;
}

.btn-edit-booking {
    padding: 12px 28px;
    border: 2px solid #dee2e6;
    background: transparent;
    color: #6C757D;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-edit-booking:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-confirm-booking {
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm-booking:hover {
    background: #27AE60;
    transform: scale(1.02);
}

.btn-confirm-booking:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Preview Pricing */
.preview-pricing {
    margin: 15px 0 5px;
    border: 2px solid var(--gold);
    border-radius: 14px;
    overflow: hidden;
}

.price-breakdown {
    padding: 14px 16px;
    background: var(--off-white);
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.9rem;
    color: #495057;
}

.price-line-total {
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    color: #adb5bd;
    font-size: 0.85rem;
    text-decoration: line-through;
    margin-right: 2px;
}

.price-total-box {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 16px;
    text-align: center;
}

.price-savings {
    background: #2ECC71;
    color: white;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-original-total {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    text-decoration: line-through;
    margin-right: 8px;
}

.price-final {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #1DA851;
}

.btn-close-modal {
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-close-modal:hover {
    background: var(--gold-dark);
}

/* ===== TOUR BADGES ===== */
.tour-image {
    position: relative;
    overflow: hidden;
}

.tour-image .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge.bestseller {
    background: var(--accent);
}

.badge.hotdeal {
    background: #E74C3C;
}

.badge.popular {
    background: #3498DB;
}

.badge.new {
    background: #F39C12;
}

/* ===== OUR PARTNERS ===== */
.partners-section {
    padding: 60px 0;
    background: var(--off-white);
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.partner-item {
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.partner-item img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 28px;
    }

    .partner-item img {
        height: 36px;
    }
}

/* ===== SERVICE CARDS (Airport, Health, Other) ===== */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.service-card-icon svg {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: #6C757D;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.service-features li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: #495057;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-pricing {
    margin-bottom: 15px;
}

.tours-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.tour-subtitle {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 6px;
}

@media (max-width: 1024px) {
    .service-cards-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .service-cards-grid,
    .service-cards-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .tours-grid.cols-4 {
        grid-template-columns: 1fr;
    }
}