/* ========================================
   EXPEDIA WHITE/BLUE THEME CSS
   Fully Responsive | Modern Travel Portal
   ======================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary-blue: #003580;
    --secondary-blue: #0071c2;
    --cta-yellow: #febb02;
    --cta-hover: #e0a800;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --text-muted: #8b8b8b;
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --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;
    --blue-rgb: 0, 53, 128;
    --yellow-rgb: 254, 187, 2;
}

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

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    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(--text-dark);
}

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

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

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    padding: 10px 0;
    color: var(--bg-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(--cta-yellow);
}

/* Navbar */
.navbar {
    background: var(--bg-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);
}

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

.logo img {
    height: 45px;
    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(--text-dark);
    transition: var(--transition);
}

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

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

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

/* Hamburger */
.hamburger {
    display: none;
    background: var(--secondary-blue);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    color: white;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}

/* ========================================
   HERO SECTION - EXPEDIA STYLE
   ======================================== */
.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(0, 53, 128, 0.92), rgba(0, 113, 194, 0.88));
}

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

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

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

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

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

.text-blue {
    background: linear-gradient(135deg, var(--cta-yellow), #ffe066);
    -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(--cta-yellow);
}

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

.btn-primary-blue {
    background: linear-gradient(135deg, var(--cta-yellow), var(--cta-hover));
    color: var(--text-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

.btn-outline-blue {
    background: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    padding: 12px 28px;
    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-blue:hover {
    background: var(--bg-white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

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

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

.hero-card-header i {
    font-size: 32px;
    color: var(--secondary-blue);
    margin-bottom: 8px;
}

.hero-card-header h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.hero-card-header p {
    font-size: 11px;
    opacity: 0.7;
    color: var(--text-light);
}

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

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

.trip-btn-small i {
    margin-right: 6px;
}

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

/* Quick Quote Form */
.quick-quote-form-small {
    display: none;
}

.quick-quote-form-small.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Form Fields */
.form-field-small {
    position: relative;
    margin-bottom: 12px;
}

.form-field-small i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-blue);
    font-size: 13px;
    z-index: 1;
}

.form-field-small input,
.form-field-small select {
    width: 100%;
    padding: 12px 12px 12px 42px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 13px;
    transition: var(--transition);
    background: white;
}

.form-field-small input:focus,
.form-field-small select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 194, 0.1);
}

.form-row-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

/* Traveler Summary */
.traveler-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 12px 12px 42px;
    cursor: pointer;
    position: relative;
}

.traveler-summary i:first-child {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-blue);
}

.traveler-summary span {
    flex: 1;
    font-size: 13px;
    color: var(--text-dark);
}

.traveler-summary i:last-child {
    position: static;
    font-size: 11px;
    color: var(--text-light);
}

/* Traveler Dropdown */
.traveler-dropdown-small {
    position: fixed;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px;
    width: 260px;
    z-index: 10000;
    display: none;
    border: 1px solid var(--border-color);
}

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

.traveler-item-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.traveler-controls button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
}

.traveler-controls button:hover {
    background: var(--secondary-blue);
    color: white;
    border-color: var(--secondary-blue);
}

/* Submit Button */
.btn-submit-blue-small {
    background: linear-gradient(135deg, var(--cta-yellow), var(--cta-hover));
    color: var(--text-dark);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Checkbox Styling */
.form-check {
    margin: 15px 0;
}

.form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.form-check-input:checked {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.form-check-label {
    font-size: 12px;
    color: var(--text-light);
}

.form-check-label a {
    color: var(--secondary-blue);
    text-decoration: none;
}

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

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

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
}

.suggestion-item:hover {
    background: rgba(0, 113, 194, 0.05);
    color: var(--secondary-blue);
    padding-left: 20px;
}

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

.trust-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 113, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.trust-icon i {
    font-size: 28px;
    color: var(--secondary-blue);
}

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

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

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 113, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

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

/* ========================================
   DESTINATIONS SECTION
   ======================================== */
.destinations-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.destination-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--secondary-blue);
}

.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: var(--cta-yellow);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.destination-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: white;
    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(--secondary-blue);
    font-size: 16px;
}

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

.destination-description {
    color: var(--text-light);
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
}

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

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-book:hover {
    background: var(--primary-blue);
    transform: translateX(5px);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.why-content .section-badge {
    display: inline-block;
    background: rgba(0, 113, 194, 0.1);
    color: var(--secondary-blue);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.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: rgba(0, 113, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.why-text {
    flex: 1;
}

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

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

.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(--bg-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(--cta-yellow);
}

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

/* ========================================
   HOW IT WORKS MODERN
   ======================================== */
.how-it-works-modern {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.step-card {
    background: var(--bg-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 var(--border-light);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
    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 {
    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(--secondary-blue), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.5;
}

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

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

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 113, 194, 0.1);
    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(--secondary-blue), var(--primary-blue));
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 113, 194, 0.3);
}

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

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

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

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

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 25px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-light);
}

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

.testimonial-icon {
    font-size: 40px;
    color: var(--secondary-blue);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: var(--cta-yellow);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: var(--text-light);
}

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

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

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

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

.newsletter-wrapper p {
    opacity: 0.9;
    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: var(--cta-yellow);
    color: var(--text-dark);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-banner-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--primary-blue);
    color: var(--bg-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: 50px;
    margin-bottom: 15px;
}

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

.footer-col h4 {
    color: var(--cta-yellow);
    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(--cta-yellow);
    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(--cta-yellow);
}

.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(--bg-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--cta-yellow);
    color: var(--primary-blue);
    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: white;
}

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

.call-float {
    background: var(--cta-yellow);
    font-size: 28px;
    color: var(--text-dark);
    animation: pulse 2s infinite;
}

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

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

.quote-modal-small .modal-header {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    padding: 20px;
}

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

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

.quote-modal-small .modal-header-content h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: white;
}

.quote-modal-small .modal-header-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

    .hero-title { font-size: 2rem; }

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

@media (max-width: 768px) {
    .hero-new {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-title { font-size: 1.8rem; }

    .features-grid,
    .destinations-grid,
    .testimonials-grid,
    .steps-modern {
        grid-template-columns: 1fr;
    }

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

    .trust-grid {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-banner-form {
        flex-direction: column;
        padding: 0 20px;
    }

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

    .btn-primary-blue,
    .btn-outline-blue {
        width: 100%;
        justify-content: center;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: 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;
    }

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

@media (max-width: 576px) {
    .hero-title { font-size: 1.5rem; }
    .section-title { font-size: 1.5rem; }

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

    .trip-btn-small {
        font-size: 11px;
        padding: 8px;
    }

    .destination-img {
        height: 200px;
    }

    .float-buttons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

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

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

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

.fade-up {
    animation: fadeIn 0.5s ease forwards;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-gold { color: var(--cta-yellow); }
.text-blue { color: var(--secondary-blue); }

.section-badge {
    display: inline-block;
    background: rgba(0, 113, 194, 0.1);
    color: var(--secondary-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }

/* Fix for destination images */
.destination-img {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.destination-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #febb02;
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.destination-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #003580;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

/* Fix for why choose us section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.why-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-badge i {
    font-size: 24px;
    color: #febb02;
}

.why-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Fix for steps section */
.how-it-works-modern {
    padding: 80px 0;
    background: #f5f7fa;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 113, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 36px;
    color: #0071c2;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-card p {
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.6;
}

/* Fix for modal */
.quote-modal-small .modal-header {
    background: linear-gradient(135deg, #0071c2, #003580);
    padding: 20px;
    border-bottom: none;
}

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

.quote-modal-small .modal-header-content i {
    font-size: 32px;
    color: #febb02;
    margin-bottom: 10px;
}

.quote-modal-small .modal-header-content h4 {
    color: white;
    margin-bottom: 5px;
}

.quote-modal-small .modal-header-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Fix for newsletter section */
.newsletter-section {
    background: linear-gradient(135deg, #003580, #0071c2);
    padding: 60px 0;
}

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

.newsletter-icon i {
    font-size: 48px;
    color: #febb02;
    margin-bottom: 20px;
}

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

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

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

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

.newsletter-banner-form button {
    background: #febb02;
    color: #1a1a1a;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive fixes */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

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

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

    .why-choose-us .row {
        flex-direction: column;
    }

    .why-content {
        margin-bottom: 30px;
        text-align: center;
    }

    .why-item {
        text-align: left;
    }

    .newsletter-banner-form {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-left {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}
/* Ensure only active form is visible */
.quick-quote-form-small {
    display: none !important;
}

.quick-quote-form-small.active {
    display: block !important;
}

.booking-form {
    display: none !important;
}

.booking-form.active {
    display: block !important;
}

/* ========================================
   FIXED HERO SECTION STYLES
   ======================================== */

/* Hero Section */
.hero-new {
    position: relative;
    min-height: auto;
    padding: 60px 0;
    background: linear-gradient(135deg, #003580, #0071c2);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
    align-items: center;
}

/* Hero Card - Smaller */
.hero-card-small {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.hero-card-header i {
    font-size: 28px;
    color: #0071c2;
    margin-bottom: 5px;
}

.hero-card-header h4 {
    font-size: 16px;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.hero-card-header p {
    font-size: 11px;
    color: #6b6b6b;
    margin: 0;
}

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

.trip-btn-small {
    flex: 1;
    padding: 8px;
    border: none;
    background: #f0f0f0;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trip-btn-small i {
    margin-right: 4px;
}

.trip-btn-small.active {
    background: #0071c2;
    color: white;
}

/* Trip Selector (Round Trip / One Way) */
.trip-selector-small {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.trip-option {
    flex: 1;
    padding: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trip-option.active {
    background: #febb02;
    border-color: #febb02;
    color: #1a1a1a;
}

/* Form Fields - Smaller */
.form-field-small {
    position: relative;
    margin-bottom: 10px;
}

.form-field-small i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0071c2;
    font-size: 12px;
    z-index: 1;
}

.form-field-small input,
.form-field-small select {
    width: 100%;
    padding: 8px 8px 8px 32px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
    background: white;
}

.form-field-small input:focus,
.form-field-small select:focus {
    outline: none;
    border-color: #0071c2;
    box-shadow: 0 0 0 2px rgba(0, 113, 194, 0.1);
}

.form-row-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0;
}

/* Traveler Summary - Smaller */
.traveler-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 8px 8px 32px;
    cursor: pointer;
    position: relative;
}

.traveler-summary i:first-child {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0071c2;
}

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

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

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

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

.traveler-item-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

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

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

.traveler-controls button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.traveler-controls button:hover {
    background: #0071c2;
    color: white;
    border-color: #0071c2;
}

/* Checkbox - Smaller */
.form-check-small {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-check-small input {
    width: 14px;
    height: 14px;
    margin: 0;
    cursor: pointer;
}

.form-check-small label {
    font-size: 10px;
    color: #6b6b6b;
    cursor: pointer;
}

.form-check-small label a {
    color: #0071c2;
    text-decoration: none;
}

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

/* Submit Button - Smaller */
.btn-submit-small {
    background: #febb02;
    color: #1a1a1a;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 5px;
}

.btn-submit-small:hover {
    background: #e0a800;
    transform: translateY(-1px);
}

/* Hide/show forms */
.quick-quote-form-small {
    display: none;
}

.quick-quote-form-small.active {
    display: block;
}

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

    .hero-left {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

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

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

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

    .trip-btn-small {
        font-size: 11px;
        padding: 6px;
    }

    .trip-option {
        font-size: 10px;
        padding: 5px;
    }
}

/* ========================================
   ANNOUNCEMENT BAR - CLEAN VERSION
   ======================================== */
.announcement-bar {
    background: #003580;
    color: white;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.announcement-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-left i {
    color: #febb02;
    font-size: 12px;
}

.announcement-left span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

.announcement-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.announcement-phone,
.announcement-wa {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.announcement-phone:hover,
.announcement-wa:hover {
    color: #febb02;
    transform: translateY(-1px);
}

.announcement-phone i,
.announcement-wa i {
    font-size: 12px;
}

.announcement-atol {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(254, 187, 2, 0.15);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #febb02;
}

.announcement-atol i {
    font-size: 11px;
}

/* ========================================
   MAIN NAVIGATION
   ======================================== */
.navbar {
    background: #003580;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(0, 53, 128, 0.98);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: white !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.5rem;
    color: #febb02;
}

.navbar-nav {
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 14px;
}

.nav-link:hover {
    color: #febb02 !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #febb02 !important;
    background: rgba(254, 187, 2, 0.1);
}

.btn-quote-nav {
    background: #febb02;
    color: #1a1a1a;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-quote-nav:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 187, 2, 0.3);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ========================================
   RESPONSIVE HEADER
   ======================================== */
@media (max-width: 992px) {
    .announcement-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .announcement-left,
    .announcement-right {
        justify-content: center;
    }

    .navbar-nav {
        padding: 15px 0;
        gap: 8px;
    }

    .nav-link {
        justify-content: center;
    }

    .btn-quote-nav {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: 6px 0;
    }

    .announcement-left span,
    .announcement-phone,
    .announcement-wa {
        font-size: 10px;
    }

    .announcement-atol {
        font-size: 10px;
        padding: 3px 8px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-brand i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .announcement-right {
        flex-direction: column;
        gap: 8px;
    }

    .announcement-left {
        flex-direction: column;
        text-align: center;
    }
}

.trip-quick-small {
    flex: 1;
    padding: 8px;
    border: none;
    background: #f0f0f0;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trip-quick-small i {
    margin-right: 4px;
}

.trip-quick-small.active {
    background: #0071c2;
    color: white;
}

/* ========================================
   BESTSELLING HOTELS SECTION
   ======================================== */
.bestselling-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.hotel-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

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

.hotel-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cta-yellow);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hotel-content {
    padding: 15px;
}

.hotel-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-price {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.original-price {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-blue);
}

.per-night {
    font-size: 10px;
    color: var(--text-light);
}

.btn-view-deal {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-view-deal:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* ========================================
   POPULAR DESTINATIONS SECTION
   ======================================== */
.popular-destinations-section {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.dest-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.dest-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 15px;
}

.dest-price {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.dest-price::before {
    content: 'Starting ';
    font-size: 11px;
    font-weight: normal;
}

.dest-card-content {
    padding: 18px;
}

.dest-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.dest-rating {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.dest-rating i {
    color: var(--cta-yellow);
    font-size: 11px;
}

.dest-rating span {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 4px;
}

.dest-card-content p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.4;
}

.btn-explore-dest {
    width: 100%;
    background: var(--secondary-blue);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-explore-dest:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Section Headers */
.section-badge {
    display: inline-block;
    background: rgba(0, 113, 194, 0.1);
    color: var(--secondary-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .bestselling-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .bestselling-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .bestselling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .destinations-card-grid {
        grid-template-columns: 1fr;
    }

    .hotel-image {
        height: 160px;
    }

    .dest-card-image {
        height: 200px;
    }

    .section-title {
        font-size: 24px;
    }

    .hotel-content h3 {
        font-size: 13px;
    }

    .current-price {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .bestselling-grid {
        grid-template-columns: 1fr;
    }

    .bestselling-section,
    .popular-destinations-section {
        padding: 40px 0;
    }

    .hotel-image {
        height: 200px;
    }
}

/* ========================================
   POPULAR DESTINATIONS - SAME DESIGN AS HOTELS
   ======================================== */
.popular-destinations-section {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.dest-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.dest-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.dest-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cta-yellow);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dest-card-content {
    padding: 15px;
}

.dest-card-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dest-price-info {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.dest-original-price {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.dest-current-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-blue);
}

.dest-per-night {
    font-size: 10px;
    color: var(--text-light);
}

.btn-explore-dest {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-explore-dest:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .destinations-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 768px) {
    .destinations-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dest-card-image {
        height: 180px;
    }

    .dest-card-content h3 {
        font-size: 13px;
    }

    .dest-current-price {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .destinations-card-grid {
        grid-template-columns: 1fr;
    }

    .popular-destinations-section {
        padding: 40px 0;
    }

    .dest-card-image {
        height: 200px;
    }
}

.destinations-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Responsive for 5 columns */
@media (max-width: 1200px) {
    .destinations-card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .destinations-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destinations-card-grid {
        grid-template-columns: 1fr;
    }
}/* ========================================
   LOAD MORE BUTTON
   ======================================== */
.load-more-container {
    margin-top: 40px;
    text-align: center;
}

.btn-load-more {
    background: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-load-more:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 194, 0.3);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more.loaded i {
    transform: rotate(180deg);
}

/* Hidden Destinations */
.hidden-destination {
    display: none;
}

.destinations-card-grid.show-all .hidden-destination {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

/* ========================================
   POPULAR DESTINATIONS - SAME DESIGN AS HOTELS
   ======================================== */
.popular-destinations-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.destinations-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dest-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.dest-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.dest-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cta-yellow);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dest-card-content {
    padding: 15px;
}

.dest-card-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dest-price-info {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.dest-original-price {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.dest-current-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-blue);
}

.dest-per-night {
    font-size: 10px;
    color: var(--text-light);
}

.btn-explore-dest {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-explore-dest:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .destinations-card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .destinations-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dest-card-image {
        height: 180px;
    }

    .dest-card-content h3 {
        font-size: 13px;
    }

    .dest-current-price {
        font-size: 18px;
    }

    .btn-load-more {
        padding: 10px 24px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .destinations-card-grid {
        grid-template-columns: 1fr;
    }

    .popular-destinations-section {
        padding: 40px 0;
    }

    .dest-card-image {
        height: 200px;
    }

    .load-more-container {
        margin-top: 30px;
    }
}

/* ========================================
   HERO BUTTONS - FIXED
   ======================================== */

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Primary Button - Gold/Yellow */
.btn-primary-gold {
    background: linear-gradient(135deg, #febb02, #e0a800);
    color: #1a1a1a;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-gold i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-primary-gold:hover {
    background: linear-gradient(135deg, #e0a800, #c99600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 187, 2, 0.3);
}

.btn-primary-gold:hover i {
    transform: translateX(3px);
}

.btn-primary-gold:active {
    transform: translateY(0);
}

/* Outline Button - Gold Border */
.btn-outline-gold {
    background: transparent;
    border: 2px solid #febb02;
    color: #febb02;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline-gold i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-outline-gold:hover {
    background: #febb02;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 187, 2, 0.2);
}

.btn-outline-gold:hover i {
    transform: translateX(3px);
}

.btn-outline-gold:active {
    transform: translateY(0);
}

/* ========================================
   ALTERNATIVE - BLUE PRIMARY BUTTONS (if needed)
   ======================================== */

.btn-primary-blue {
    background: linear-gradient(135deg, #0071c2, #003580);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-blue:hover {
    background: linear-gradient(135deg, #005fa8, #002a66);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 194, 0.3);
}

.btn-outline-blue {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline-blue:hover {
    background: white;
    color: #003580;
    transform: translateY(-2px);
}

/* ========================================
   SMALL BUTTONS (for cards)
   ======================================== */

.btn-small-gold {
    background: #febb02;
    color: #1a1a1a;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

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

.btn-small-blue {
    background: #0071c2;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

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

/* ========================================
   RESPONSIVE BUTTONS
   ======================================== */

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-gold,
    .btn-outline-gold,
    .btn-primary-blue,
    .btn-outline-blue {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .btn-primary-gold i,
    .btn-outline-gold i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .btn-primary-gold,
    .btn-outline-gold {
        padding: 10px 20px;
        font-size: 13px;
    }
}


/* ========================================
   FOOTER - EXPEDIA STYLE
   ======================================== */

.footer {
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 50px 0 0;
    margin-top: 60px;
}

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

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--cta-yellow);
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
}

.footer-description {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

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

.social-icon:hover {
    background: var(--cta-yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h4 {
    color: var(--cta-yellow);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--cta-yellow);
    transform: translateX(5px);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact li i {
    width: 16px;
    color: var(--cta-yellow);
    font-size: 14px;
    margin-top: 2px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--cta-yellow);
}

.footer-contact li span {
    flex: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

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

.footer-bottom-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

.trust-badge i {
    font-size: 10px;
    color: var(--cta-yellow);
}

/* ========================================
   RESPONSIVE FOOTER
   ======================================== */

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

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

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

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 576px) {
    .footer-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .trust-badge {
        width: fit-content;
    }

    .footer-contact li {
        font-size: 12px;
    }
}

/* ========================================
   UNIVERSAL PAGE STYLES
   ======================================== */

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-hero-small {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 0 50px;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Page Search Section */
.page-search-section {
    padding: 40px 0 60px;
    background: var(--bg-light);
}

.search-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.flight-search-form .search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.search-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.search-group label i {
    color: var(--secondary-blue);
    margin-right: 6px;
}

.search-group input,
.search-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 194, 0.1);
}

.btn-search-large {
    background: var(--cta-yellow);
    color: var(--text-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-search-large:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

/* Traveler Popup */
.traveler-input {
    position: relative;
}

.traveler-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    z-index: 100;
    display: none;
    box-shadow: var(--shadow-md);
}

.traveler-input.active .traveler-popup {
    display: block;
}

.traveler-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.traveler-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.traveler-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
}

.traveler-btn:hover {
    background: var(--secondary-blue);
    color: white;
}

/* Popular Routes */
.popular-routes-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.route-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary-blue);
}

.route-card i {
    font-size: 28px;
    color: var(--secondary-blue);
}

.route-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.route-info p {
    font-size: 12px;
    color: var(--text-light);
}

.btn-route {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-route:hover {
    background: var(--secondary-blue);
}

/* About Page Styles */
.about-overview {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.about-content h2 {
    font-size: 32px;
    margin: 15px 0 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-blue);
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* Mission Vision */
.mission-vision {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.mv-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

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

.mv-card i {
    font-size: 48px;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Full */
.why-choose-full {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 113, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

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

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 11px;
    color: var(--secondary-blue);
    font-weight: 600;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-banner h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-banner p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-cta-large {
    background: var(--cta-yellow);
    color: var(--text-dark);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

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

.cta-form button {
    background: var(--cta-yellow);
    color: var(--text-dark);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-form button:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
    background: var(--bg-light);
}

.legal-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-blue);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cta-yellow);
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--secondary-blue);
}

.legal-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-card ul {
    margin: 15px 0 15px 20px;
}

.legal-card ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.legal-note {
    background: rgba(254, 187, 2, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.legal-note i {
    font-size: 24px;
    color: var(--cta-yellow);
}

.legal-note p {
    margin: 0;
    flex: 1;
}

.cookie-table {
    margin: 25px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid,
    .features-grid-full,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-content h1 {
        font-size: 36px;
    }
}

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

    .page-hero-content h1 {
        font-size: 28px;
    }

    .page-hero-content p {
        font-size: 14px;
    }

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

    .mv-grid,
    .features-grid-full,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .legal-card {
        padding: 25px;
    }

    .legal-card h2 {
        font-size: 20px;
    }

    .cta-form {
        flex-direction: column;
        padding: 0 20px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .route-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .legal-note {
        flex-direction: column;
    }
}
/* ========================================
   TRAVEL STYLES SECTION (EXPEDIA STYLE)
   ======================================== */

.travel-styles-section {
    padding: 60px 0;
    background: var(--bg-light);
}

/* Tabs Styling */
.travel-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.travel-tab {
    background: none;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.travel-tab i {
    font-size: 14px;
}

.travel-tab:hover {
    color: var(--secondary-blue);
    background: rgba(0, 113, 194, 0.05);
}

.travel-tab.active {
    color: var(--secondary-blue);
    background: rgba(0, 113, 194, 0.1);
    position: relative;
}

.travel-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-blue);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Carousel */
.hotels-carousel {
    position: relative;
    margin-top: 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding: 10px 5px;
}

.carousel-track::-webkit-scrollbar {
    height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: var(--secondary-blue);
    border-radius: 10px;
}

/* Hotel Cards */
.hotel-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.hotel-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-blue);
}

.hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.hotel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cta-yellow);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hotel-info {
    padding: 15px;
}

.hotel-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.hotel-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.hotel-price {
    margin-bottom: 12px;
}

.hotel-price .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-blue);
}

.hotel-price .per-night {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 4px;
}

.btn-hotel {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hotel:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.carousel-nav:hover {
    background: var(--secondary-blue);
    color: white;
    border-color: var(--secondary-blue);
}

.carousel-nav.prev {
    left: -18px;
}

.carousel-nav.next {
    right: -18px;
}

/* Hide scrollbar for cleaner look on desktop */
@media (min-width: 768px) {
    .carousel-track {
        scrollbar-width: thin;
    }
}

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

    .travel-tabs {
        gap: 6px;
    }

    .travel-tab {
        padding: 6px 16px;
        font-size: 12px;
    }

    .travel-tab i {
        font-size: 12px;
    }

    .hotel-item {
        flex: 0 0 260px;
    }

    .hotel-image {
        height: 180px;
    }

    .carousel-nav.prev {
        left: -10px;
    }

    .carousel-nav.next {
        right: -10px;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .travel-tabs {
        justify-content: center;
    }

    .hotel-item {
        flex: 0 0 240px;
    }

    .hotel-info h3 {
        font-size: 14px;
    }

    .hotel-price .price {
        font-size: 18px;
    }
}
/* ========================================
   TRAVEL STYLES SECTION - COMPLETE FIX
   ======================================== */

.travel-styles-section {
    padding: 60px 0;
    background: var(--bg-light);
}

/* Tabs Styling */
.travel-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.travel-tab {
    background: none;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.travel-tab i {
    font-size: 14px;
}

.travel-tab:hover {
    color: var(--secondary-blue);
    background: rgba(0, 113, 194, 0.05);
}

.travel-tab.active {
    color: var(--secondary-blue);
    background: rgba(0, 113, 194, 0.1);
}

.travel-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-blue);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Carousel Container */
.hotels-carousel {
    position: relative;
    margin-top: 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding: 10px 5px;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
    height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: var(--secondary-blue);
    border-radius: 10px;
}

/* Hotel Cards */
.hotel-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.hotel-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-blue);
}

.hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.hotel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cta-yellow);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hotel-info {
    padding: 15px;
}

.hotel-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.hotel-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-price {
    margin-bottom: 12px;
}

.hotel-price .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-blue);
}

.hotel-price .per-night {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 4px;
}

.btn-hotel {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hotel:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.carousel-nav:hover {
    background: var(--secondary-blue);
    color: white;
    border-color: var(--secondary-blue);
}

.carousel-nav.prev {
    left: -18px;
}

.carousel-nav.next {
    right: -18px;
}

/* Carousel Controls Visibility */
.carousel-nav {
    opacity: 1;
    visibility: visible;
}

.carousel-nav.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 113, 194, 0.1);
    color: var(--secondary-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hotel-item {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .travel-styles-section {
        padding: 40px 0;
    }

    .travel-tabs {
        gap: 6px;
        justify-content: center;
    }

    .travel-tab {
        padding: 8px 16px;
        font-size: 12px;
    }

    .travel-tab i {
        font-size: 12px;
    }

    .hotel-item {
        flex: 0 0 260px;
    }

    .hotel-image {
        height: 180px;
    }

    .carousel-nav.prev {
        left: -10px;
    }

    .carousel-nav.next {
        right: -10px;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .travel-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .travel-tab {
        padding: 6px 14px;
        font-size: 11px;
    }

    .hotel-item {
        flex: 0 0 240px;
    }

    .hotel-info h3 {
        font-size: 14px;
    }

    .hotel-price .price {
        font-size: 18px;
    }

    .carousel-nav {
        display: none;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make sure carousel navigation is always visible */
.carousel-nav {
    opacity: 1 !important;
    visibility: visible !important;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav.hidden {
    display: none !important;
}

@media (max-width: 576px) {
    .carousel-nav {
        display: flex !important;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .carousel-nav.prev {
        left: -8px;
    }

    .carousel-nav.next {
        right: -8px;
    }
}
/* ========================================
   COMPLETE FLIGHTS PAGE CSS
   ======================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Search Section */
.page-search-section {
    padding: 40px 0 60px;
    background: var(--bg-light);
}

.search-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.flight-search-form .search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.search-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.search-group label i {
    color: var(--secondary-blue);
    margin-right: 6px;
}

.search-group input,
.search-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 194, 0.1);
}

.btn-search-large {
    background: var(--cta-yellow);
    color: var(--text-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-search-large:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

/* Traveler Popup */
.traveler-input {
    position: relative;
}

.traveler-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    z-index: 100;
    display: none;
    box-shadow: var(--shadow-md);
}

.traveler-input.active .traveler-popup {
    display: block;
}

.traveler-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.traveler-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.traveler-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
}

.traveler-btn:hover {
    background: var(--secondary-blue);
    color: white;
}

/* Popular Routes */
.popular-routes-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.route-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary-blue);
}

.route-card i {
    font-size: 28px;
    color: var(--secondary-blue);
}

.route-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.route-info p {
    font-size: 12px;
    color: var(--text-light);
}

.btn-route {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-route:hover {
    background: var(--secondary-blue);
}

/* Featured Deals */
.featured-deals-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.deal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.deal-image {
    position: relative;
    height: 200px;
}

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

.deal-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cta-yellow);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.deal-content {
    padding: 15px;
}

.deal-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.deal-route {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.deal-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.deal-price .original {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.deal-price .current {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-blue);
}

.btn-deal {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-deal:hover {
    background: var(--secondary-blue);
}

/* ========================================
   INFINITE SLIDER STYLES
   ======================================== */

.travel-styles-section {
    padding: 60px 0;
    background: var(--bg-light);
}

/* Tabs */
.travel-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.travel-tab {
    background: none;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.travel-tab i {
    font-size: 14px;
}

.travel-tab:hover {
    color: var(--secondary-blue);
    background: rgba(0, 113, 194, 0.05);
}

.travel-tab.active {
    color: var(--secondary-blue);
    background: rgba(0, 113, 194, 0.1);
}

.travel-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-blue);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Infinite Slider Container */
.infinite-slider-container {
    position: relative;
    margin: 20px 0;
    padding: 0 40px;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

/* Slide Items */
.slide-item {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}

/* Hotel Cards */
.hotel-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    height: 100%;
}

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

.hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.hotel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cta-yellow);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.hotel-info {
    padding: 15px;
}

.hotel-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hotel-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-price {
    margin-bottom: 12px;
}

.hotel-price .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-blue);
}

.hotel-price .per-night {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 4px;
}

.btn-hotel {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hotel:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.slider-nav:hover {
    background: var(--secondary-blue);
    color: white;
    border-color: var(--secondary-blue);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--secondary-blue);
    width: 25px;
    border-radius: 5px;
}

.dot:hover {
    background: var(--secondary-blue);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 113, 194, 0.1);
    color: var(--secondary-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

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

.cta-form button {
    background: var(--cta-yellow);
    color: var(--text-dark);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-form button:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .slide-item {
        flex: 0 0 calc(33.33% - 14px);
    }
}

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

    .slide-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 32px;
    }

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

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

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

    .travel-tabs {
        gap: 5px;
    }

    .travel-tab {
        padding: 6px 12px;
        font-size: 11px;
    }

    .travel-tab i {
        font-size: 11px;
    }

    .infinite-slider-container {
        padding: 0 30px;
    }

    .slide-item {
        flex: 0 0 calc(100% - 0px);
    }

    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .cta-form {
        flex-direction: column;
        padding: 0 20px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .page-hero-content h1 {
        font-size: 24px;
    }

    .page-hero-content p {
        font-size: 14px;
    }

    .search-wrapper {
        padding: 20px;
    }

    .infinite-slider-container {
        padding: 0 20px;
    }

    .hotel-image {
        height: 180px;
    }

    .hotel-price .price {
        font-size: 18px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SMALL HORIZONTAL FLIGHT FORM
   ======================================== */

.hero-horizontal {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 40px 0;
    position: relative;
}

.hero-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&h=400&fit=crop') center/cover no-repeat;
    opacity: 0.1;
}

.horizontal-form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.horizontal-header {
    text-align: center;
    margin-bottom: 20px;
}

.horizontal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.horizontal-header p {
    font-size: 12px;
    color: var(--text-light);
}

/* Trip Type - TOP */
.trip-type-top {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.trip-top-btn {
    background: var(--bg-light);
    border: none;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trip-top-btn i {
    font-size: 11px;
}

.trip-top-btn.active {
    background: var(--secondary-blue);
    color: white;
}

.trip-top-btn:hover:not(.active) {
    background: rgba(0, 113, 194, 0.1);
    color: var(--secondary-blue);
}

/* Form Rows */
.form-horizontal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.form-horizontal-row:last-child {
    margin-bottom: 0;
}

/* Form Fields - SMALLER */
.form-horizontal-field {
    flex: 1;
    min-width: 130px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 5px 12px;
    transition: all 0.3s;
}

.form-horizontal-field:focus-within {
    background: white;
    box-shadow: 0 0 0 2px rgba(0, 113, 194, 0.15);
}

.field-icon {
    color: var(--secondary-blue);
    font-size: 14px;
    width: 24px;
    text-align: center;
}

.field-content {
    flex: 1;
}

.field-content label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.field-content input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 4px 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
}

.field-content input::placeholder {
    color: #aaa;
    font-weight: normal;
    font-size: 11px;
}

/* Date Inputs - NATIVE DATE PICKER */
.date-input {
    cursor: pointer;
}

/* Trip Type Field - Smaller */
.trip-buttons-horiz {
    display: flex;
    gap: 6px;
}

.trip-horiz {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-light);
}

.trip-horiz.active {
    background: var(--secondary-blue);
    color: white;
}

/* Traveler Selector - SMALLER */
.traveler-horiz-selector {
    position: relative;
}

.traveler-horiz-selector input {
    cursor: pointer;
    font-size: 11px;
    padding: 3px 0;
}

.traveler-horiz-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px;
    margin-top: 6px;
    z-index: 100;
    display: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    min-width: 190px;
}

.traveler-horiz-selector.active .traveler-horiz-dropdown {
    display: block;
}

.traveler-horiz-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.traveler-horiz-item span {
    font-size: 11px;
    font-weight: 500;
}

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

.traveler-horiz-controls button {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.3s;
}

.traveler-horiz-controls button:hover {
    background: var(--secondary-blue);
    color: white;
    border-color: var(--secondary-blue);
}

.traveler-horiz-controls span {
    min-width: 22px;
    text-align: center;
    font-size: 12px;
}

/* Terms Field */
.terms-field {
    flex: 0.4;
    min-width: 100px;
    justify-content: center;
    background: transparent;
}

.checkbox-horiz {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 10px;
    color: var(--text-light);
}

.checkbox-horiz input {
    width: 14px;
    height: 14px;
    margin: 0;
    cursor: pointer;
}

.checkbox-horiz a {
    color: var(--secondary-blue);
    text-decoration: none;
}

/* Submit Field */
.submit-field {
    flex: 0.4;
    min-width: 110px;
    background: transparent;
    padding: 0;
}

.submit-horiz-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--cta-yellow), var(--cta-hover));
    color: var(--text-dark);
    border: none;
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.submit-horiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(254, 187, 2, 0.3);
}

.submit-horiz-btn:disabled {
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
}

/* Passenger Row */
.passenger-row {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .form-horizontal-row {
        flex-wrap: wrap;
    }

    .form-horizontal-field {
        flex: 1 1 calc(33.33% - 12px);
        min-width: 140px;
    }

    .terms-field,
    .submit-field {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .hero-horizontal {
        padding: 30px 0;
    }

    .horizontal-form-wrapper {
        padding: 15px;
        margin: 0 15px;
    }

    .horizontal-header h2 {
        font-size: 18px;
    }

    .trip-type-top {
        justify-content: center;
    }

    .trip-top-btn {
        padding: 5px 14px;
        font-size: 11px;
    }

    .form-horizontal-field {
        flex: 1 1 calc(50% - 12px);
        min-width: 130px;
    }

    .terms-field,
    .submit-field {
        flex: 1 1 100%;
    }

    .checkbox-horiz {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .horizontal-form-wrapper {
        padding: 12px;
    }

    .form-horizontal-field {
        flex: 1 1 100%;
        min-width: auto;
    }

    .trip-top-btn {
        padding: 4px 12px;
        font-size: 10px;
    }

    .submit-horiz-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}
