/* ========================================
   TRAVELMAXX LUXURY TRAVEL - WARM THEME
   Fully Responsive | Professional | Modern
   ======================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #B8960F;
    --burgundy: #800020;
    --burgundy-dark: #5C0016;
    --navy: #1B2A4A;
    --navy-light: #2C3E66;
    --cream: #FFF8E7;
    --warm-grey: #E8E3D9;
    --warm-grey-dark: #D4CDBC;
    --olive: #6B705C;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --color-white:#FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --gold-rgb: 212, 175, 55;
    --burgundy-rgb: 128, 0, 32;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    color: var(--olive);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    padding: 10px 0;
    color: var(--white);
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .contact-info i {
    color: var(--gold);
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 10px 24px !important;
    border-radius: 50px;
    color: var(--navy) !important;
    display: inline-block;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--gold-rgb), 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    color: var(--navy);
    font-size: 22px;
    align-items: center;
    justify-content: center;
}

/* ========================================
   RESPONSIVE NAVIGATION
   ======================================== */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: left 0.3s ease-in-out;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
        display: flex !important;
    }

    .nav-menu.show {
        left: 0;
        margin-top: 60px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        font-size: 18px;
        padding: 12px 0;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 8px 0;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        width: 85%;
        padding: 70px 25px 25px;
    }

    .hamburger {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ========================================
   HERO SECTION WITH SMALL FORM
   ======================================== */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&h=1080&fit=crop') center/cover no-repeat;
    animation: zoomSlow 25s ease infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.92), rgba(128, 0, 32, 0.88));
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-left {
    color: var(--white);
}

.hero-badge {
    margin-bottom: 20px;
}

.badge-pulse {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.text-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

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

.btn-primary-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-outline-gold:hover
{
    background-color:#fff;
    color: var(--color-white);
    border: none;

}
.btn-primary-gold:hover {
    background-color:#fff;
    color: var(--black);
    border: none;

}


/* Small Hero Card */
.hero-card-small {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-card-header {
    text-align: center;
    margin-bottom: 15px;
}

.hero-card-header i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 5px;
}

.hero-card-header h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.hero-card-header p {
    font-size: 11px;
    opacity: 0.7;
}

/* Small Trip Type Buttons */
.trip-type-small {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.trip-btn-small {
    flex: 1;
    padding: 8px;
    border: none;
    background: var(--warm-grey);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.trip-btn-small.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--color-white);
}

/* Small Form Fields */
.quick-quote-form-small {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-field-small {
    position: relative;
}

.form-field-small i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 12px;
}

.form-field-small input,
.form-field-small select {
    width: 100%;
    padding: 8px 12px 8px 35px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 12px;
    transition: var(--transition);
}

.form-field-small input:focus,
.form-field-small select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.traveler-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
}

.traveler-summary i:first-child {
    position: static;
    color: var(--gold);
    font-size: 12px;
}

.traveler-summary span {
    flex: 1;
    font-size: 12px;
    color: #333;
}

.traveler-summary i:last-child {
    position: static;
    font-size: 10px;
    color: #999;
}

.btn-submit-gold-small {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--color-white);
    border: none;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-gold-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Traveler Dropdown Small */
.traveler-dropdown-small {
    position: fixed;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 12px;
    width: 250px;
    z-index: 10000;
    display: none;
}

.traveler-dropdown-small.show {
    display: block;
}

.traveler-item-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.traveler-item-small:last-child {
    border-bottom: none;
}

.traveler-item-small span {
    font-size: 12px;
    font-weight: 500;
}

.traveler-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.traveler-minus,
.traveler-plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.traveler-minus:hover,
.traveler-plus:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ========================================
   QUOTE MODAL - SMALL VERSION
   ======================================== */
.quote-modal-small {
    border-radius: 20px;
    overflow: hidden;
}

.quote-modal-small .modal-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 15px 20px;
}

.quote-modal-small .modal-header-content {
    text-align: center;
    flex: 1;
}

.quote-modal-small .modal-header-content i {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 5px;
}

.quote-modal-small .modal-header-content h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--navy);
}

.quote-modal-small .modal-header-content p {
    font-size: 11px;
    color: var(--navy);
    opacity: 0.8;
}

.quote-modal-small .modal-body {
    padding: 20px;
}

/* Small Input Groups */
.input-group-sm {
    display: flex;
    width: 100%;
}

.input-group-sm .input-group-text {
    padding: 6px 10px;
    font-size: 12px;
    background: var(--warm-grey);
    color: var(--gold);
    border-radius: 8px 0 0 8px;
}

.form-control-sm,
.form-select-sm {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 0 8px 8px 0;
}

/* Passenger Selector Small */
.passenger-selector-sm {
    position: relative;
}

.passenger-dropdown-sm {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.passenger-dropdown-sm.show {
    display: block;
}

.passenger-item-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.passenger-item-sm:last-child {
    border-bottom: none;
}

.passenger-item-sm span {
    font-size: 12px;
}

.passenger-controls-sm {
    display: flex;
    align-items: center;
    gap: 10px;
}

.passenger-btn-sm {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.passenger-btn-sm.minus {
    color: #ff6b6b;
}

.passenger-btn-sm.plus {
    color: #2DCF9E;
}

.passenger-btn-sm:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ========================================
   HOMEPAGE SECTIONS
   ======================================== */

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--cream);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(var(--gold-rgb), 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--gold);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--olive);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   WHY CHOOSE US - SMALLER VERSION
   ======================================== */

.why-choose-us {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white), var(--cream));
}

.why-content {
    padding-right: 30px;
}

.why-content .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.why-content > p {
    color: var(--olive);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Why List Items */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 18px;
    color: var(--gold);
}

.why-text {
    flex: 1;
}

.why-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.why-text p {
    color: var(--olive);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Why Image */
.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.why-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.why-badge i {
    font-size: 20px;
    color: var(--gold);
}

.why-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

/* Responsive */
@media (max-width: 992px) {
    .why-choose-us {
        padding: 50px 0;
    }

    .why-content {
        padding-right: 0;
    }

    .why-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 0;
    }

    .why-content h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .why-content > p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .why-list {
        gap: 15px;
    }

    .why-icon {
        width: 32px;
        height: 32px;
    }

    .why-icon i {
        font-size: 16px;
    }

    .why-text h4 {
        font-size: 0.9rem;
    }

    .why-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 30px 0;
    }

    .why-content h2 {
        font-size: 1.3rem;
    }

    .why-item {
        gap: 12px;
    }

    .why-icon {
        width: 28px;
        height: 28px;
    }

    .why-icon i {
        font-size: 14px;
    }
}

/* How It Works Modern */
.how-it-works-modern {
    padding: 80px 0;
    background: var(--white);
}

.steps-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
        box-shadow: var(--shadow);
        border-radius: 20px;

}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(var(--gold-rgb), 0.15);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.step-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;
}

.step-icon i {
    font-size: 32px;
    color: var(--navy);
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--olive);
}

/* Offers Banner */
.offers-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
}

.offers-content {
    text-align: center;
    color: var(--white);
}

.offers-text i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
}

.offers-text span {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.offers-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.offers-text p {
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Banner */
.newsletter-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.newsletter-wrapper {
    text-align: center;
    color: var(--white);
}

.newsletter-icon i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.newsletter-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-wrapper p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.newsletter-banner-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-banner-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-banner-form button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-banner-form button:hover {
    transform: translateY(-2px);
}

/* Destinations Grid */
.destinations-section {
    padding: 80px 0;
    background: var(--white);
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.3);
}

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

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

.btn-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;

}

.btn-book:hover {
    transform: translateX(5px);
}

.btn-cta-glow {
    display: inline-block;
    background: var(--white);
    color: var(--gold);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-cta-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--gold-dark);
}

/* ========================================
   QUOTE FORM (GLASSMORPHISM)
   ======================================== */
.quote-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 2.5%;
}

.quote-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quote-card .card-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 25px;
    text-align: center;
    margin: -30px -30px 20px -30px;
}

.quote-card .card-header h3,
.quote-card .card-header p {
    color: var(--navy);
}

.quote-card .card-header i {
    color: var(--navy);
}

.trip-type-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.trip-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: var(--warm-grey);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.trip-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.1);
    outline: none;
}

.input-group {
    display: flex;
    width: 100%;
}

.input-group-text {
    background: var(--warm-grey);
    border-radius: 12px 0 0 12px;
    color: var(--gold);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.form-check .form-check-input:checked {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
}

/* ========================================
   PASSENGER SELECTOR
   ======================================== */
.passenger-selector {
    position: relative;
    width: 100%;
}

.passenger-display {
    cursor: pointer;
    background-color: #fff;
    width: 100%;
}

.passenger-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 15px;
    z-index: 1000;
    display: none;
    border: 1px solid #e0e0e0;
}

.passenger-dropdown.show {
    display: block;
}

.passenger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.passenger-item:last-child {
    border-bottom: none;
}

.passenger-item span:first-child {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.passenger-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.passenger-btn.minus {
    color: #ff6b6b;
}

.passenger-btn.plus {
    color: #2DCF9E;
}

.passenger-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-color: transparent;
    transform: scale(1.05);
}

.passenger-number {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.passenger-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

/* Mobile Passenger Selector */
@media (max-width: 768px) {
    .passenger-selector {
        position: static;
    }

    .passenger-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 340px;
        z-index: 10000;
        border-radius: 20px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .passenger-dropdown::before {
        display: none;
    }

    .passenger-item {
        padding: 14px 0;
    }

    .passenger-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .passenger-number {
        min-width: 38px;
        font-size: 18px;
    }

    body.dropdown-open {
        overflow: hidden;
    }
}

/* ========================================
   SUGGESTIONS BOX - FIXED POSITION
   ======================================== */

/* Make sure parent containers have relative positioning */
.form-field-small,
.position-relative,
.input-group,
.col-md-6.position-relative {
    position: relative;
}

/* Suggestions Box - Appears directly below input */
.suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
}

/* For quick form inputs */
.form-field-small .suggestions-box {
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
}

/* For main form inputs */
.input-group + .suggestions-box {
    top: 100%;
    left: 0;
    right: 0;
}

/* Suggestion Items */
.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    color: var(--gold);
    padding-left: 20px;
}

/* Ensure proper z-index for suggestions */
.suggestions-box {
    z-index: 10000;
}

/* Make sure inputs have proper styling */
.form-field-small input,
.form-field-small select {
    width: 100%;
    padding: 8px 12px 8px 35px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 12px;
}

/* For the main form input groups */
.input-group {
    position: relative;
}

.input-group .form-control {
    position: relative;
    z-index: 1;
}

.input-group + .suggestions-box {
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .suggestions-box {
        max-height: 200px;
    }

    .suggestion-item {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.trust-item {
    text-align: center;
    padding: 15px;
    box-shadow: var(--shadow);
    border-radius: 12px;
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--gold);
}

.trust-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--olive);
}

/* ========================================
   DESTINATION CARDS
   ======================================== */
.section-padding {
    padding: 60px 0;
}

.destination-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    border-bottom: 3px solid var(--gold);
}

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

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

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

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

.destination-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.destination-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.destination-content {
    padding: 20px;
}

.destination-title {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-title i {
    color: var(--gold);
    font-size: 16px;
}

.destination-title h3 {
    font-size: 1.3rem;
    margin: 0;
}

.destination-description {
    color: var(--olive);
    font-size: 14px;
    margin: 10px 0;
}

.destination-rating {
    color: var(--gold);
    margin-bottom: 15px;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 60px 0;
    background: var(--warm-grey);
}

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

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--olive);
    font-size: 14px;
}

/* ========================================
   SMALLER TESTIMONIALS CAROUSEL
   ======================================== */

/* Testimonials Section - Smaller Padding */
.testimonials-section {
    padding: 60px 0;
    background: var(--white);
}

/* Carousel Container */
#testimonialsCarousel {
    position: relative;
    padding: 10px 0 30px;
}

/* Smaller Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    height: 100%;
    border-left: solid var(--burgundy);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

/* Smaller Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 12px;
    left: 15px;
    opacity: 0.2;
}

.testimonial-quote-icon i {
    font-size: 28px;
    color: var(--gold);
}

/* Smaller Avatar */
.testimonial-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Smaller Stars */
.testimonial-stars {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 12px;
}

.testimonial-stars i {
    font-size: 12px;
    margin: 0 1px;
}

/* Smaller Text */
.testimonial-text {
    color: var(--olive);
    font-style: italic;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smaller Name */
.testimonial-name {
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 14px;
}

/* Smaller Location */
.testimonial-location {
    font-size: 11px;
    color: var(--olive);
}

/* Carousel Inner */
.carousel-inner {
    padding: 10px;
}

/* Row Gap Smaller */
.row.g-4 {
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        padding: 16px 14px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 16px;
        margin: 8px auto 10px;
    }

    .testimonial-text {
        font-size: 12px;
        -webkit-line-clamp: 4;
    }

    .testimonial-name {
        font-size: 13px;
    }

    .testimonial-location {
        font-size: 10px;
    }

    .testimonial-stars i {
        font-size: 11px;
    }

    .testimonial-quote-icon i {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 14px 12px;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 11px;
    }

    .testimonial-stars i {
        font-size: 10px;
    }
}
/* ========================================
   MATERIAL ICON AVATAR STYLES
   ======================================== */

.testimonial-avatar.material-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 12px;
    overflow: hidden;
}

.testimonial-avatar.material-avatar .material-icons {
    font-size: 32px;
    color: #fff;
}

/* For smaller screens */
@media (max-width: 768px) {
    .testimonial-avatar.material-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-avatar.material-avatar .material-icons {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .testimonial-avatar.material-avatar {
        width: 45px;
        height: 45px;
    }

    .testimonial-avatar.material-avatar .material-icons {
        font-size: 24px;
    }
}

/* Optional: Add animation on hover */
.testimonial-card:hover .testimonial-avatar.material-avatar {
    transform: scale(1.05);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar.material-avatar .material-icons {
    animation: bounce 0.5s ease;
}

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

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 60px 0;
}

.newsletter-card {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-card i {
    color: var(--gold);
}

.newsletter-card h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.newsletter-card p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    border-radius: 50px;
    padding: 14px 20px;
    border: none;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.3);
}

/* Newsletter Toast */
.newsletter-toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: slideDown 0.3s ease;
    min-width: 300px;
    max-width: 450px;
    width: 90%;
}

.newsletter-toast .toast {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .newsletter-toast {
        top: 80px;
        width: 90%;
        min-width: auto;
    }
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-about p {
    opacity: 0.7;
    line-height: 1.6;
    font-size: 14px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact i {
    width: 25px;
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.whatsapp-float,
.call-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float {
    background: #25D366;
    font-size: 30px;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b859;
}

.call-float {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    font-size: 28px;
    color: var(--navy);
    animation: pulse 2s infinite;
}

.call-float:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(var(--gold-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0); }
}

@media (max-width: 768px) {
    .float-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .whatsapp-float, .call-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .float-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .whatsapp-float, .call-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    animation: upDown 1.5s ease-in-out infinite;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    animation: none;
}

.scroll-top i {
    color: var(--navy);
    font-size: 22px;
}

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

@media (max-width: 768px) {
    .scroll-top {
        bottom: 90px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    .scroll-top i { font-size: 18px; }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 24px;
    color: var(--gold);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--gold);
    color: var(--navy);
}

.cookie-btn.accept:hover {
    background: var(--gold-dark);
}

.cookie-btn.reject {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* ========================================
   INNER HERO (INNER PAGES)
   ======================================== */
.inner-hero {
    position: relative;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&h=600&fit=crop') center/cover no-repeat;
    opacity: 0.15;
    animation: zoomSlow 20s ease infinite;
}

.inner-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.3), rgba(var(--burgundy-rgb), 0.5));
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.inner-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    justify-content: center;
}

.inner-hero .breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

/* ========================================
   ABOUT US, SERVICES, VALUES PAGES
   ======================================== */
.intro-section,
.partnership-section,
.values-section,
.journey-section {
    padding: 80px 0;
}

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

.intro-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
}

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

.intro-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 24px;
}

.intro-icon i {
    font-size: 36px;
    color: var(--navy);
}

.intro-card h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.intro-card p {
    color: var(--olive);
    line-height: 1.7;
}

.partnership-card {
    background: var(--white);
    border-radius: 28px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--gold);
}

.partnership-badges {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.partnership-badge {
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.partnership-badge:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--navy);
}

.stat-label {
    font-size: 16px;
    color: var(--navy);
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.values-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item,
.service-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    border-top: 3px solid var(--gold);
}

.value-item:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.value-icon,
.service-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-item h4,
.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.value-item p,
.service-card > p {
    font-size: 14px;
    color: var(--olive);
    line-height: 1.5;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding-left: 0;
}

.service-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--olive);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--gold);
    width: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    transform: translateX(5px);
}

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

.journey-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 24px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

.cta-section {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 60px 0;
}

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

.cta-content h3 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--navy);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ========================================
   CONTACT US PAGE - FIXED
   ======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-info-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--gold);
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--olive);
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.business-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.business-hours h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.business-hours h4 i {
    color: var(--gold);
    margin-right: 8px;
}

.business-hours p {
    font-size: 13px;
    color: var(--olive);
    margin-bottom: 8px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--gold);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 10px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   POLICY PAGES
   ======================================== */
.terms-content,
.privacy-content,
.refund-content {
    padding: 80px 0;
}

.terms-card,
.privacy-card,
.refund-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.terms-card:hover,
.privacy-card:hover,
.refund-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.terms-card::before,
.privacy-card::before,
.refund-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.terms-card .card-icon,
.privacy-card .card-icon,
.refund-card .card-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-card .card-icon i,
.privacy-card .card-icon i,
.refund-card .card-icon i {
    font-size: 24px;
    color: var(--gold);
}

.terms-card h2,
.privacy-card h2,
.refund-card h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-right: 70px;
}

.terms-card p,
.privacy-card p,
.refund-card p {
    color: var(--olive);
    line-height: 1.7;
}

.terms-card ul,
.privacy-card ul,
.refund-card ul {
    margin: 15px 0 15px 20px;
    color: var(--olive);
}

.warning-box,
.highlight {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.08), rgba(var(--gold-rgb), 0.05));
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--gold);
}

.warning-icon i,
.highlight i {
    font-size: 28px;
    color: var(--gold);
}

.warning-content strong {
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    background: var(--warm-grey);
    padding: 20px;
    border-radius: 16px;
}

.step-num {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.2rem;
}

.last-updated {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: var(--olive);
}

.last-updated i {
    margin-right: 8px;
    color: var(--gold);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */
@media (max-width: 1200px) {
    .hero h1 { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 992px) {
    .hero-new .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .inner-hero h1 { font-size: 2.5rem; }

    .steps-grid,
    .testimonials-grid,
    .values-grid,
    .services-grid,
    .destinations-grid,
    .journey-grid,
    .stats-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }

    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 30px; }

    .quote-card { margin: 20px; }
    .trip-type-buttons { flex-direction: column; }

    .steps-grid,
    .testimonials-grid,
    .values-grid,
    .services-grid,
    .destinations-grid,
    .journey-grid,
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid { gap: 20px; }
    .stat-number { font-size: 36px; }

    .newsletter-form { flex-direction: column; padding: 0 20px; }
    .newsletter-form button { width: 100%; justify-content: center; }

    .intro-section,
    .partnership-section,
    .values-section,
    .journey-section {
        padding: 50px 0;
    }

    .intro-card { padding: 32px 20px; }
    .partnership-card { padding: 30px 20px; }
    .partnership-badges { gap: 12px; }
    .partnership-badge { padding: 6px 16px; font-size: 12px; }

    .cta-section { padding: 40px 0; }
    .cta-content h3 { font-size: 1.5rem; }

    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 20px;
    }

    .terms-card,
    .privacy-card,
    .refund-card {
        padding: 25px;
    }

    .terms-card h2,
    .privacy-card h2,
    .refund-card h2 {
        font-size: 1.3rem;
        padding-right: 60px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        top: 20px;
        right: 20px;
    }

    .card-icon i { font-size: 18px; }

    .map-container { height: 300px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-text { flex-direction: column; }

    .steps-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary-gold,
    .btn-outline-gold {
        width: 100%;
        justify-content: center;
        text-decoration: none;
    }
    .btn-primary-gold:hover,
    .btn-outline-gold:hover {
        width: 100%;
        justify-content: center;
        text-decoration: none;
        background-color: #fff;
        color: var(--black);
        border: none;
    }

    .form-row-small {
        grid-template-columns: 1fr;
    }

    .hero-card-small {
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .inner-hero h1 { font-size: 1.8rem; }
    .inner-hero { min-height: 30vh; }

    .process-step { flex-direction: column; text-align: center; }
    .step-num { margin: 0 auto; }

    .warning-box,
    .highlight {
        flex-direction: column;
        gap: 10px;
    }

    .contact-section { padding: 40px 0; }
    .map-section { padding: 0 0 40px; }
    .map-container { height: 250px; }

    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .offers-text h3 { font-size: 1.3rem; }
    .newsletter-banner .newsletter-wrapper h3 { font-size: 1.4rem; }
    .newsletter-banner-form { flex-direction: column; padding: 0 20px; }
    .why-item { flex-direction: column; text-align: center; }
    .why-badge { position: static; margin-top: 20px; display: inline-flex; }
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.p-relative { position: relative; }

/* ========================================
   FORM LAYOUT FIXES
   ======================================== */
.row.g-3 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.row.g-3 > [class*="col-"] {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

.col-md-4,
.col-md-6,
.col-md-12 {
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.input-group {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
}

.form-control,
.form-select {
    width: 100%;
    flex: 1;
    min-width: 0;
}

.input-group-text {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .row.g-3 {
        flex-direction: column;
    }
    .col-md-4,
    .col-md-6 {
        width: 100%;
        flex: none;
        max-width: 100%;
    }
    .trip-type-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .trip-btn {
        width: 100%;
    }
}

#formMessage {
    margin: 15px 0;
}

#formMessage .alert {
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
}

#formMessage .btn-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    background: transparent;
    border: none;
    color: inherit;
    opacity: 0.6;
}

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

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



/* Material Icons in Steps */
.step-icon .material-icons {
    font-size: 36px;
    color: var(--navy);
}

@media (max-width: 768px) {
    .step-icon .material-icons {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .step-icon .material-icons {
        font-size: 26px;
    }
}

/* ========================================
   MODERN HOW IT WORKS SECTION
   ======================================== */

.how-it-works-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white), var(--cream));
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.how-it-works-modern::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.how-it-works-modern::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.steps-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Modern Step Card */
.step-card {
    background: var(--white);
    border-radius: 28px;
    padding: 35px 28px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(var(--gold-rgb), 0.08);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.step-card:hover::before {
    transform: scaleX(1);
}

/* Step Number Wrapper */
.step-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.step-count {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.5;
    font-family: 'Playfair Display', serif;
}

.step-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.3;
}

/* Step Icon */
.step-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.3);
}

.step-icon i {
    font-size: 36px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
    color: var(--color-white);
}

/* Typography */
.step-card h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--navy);
}

.step-card p {
    color: var(--olive);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

/* Step Footer */
.step-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.step-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.step-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.step-link:hover {
    color: var(--gold-dark);
}

.step-link:hover i {
    transform: translateX(5px);
}

/* Connecting Line Between Cards (Desktop only) */
@media (min-width: 992px) {
    .steps-modern {
        position: relative;
    }

    .steps-modern::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
        transform: translateY(-50%);
        z-index: 0;
    }

    .step-card {
        z-index: 1;
        background: var(--white);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .steps-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .steps-modern::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works-modern {
        padding: 50px 0;
    }

    .steps-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 28px 22px;
    }

    .step-count {
        font-size: 36px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 30px;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .step-card {
        padding: 25px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .step-icon i {
        font-size: 26px;
    }

    .step-count {
        font-size: 32px;
    }

    .step-line {
        width: 40px;
    }
}

/* ========================================
   CUSTOM CHECKBOX - LUXURY THEME
   ======================================== */

.form-check-label {
    font-size: 13px;
    color: var(--olive);
    cursor: pointer;
}


/* ========================================
   GLOBAL LOADER OVERLAY
   ======================================== */

.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.loader-content {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.loader-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Optional: Loading dots animation */
.loader-text::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* ========================================
   PAGE LOADER (For page refresh/loading)
   ======================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-container {
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.loader-logo {
    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 25px;
    animation: pulse 1.5s infinite;
}

.loader-logo i {
    font-size: 40px;
    color: var(--navy);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.loader-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FORM SUBMISSION LOADER
   ======================================== */

.form-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.loader-modal {
    position: relative;
    width: 90%;
    max-width: 450px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 28px;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 0.3s ease;
}

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

.loader-modal-content {
    text-align: center;
}

.loader-modal-spinner {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-left: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 20px;
    animation: bounce 0.5s ease;
}

.loader-modal-icon i {
    font-size: 28px;
    color: var(--navy);
}

.loader-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.loader-modal-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.loader-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    animation: progress 2.5s ease infinite;
}

@keyframes progress {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

.loader-steps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.loader-steps .step {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.loader-steps .step i {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.3);
}

.loader-steps .step.active {
    color: var(--gold);
}

.loader-steps .step.active i {
    color: var(--gold);
}

.loader-steps .step.completed {
    color: #4ECDC4;
}

.loader-steps .step.completed i {
    color: #4ECDC4;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
    .loader-modal {
        padding: 30px 20px;
        width: 85%;
    }

    .loader-modal-title {
        font-size: 18px;
    }

    .loader-steps {
        flex-direction: column;
        gap: 10px;
    }

    .loader-steps .step {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .loader-steps .step i {
        margin-bottom: 0;
    }
}


/* Toast Container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
}

.toast-notification {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
    font-size: 14px;
    min-width: 280px;
    max-width: 380px;
    font-weight: 500;
}

.toast-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.toast-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Form Loader */
.form-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.loader-modal {
    position: relative;
    width: 90%;
    max-width: 450px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 28px;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 0.3s ease;
}

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

.loader-modal-content {
    text-align: center;
}

.loader-modal-spinner {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-left: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.loader-modal-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.loader-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    animation: progress 2.5s ease infinite;
}

@keyframes progress {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

.loader-steps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.loader-steps .step {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.loader-steps .step i {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.3);
}

.loader-steps .step.active {
    color: var(--gold);
}

.loader-steps .step.active i {
    color: var(--gold);
}

.loader-steps .step.completed {
    color: #4ECDC4;
}

.loader-steps .step.completed i {
    color: #4ECDC4;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .loader-modal {
        padding: 30px 20px;
        width: 85%;
    }

    .loader-modal-title {
        font-size: 18px;
    }

    .loader-steps {
        flex-direction: column;
        gap: 10px;
    }

    .loader-steps .step {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .loader-steps .step i {
        margin-bottom: 0;
    }
}

/* ========================================
   MODAL FORM - MATCH QUICK QUOTE DESIGN
   ======================================== */

/* Modal Container */
.quote-modal-small {
    border-radius: 20px;
    overflow: hidden;
}

/* Modal Header - Match Quick Quote */
.quote-modal-small .modal-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 20px;
    text-align: center;
    border-bottom: none;
}

.quote-modal-small .modal-header-content {
    text-align: center;
    width: 100%;
}

.quote-modal-small .modal-header-content i {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 8px;
}

.quote-modal-small .modal-header-content h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--navy);
    font-weight: 700;
}

.quote-modal-small .modal-header-content p {
    font-size: 12px;
    color: var(--navy);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Modal Body */
.quote-modal-small .modal-body {
    padding: 25px;
    background: rgba(255, 255, 255, 0.98);
}

/* Trip Type Buttons - Same as Quick Quote */
#modalQuoteForm .trip-type-small {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#modalQuoteForm .trip-btn-small {
    flex: 1;
    padding: 10px;
    border: none;
    background: var(--warm-grey);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

#modalQuoteForm .trip-btn-small.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

/* Form Fields - Matching Quick Quote */
#modalQuoteForm .input-group-sm {
    display: flex;
    width: 100%;
}

#modalQuoteForm .input-group-sm .input-group-text {
    padding: 10px 14px;
    font-size: 13px;
    background: var(--warm-grey);
    border-radius: 12px 0 0 12px;
    border: 1px solid #e0e0e0;
    border-right: none;
    color: var(--gold);
}

#modalQuoteForm .input-group-sm .form-control-sm,
#modalQuoteForm .input-group-sm .form-select-sm {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 0 12px 12px 0;
    border: 1px solid #e0e0e0;
    border-left: none;
    flex: 1;
}

#modalQuoteForm .input-group-sm .form-control-sm:focus,
#modalQuoteForm .input-group-sm .form-select-sm:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Date fields row */
#modalQuoteForm .row.g-2 {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

#modalQuoteForm .row.g-2 .col-md-6 {
    flex: 1;
}

/* Passenger Selector - Same as Quick Quote */
.passenger-selector-sm {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.passenger-selector-sm .input-group-sm {
    margin-bottom: 0;
}

.passenger-display {
    cursor: pointer;
    background-color: #fff;
}

.passenger-dropdown-sm {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 15px;
    z-index: 10000;
    display: none;
    border: 1px solid #e0e0e0;
    margin-top: 5px;
}

.passenger-dropdown-sm.show {
    display: block;
}

.passenger-item-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.passenger-item-sm:first-child {
    padding-top: 0;
}

.passenger-item-sm:last-child {
    padding-bottom: 0;
}

.passenger-item-sm span:first-child {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.passenger-controls-sm {
    display: flex;
    align-items: center;
    gap: 12px;
}

.passenger-btn-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.passenger-btn-sm.minus {
    color: #ff6b6b;
}

.passenger-btn-sm.plus {
    color: #2DCF9E;
}

.passenger-btn-sm:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-color: transparent;
}

.passenger-item-sm span:last-child {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

/* Checkbox - Same as Quick Quote */
#modalQuoteForm .form-check {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

#modalQuoteForm .form-check-input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    cursor: pointer;
}

#modalQuoteForm .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

#modalQuoteForm .form-check-label {
    font-size: 12px;
    color: var(--olive);
    cursor: pointer;
}

#modalQuoteForm .form-check-label a {
    color: var(--gold);
    text-decoration: none;
}

#modalQuoteForm .form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button - Same as Quick Quote */
.btn-submit-gold-small {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-gold-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit-gold-small:disabled {
    opacity: 0.7;
    transform: none;
}

/* Suggestions Box */
#modalQuoteForm .suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: -8px;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    color: var(--gold);
    padding-left: 20px;
}

/* Hide number input spinners */
#modalQuoteForm input[type="number"]::-webkit-inner-spin-button,
#modalQuoteForm input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .quote-modal-small .modal-body {
        padding: 20px;
    }

    #modalQuoteForm .row.g-2 {
        flex-direction: column;
        gap: 12px;
    }

    .passenger-item-sm {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .passenger-controls-sm {
        width: 100%;
        justify-content: flex-end;
    }
}
/* ========================================
   MOBILE MENU WITH BOOTSTRAP - SCROLLABLE
   ======================================== */

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 85%;
        max-width: 320px;
        height: 100vh;
        padding: 20px 20px 30px 25px;
        gap: 5px;
        transition: left 0.3s ease-in-out;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
        display: flex !important;
        overflow-y: auto;
        overflow-x: hidden;
    }

    /* Custom scrollbar for mobile menu */
    .nav-menu::-webkit-scrollbar {
        width: 3px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: var(--warm-grey);
        border-radius: 10px;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 10px;
    }

    .nav-menu.show {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        list-style: none;
    }

    .nav-menu a.nav-link {
        display: block;
        font-size: 14px;
        padding: 10px 0;
        color: var(--navy);
        text-decoration: none;
    }

    /* Bootstrap dropdown on mobile */
    .nav-menu .dropdown {
        width: 100%;
        position: relative;
    }

    .nav-menu .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
        background: transparent;
        border: none;
        color: var(--navy);
    }

    .nav-menu .dropdown-toggle::after {
        display: inline-block;
        margin-left: 8px;
        vertical-align: middle;
        content: "";
        border-top: 4px solid;
        border-right: 4px solid transparent;
        border-bottom: 0;
        border-left: 4px solid transparent;
        transition: transform 0.3s ease;
    }

    .nav-menu .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .nav-menu .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
        margin-left: 15px;
        background: rgba(212, 175, 55, 0.05);
        border: none;
        box-shadow: none;
        padding: 5px 0;
        border-radius: 8px;
        transform: none !important;
    }

    .nav-menu .dropdown-item {
        padding: 8px 15px;
        font-size: 13px;
        color: var(--navy);
        white-space: normal;
        word-wrap: break-word;
    }

    .nav-menu .dropdown-item:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold);
        padding-left: 20px;
    }

    .btn-nav {
        text-align: center;
        margin-top: 10px;
        width: 100%;
        display: inline-block;
        padding: 10px 20px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .top-bar {
        padding: 8px 0;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        width: 85%;
        padding: 15px 15px 25px 20px;
        gap: 3px;
    }

    .nav-menu a.nav-link,
    .nav-menu .dropdown-toggle {
        font-size: 13px;
        padding: 8px 0;
    }

    .hamburger {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .btn-nav {
        padding: 8px 16px;
        font-size: 13px;
    }

    .nav-menu .dropdown-item {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Desktop dropdown styles */
@media (min-width: 769px) {
    .nav-menu .dropdown-menu {
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 10px;
    }

    .nav-menu .dropdown-item {
        padding: 8px 20px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .nav-menu .dropdown-item:hover {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        color: var(--gold);
        padding-left: 25px;
    }
}

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

/* Social Media Icons */
.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--gold);
}

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

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* Footer links with icons */
.footer-col ul li a i {
    font-size: 15px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover i {
    margin-right: 12px;
    color: var(--gold);
}

/* Trust Badge */
.footer-trust {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.atol-badge {
    height: 30px;
    width: auto;
}

.footer-trust span {
    font-size: 11px;
    opacity: 0.8;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 24px;
    opacity: 0.7;
}

.payment-methods i {
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Copyright section - make it flexible */
.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }

    .payment-methods {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-trust {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .payment-methods {
        font-size: 20px;
    }
}
/* ========================================
   DESTINATIONS PAGE FIXES
   ======================================== */

/* Container and layout */
.destinations-page {
    padding: 60px 0;
    background: var(--white);
}

/* Filter Section */
.destinations-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--warm-grey);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--gold-rgb), 0.3);
}

/* Destinations Grid - using existing styles but ensuring consistency */
.destinations-page .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Destination Card - ensure proper display and hiding */
.destination-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid var(--gold);
}

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

/* Hide cards properly when filtered */
.destination-card[style*="display: none"] {
    display: none !important;
}

/* Image container */
.destination-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

/* Content area */
.destination-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Title row with region badge */
.destination-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.destination-title i {
    color: var(--gold);
    font-size: 16px;
}

.destination-title h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
    color: var(--navy);
}

.destination-region {
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    margin-left: auto;
}

/* Description */
.destination-description {
    color: var(--olive);
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
}

/* Highlights tags */
.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.highlight-tag {
    background: var(--warm-grey);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.highlight-tag i {
    font-size: 10px;
    color: var(--gold);
}

/* Book button */
.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    margin-top: auto;
    width: fit-content;
}

.btn-book:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.disclaimer-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(var(--gold-rgb), 0.1);
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.disclaimer-icon i {
    font-size: 28px;
    color: var(--gold);
}

.disclaimer-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.disclaimer-card p {
    color: var(--olive);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.disclaimer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

.disclaimer-badge i {
    font-size: 16px;
}

/* ========================================
   RESPONSIVE DESTINATIONS PAGE
   ======================================== */

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

@media (max-width: 768px) {
    .destinations-page {
        padding: 40px 0;
    }

    .destinations-filter {
        gap: 10px;
        margin-bottom: 35px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .destinations-page .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-img {
        height: 220px;
    }

    .destination-content {
        padding: 18px;
    }

    .destination-title h3 {
        font-size: 1.2rem;
    }

    .destination-region {
        margin-left: 0;
    }

    .disclaimer-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .destinations-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .destination-img {
        height: 200px;
    }

    .destination-highlights {
        gap: 6px;
    }

    .highlight-tag {
        padding: 4px 10px;
        font-size: 10px;
    }

    .btn-book {
        padding: 8px 18px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .disclaimer-card h3 {
        font-size: 1.2rem;
    }

    .disclaimer-card p {
        font-size: 13px;
    }

    .disclaimer-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
}