/* ================================================
   GLOBAL RESET & BASE STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ================================================
   HEADER STYLES
   ================================================ */
.main-header {
    width: 100%;
    background: #003c3c;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: #ffdf2b;
}

.logo .dot {
    color: #fff;
    font-size: 18px;
}

.navbar {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #ffdf2b;
}

.dropdown {
    position: relative;
}

.drop-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 25px;
    background: #fff;
    color: #000;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown-menu a {
    padding: 8px 15px;
    display: block;
    color: #000;
    text-decoration: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-box i {
    font-size: 22px;
}

.call-box p {
    font-size: 12px;
    opacity: 0.7;
}

.call-box strong {
    font-size: 14px;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 25vh;
    background: url(/images/hero-hotel.png) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 1200px;
    width: 100%;
    padding: 0px;
    z-index: 10;
}

.hero-content h4 {
    font-size: 20px;
    letter-spacing: 3px;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    margin: 0 0 40px 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

/* ================================================
   COMPACT SEARCH WRAPPER 
   ================================================ */
.compact-search-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.compact-search-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* ================================================
   INTEGRATED TABS (INSIDE SEARCH BOX)
   ================================================ */
.integrated-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 3px solid #e0e0e0;
}

.compact-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px; /* Reduced from 18px */
    font-size: 16px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.compact-tab i {
    font-size: 20px;
}

.compact-tab:hover {
    background: rgba(255, 202, 28, 0.1);
    color: #003c3c;
}

.compact-tab.active {
    background: white;
    color: #003c3c;
    border-bottom: 3px solid #ffca1c;
}

/* ================================================
   COMPACT SEARCH CONTENT - REDUCED PADDING
   ================================================ */
.compact-search-content {
    display: none;
    padding: 15px 20px; /* REDUCED from 25px to 15px 20px */
    overflow: visible;
    position: relative;
}

.compact-search-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   COMPACT FORM
   ================================================ */
.compact-form {
    width: 100%;
}

.compact-form-row {
    display: flex;
    gap: 10px; /* REDUCED from 12px to 10px */
    align-items: flex-end;
    flex-wrap: wrap;
    position: relative;
    overflow: visible;
}

.compact-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px; /* REDUCED from 6px to 5px */
    position: relative;
    flex: 1;
    min-width: 140px;
    overflow: visible;
    z-index: 1;
}

/* Ensure parent z-index is boosted when dropdown is open */
.compact-input-group:has(.guests-dropdown.show),
.compact-input-group:has(.travelers-dropdown.show),
.compact-input-group:has(.location-dropdown[style*="display: block"]),
.compact-input-group:has(.airport-dropdown[style*="display: block"]) {
    z-index: 10000 !important;
}

.compact-input-group.flex-2 {
    flex: 2;
    min-width: 200px;
}

.compact-input-group label {
    font-size: 11px; /* REDUCED from 12px */
    font-weight: 700;
    color: #003c3c;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compact-input-group label i {
    color: #ffca1c;
    font-size: 12px; /* REDUCED from 13px */
}

.compact-input {
    width: 100%;
    padding: 10px 12px; /* REDUCED from 12px 14px */
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #003c3c;
    font-weight: 500;
    background: white;
    transition: all 0.3s;
}

.compact-input:focus {
    outline: none;
    border-color: #ffca1c;
    box-shadow: 0 0 0 3px rgba(255, 202, 28, 0.15);
}

.compact-input:hover {
    border-color: #bbb;
}

.compact-input::placeholder {
    color: #999;
    font-weight: 400;
}

/* ================================================
   DROPDOWN TRIGGER & DROPDOWNS
   ================================================ */
.dropdown-trigger {
    position: relative;
    cursor: pointer;
}

.dropdown-trigger input {
    cursor: pointer;
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 12px;
}

/* Guests Dropdown */
.guests-dropdown,
.travelers-dropdown {
    position: absolute;
    top: calc(100% + 2px); /* REDUCED gap from 5px to 2px */
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #ffca1c;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 12px; /* REDUCED from 15px */
    display: none;
    min-width: 250px;
}

.guests-dropdown.show,
.travelers-dropdown.show {
    display: block;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.guests-option,
.travelers-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0; /* REDUCED from 10px */
    border-bottom: 1px solid #f0f0f0;
}

.guests-option:last-of-type,
.travelers-option:last-of-type {
    border-bottom: none;
}

.guests-option label,
.travelers-option label {
    font-size: 14px;
    font-weight: 600;
    color: #003c3c;
    text-transform: none;
}

/* Counter */
.counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #003c3c;
    cursor: pointer;
    transition: all 0.3s;
}

.counter-btn:hover {
    background: #ffca1c;
    border-color: #ffca1c;
    color: white;
}

.counter span {
    font-size: 16px;
    font-weight: 700;
    color: #003c3c;
    min-width: 20px;
    text-align: center;
}

/* Class Select */
.class-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #003c3c;
    font-weight: 600;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.class-select:focus {
    outline: none;
    border-color: #ffca1c;
}

/* Done Button */
.done-btn {
    width: 100%;
    margin-top: 10px; /* REDUCED from 12px */
    padding: 8px; /* REDUCED from 10px */
    background: #ffca1c;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #002249;
    cursor: pointer;
    transition: all 0.3s;
}

.done-btn:hover {
    background: #e6b619;
}

/* ================================================
   LOCATION & AIRPORT DROPDOWNS - FIXED POSITIONING
   ================================================ */
.location-dropdown,
.airport-dropdown {
    position: absolute;
    top: 100%; /* FIXED: Position directly below the input */
    left: 0 !important;
    right: 0 !important;
    background: white;
    border: 2px solid #ffca1c;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 10001;
    display: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    min-width: 100%;
    margin-top: -2px; /* Ensure it connects seamlessly with input */
}

.location-dropdown.show,
.airport-dropdown.show {
    display: block !important;
}

/* When dropdown is visible via style attribute */
.location-dropdown[style*="display: block"],
.airport-dropdown[style*="display: block"] {
    display: block !important;
}

.location-option {
    padding: 10px 12px; /* REDUCED from 12px 14px */
    cursor: pointer;
    font-size: 13px;
    color: #003c3c;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    word-wrap: break-word;
}

.location-option:last-child {
    border-bottom: none;
}

.location-option:hover {
    background: #fff8e1;
}

.location-option i {
    color: #ffca1c;
    font-size: 14px;
    flex-shrink: 0;
}

/* ================================================
   SEARCH BUTTON (COMPACT)
   ================================================ */
.compact-search-btn {
    background: #ffca1c;
    color: #002249;
    border: none;
    padding: 12px 30px; /* REDUCED from 14px 35px */
    border-radius: 6px;
    font-size: 14px; /* REDUCED from 15px */
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 202, 28, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.compact-search-btn:hover {
    background: #e6b619;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 202, 28, 0.4);
}

.compact-search-btn i {
    font-size: 16px;
}

/* ================================================
   TRIP TYPE MINI TABS (FLIGHT SEARCH)
   ================================================ */
.trip-type-mini-tabs {
    display: flex;
    gap: 8px; /* REDUCED from 10px */
    margin-bottom: 15px; /* REDUCED from 20px */
    flex-wrap: wrap;
}

.trip-type-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px; /* REDUCED from 8px 16px */
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.trip-type-radio input[type="radio"] {
    display: none;
}

.trip-type-radio span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trip-type-radio i {
    font-size: 14px;
}

.trip-type-radio:hover {
    background: #e8f4f8;
    border-color: #73c2fb;
}

.trip-type-radio.active {
    background: #ffca1c;
    border-color: #ffca1c;
    color: #002249;
}

/* ================================================
   SWAP BUTTON (COMPACT)
   ================================================ */
.swap-btn-compact {
    width: 38px; /* REDUCED from 40px */
    height: 38px;
    min-width: 38px;
    background: #ffca1c;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 18px; /* REDUCED from 20px */
}

.swap-btn-compact:hover {
    transform: rotate(180deg);
    background: #e6b619;
}

.swap-btn-compact i {
    color: #002249;
    font-size: 16px;
}

/* ================================================
   MULTI-CITY FLIGHT SEGMENTS (COMPACT)
   ================================================ */
.flight-segment-compact {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 12px; /* REDUCED from 15px */
    margin-bottom: 10px; /* REDUCED from 12px */
}

.segment-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; /* REDUCED from 12px */
    font-size: 14px;
    font-weight: 700;
    color: #003c3c;
}

.segment-header-compact i {
    color: #ffca1c;
    margin-right: 6px;
}

.remove-segment-compact {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-segment-compact:hover {
    background: #c82333;
}

.segment-fields-compact {
    display: flex;
    gap: 10px; /* REDUCED from 12px */
    flex-wrap: wrap;
}

.add-flight-compact {
    width: 100%;
    background: transparent;
    border: 2px dashed #003c3c;
    color: #003c3c;
    padding: 10px; /* REDUCED from 12px */
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px; /* REDUCED from 15px */
}

.add-flight-compact:hover {
    background: #003c3c;
    color: white;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
    text-align: center;
    padding: 70px 20px;
    background: #fff;
}

.services-tag {
    font-size: 14px;
    color: #7b7b7b;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a1b33;
    margin-bottom: 50px;
}

.services-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-box {
    width: 260px;
    padding: 25px 20px;
    border-radius: 18px;
    background: transparent;
    transition: 0.3s ease;
}

.service-icon {
    width: 100%;
    margin-bottom: 18px;
}

.service-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-box p {
    font-size: 14px;
    color: #6c6c6c;
    line-height: 1.6;
}

.service-box.highlight {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: scale(1.03);
}

/* ================================================
   TOP DEALS SECTION
   ================================================ */
.top-deals-section {
    background: #fff;
    padding: 60px 200px;
}

.deals-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.deals-wrapper {
    display: flex;
    gap: 30px;
}

.deals-left {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.agent-box {
    width: 25%;
    background: #eaf4ff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
}

.deal-card {
    position: relative;
    height: 230px;
    border-radius: 14px;
    overflow: hidden;
}

.deal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
}

.deal-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
}

.deal-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.deal-content .price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.view-btn {
    background: transparent;
    border: 1px solid #fff;
    padding: 6px 16px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.deal-banner {
    grid-column: span 3;
    position: relative;
    height: 210px;
    border-radius: 14px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.banner-content h3 {
    font-size: 20px;
    font-weight: 700;
}

.reward-title {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
}

.banner-btn {
    background: transparent;
    border: 1px solid #fff;
    padding: 8px 20px;
    border-radius: 8px;
    margin-top: 10px;
    color: white;
    cursor: pointer;
}

.agent-photo {
    position: relative;
    width: 80px;
    margin: auto;
}

.agent-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.online-dot {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 15px;
    height: 15px;
    background: #0ab547;
    border-radius: 50%;
    border: 3px solid #eaf4ff;
}

.agent-box h3 {
    margin: 18px 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #0a1b33;
}

.agent-btn {
    width: 100%;
    height: 45px;
    background: #0ab547;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* ================================================
   BEST OFFERS SECTION
   ================================================ */
.best-offers-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.offers-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}

.offers-subtitle {
    font-size: 15px;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.offers-grid {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 22px;
}

.offer-card {
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.offer-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.offer-info {
    background: #f7f7f7;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
}

.offer-info .price {
    font-weight: 700;
    color: #333;
}

/* ================================================
   TOP SPOTS SECTION
   ================================================ */
.searched-spots {
    padding: 70px 40px;
    text-align: center;
    background: #fff;
}

.spots-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a1b33;
    margin-bottom: 12px;
}

.spots-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 850px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 25px;
    padding-top: 10px;
}

.spot-card {
    background: #fff;
    padding: 18px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
    transition: .2s ease;
}

.spot-card:hover {
    transform: translateY(-4px);
}

.spot-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.spot-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.spot-info p {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

.spot-arrow {
    font-size: 20px;
    color: #444;
    opacity: 0.6;
    transition: .2s;
}

.spot-card:hover .spot-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ================================================
   HOTEL PARTNERS SLIDER
   ================================================ */
.airline-slider-section {
    background: #003c3c;
    padding: 40px 20px;
    border-radius: 18px;
    margin: 40px;
    color: #fff;
}

.airline-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.airline-title span {
    color: #ffce2f;
}

.airline-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.arrow-btn {
    background: #fff;
    color: #444;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

.arrow-btn:hover {
    transform: scale(1.1);
}

.left-arrow {
    margin-right: 8px;
}

.right-arrow {
    margin-left: 8px;
}

.airline-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.airline-slider::-webkit-scrollbar {
    display: none;
}

.airline-card {
    min-width: 230px;
    background: #fff;
    color: #000;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.airline-logo {
    height: 50px;
    margin-bottom: 10px;
}

.airline-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.airline-card .route {
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}

.airline-card .price {
    font-size: 18px;
    font-weight: 800;
}

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */
.why-choose-section {
    position: relative;
    background: url('/assets/6.jpg') center/cover no-repeat;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.why-choose-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.choose-container {
    position: relative;
    z-index: 2;
}

.choose-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 5px;
}

.choose-subtitle {
    font-size: 16px;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.choose-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.choose-card {
    max-width: 380px;
    text-align: center;
    color: #fff;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle img {
    width: 44px;
    height: 44px;
}

.choose-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.choose-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #eaeaea;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    padding: 70px 40px;
    background: #fff;
    text-align: center;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.testimonials-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 0 18px;
}

.quote-icon {
    font-size: 55px;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 800;
    color: #f8a900;
    margin-top: 10px;
}

/* ================================================
   FOOTER SECTION
   ================================================ */
.footer-section {
    background: #003c3c;
    padding: 50px 40px 30px;
    color: #fff;
    text-align: center;
}

.newsletter-box {
    margin-bottom: 50px;
}

.newsletter-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-box p {
    font-size: 14px;
    color: #cfd6e3;
    margin-bottom: 20px;
}

.newsletter-input {
    display: inline-flex;
    width: 450px;
    max-width: 100%;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.newsletter-input button {
    background: #ffcf35;
    padding: 12px 20px;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    margin: 50px auto;
    gap: 40px;
    max-width: 1100px;
}

.footer-column h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    font-size: 13px;
    margin-bottom: 8px;
    color: #e1e6f0;
}

.footer-column ul li a {
    color: #e1e6f0;
    text-decoration: none;
}

.payment-icons {
    margin: 25px 0;
}

.payment-icons img {
    height: 30px;
    margin: 0 12px;
    opacity: 0.9;
}

.social-icons i {
    font-size: 18px;
    margin: 0 10px;
    cursor: pointer;
}

.footer-note {
    font-size: 11px;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

/* ================================================
   RESPONSIVE STYLES - TABLET & MOBILE
   ================================================ */

/* Large Tablet - 1024px and below */
@media (max-width: 1024px) {
    .top-deals-section {
        padding: 50px 80px;
    }
    
    .deals-wrapper {
        flex-direction: column;
    }
    
    .deals-left,
    .agent-box {
        width: 100%;
    }
    
    .compact-search-wrapper {
        max-width: 95%;
    }
}

/* Tablet - 992px and below */
@media (max-width: 992px) {
    .offers-grid {
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 900px and below */
@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .call-box {
        display: none;
    }

    .navbar {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #003c3c;
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        display: none;
        animation: slideDown .3s ease;
        text-align: center;
    }

    .navbar.show {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        top: 5px;
        background: #fff;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 10px 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h4 {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .compact-search-wrapper {
        max-width: 100%;
    }

    .compact-search-container {
        border-radius: 8px;
    }

    .compact-search-content {
        padding: 15px; /* Maintain compact padding on mobile */
    }

    /* Stack form fields vertically on mobile */
    .compact-form-row {
        flex-direction: column;
        gap: 10px;
    }

    .compact-input-group {
        width: 100%;
        min-width: 100%;
    }

    .compact-search-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .swap-btn-compact {
        align-self: center;
        margin: -22px;
    }

    .trip-type-mini-tabs {
        justify-content: center;
    }

    .trip-type-radio {
        flex: 1;
        justify-content: center;
        min-width: auto;
    }

    .deals-left {
        grid-template-columns: 1fr;
    }

    .deal-banner {
        grid-column: span 1;
    }
    
    .top-deals-section {
        padding: 40px 20px;
    }

    .services-title {
        font-size: 28px;
    }

    .service-box {
        width: 100%;
        max-width: 330px;
    }
}

/* Mobile - 600px and below */
@media (max-width: 600px) {
    .offers-grid,
    .spots-grid {
        width: 95%;
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }

    .compact-tab {
        font-size: 14px;
        padding: 12px 10px; /* REDUCED from 14px */
    }

    .compact-tab span {
        display: none;
    }

    .compact-tab i {
        font-size: 22px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h4 {
        font-size: 14px;
    }
    
    .compact-input-group label {
        font-size: 10px; /* REDUCED from 11px */
    }

    .compact-input {
        padding: 9px 11px; /* REDUCED */
        font-size: 13px;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   HIDE OPENFARES WIDGETS
   ================================================ */
#ofEngine,
#ofEngineSearch {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    visibility: hidden !important;
}






/* ============================================
   UNIFIED LOADER STYLES
   ============================================ */
.unified-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.unified-loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.loader-icon-container {
    position: relative;
    width: 120px;
    height: 80px;
    margin: 0 auto 40px;
}

.plane-animation {
    position: absolute;
    top: 0;
    left: 0;
    animation: flyPlane 3s ease-in-out infinite;
}

.plane-animation svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(255, 202, 28, 0.5));
}

.hotel-animation {
    position: absolute;
    bottom: 0;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

.hotel-animation svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(255, 202, 28, 0.3));
}

.loader-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.loader-dots span {
    width: 12px;
    height: 12px;
    background: #ffca1c;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.3s; }
.loader-dots span:nth-child(3) { animation-delay: 0.6s; }

.loader-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes flyPlane {
    0%, 100% { transform: translateX(0) rotate(-5deg); }
    50% { transform: translateX(60px) rotate(5deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Hide OpenFares engines */
#ofEngine,
#ofEngineSearch {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    visibility: hidden !important;
}


/* Travel Assistance Modal Styles */
.travel-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.travel-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.travel-modal-container {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.travel-modal-overlay.show .travel-modal-container {
    transform: scale(1) translateY(0);
}

.travel-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.travel-modal-close:hover {
    background: #ffca1c;
    color: white;
    transform: rotate(90deg);
}

.travel-modal-content {
    display: flex;
    min-height: 400px;
}

.travel-modal-left {
    flex: 0 0 280px;
    background: linear-gradient(135deg, #003c3c 0%, #0a4a8a 100%);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.travel-modal-agent {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.trust-badges {
    width: 100%;
}

.years-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.years-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #ffca1c;
    line-height: 1;
}

.years-text {
    display: block;
    font-size: 11px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
}

.trustpilot-badge {
    background: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

.trustpilot-badge .stars {
    color: #00b67a;
    font-size: 18px;
    margin-bottom: 5px;
}

.trustpilot-badge p {
    font-size: 12px;
    color: #333;
    margin: 3px 0;
}

.trustpilot-badge .review-count {
    font-size: 10px;
    color: #666;
}

.travel-modal-right {
    flex: 1;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.travel-modal-logo h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003c3c;
    margin-bottom: 25px;
}

.travel-modal-logo .dot {
    color: #ffca1c;
}

.travel-modal-logo .com {
    color: #003c3c;
}

.travel-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #003c3c;
    margin-bottom: 10px;
    line-height: 1.3;
}

.travel-modal-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.travel-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffca1c;
    color: #002249;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 202, 28, 0.3);
    margin-bottom: 15px;
    justify-content: center;
}

.travel-modal-cta:hover {
    background: #e6b619;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 202, 28, 0.4);
}

.travel-modal-cta i {
    font-size: 20px;
}

.travel-modal-note {
    font-size: 13px;
    color: #888;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .travel-modal-container {
        max-width: 95%;
        width: 95%;
    }
    
    .travel-modal-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .travel-modal-left {
        flex: none;
        padding: 25px 20px;
    }
    
    .travel-modal-agent {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .trust-badges {
        display: flex;
        gap: 10px;
    }
    
    .years-badge,
    .trustpilot-badge {
        flex: 1;
    }
    
    .years-number {
        font-size: 36px;
    }
    
    .travel-modal-right {
        padding: 25px 20px;
    }
    
    .travel-modal-logo h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .travel-modal-title {
        font-size: 22px;
    }
    
    .travel-modal-cta {
        font-size: 16px;
        padding: 14px 25px;
    }
}



/* Cookie Consent Popup */
.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99998;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-popup.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 30px;
    position: relative;
}

.cookie-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.cookie-close:hover {
    background: #003c3c;
    border-color: #003c3c;
    color: white;
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-right: 50px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffca1c 0%, #f0a500 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #003c3c;
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #003c3c;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: #ffca1c;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-accept {
    background: #ffca1c;
    color: #002249;
}

.cookie-accept:hover {
    background: #e6b619;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 202, 28, 0.3);
}

.cookie-settings {
    background: transparent;
    color: #003c3c;
    border: 2px solid #003c3c;
}

.cookie-settings:hover {
    background: #003c3c;
    color: white;
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cookie-settings-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-container {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-settings-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #003c3c;
}

.cookie-settings-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-category h4 {
    font-size: 16px;
    font-weight: 700;
    color: #003c3c;
    margin-bottom: 5px;
}

.cookie-category p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-toggle.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: #ffca1c;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-settings-footer {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .cookie-text h4 {
        font-size: 18px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-settings-container {
        width: 95%;
    }
    
    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding: 20px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}


/* Floating Phone Button */
.floating-phone-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.floating-phone-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ab547 0%, #08a03e 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(10, 181, 71, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phoneFloat 3s ease-in-out infinite;
}

.floating-phone-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(10, 181, 71, 0.5);
}

.floating-phone-btn i {
    animation: phoneRing 2s ease-in-out infinite;
}

/* Pulse Animations */
.phone-pulse,
.phone-pulse-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(10, 181, 71, 0.4);
    animation: phonePulse 2s ease-out infinite;
}

.phone-pulse-2 {
    animation-delay: 1s;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Phone Popup Card */
.phone-popup-card {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-popup-card.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.phone-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.phone-popup-close:hover {
    background: #003c3c;
    color: white;
}

.phone-popup-content {
    text-align: center;
}

.phone-agent-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.phone-agent-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0ab547;
}

.online-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: #0ab547;
    border-radius: 50%;
    border: 3px solid white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(10, 181, 71, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(10, 181, 71, 0);
    }
}

.phone-popup-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #0ab547;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.phone-popup-title {
    font-size: 22px;
    font-weight: 800;
    color: #003c3c;
    margin-bottom: 10px;
}

.phone-popup-promo {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.promo-code {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    padding: 3px 12px;
    border-radius: 6px;
    font-weight: 800;
    border: 2px dashed #ffc107;
}

.phone-popup-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.phone-popup-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ab547 0%, #08a03e 100%);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(10, 181, 71, 0.3);
}

.phone-popup-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 181, 71, 0.4);
}

.phone-popup-learn-more {
    font-size: 13px;
    color: #003c3c;
    text-decoration: underline;
    font-weight: 600;
}

.phone-popup-learn-more:hover {
    color: #ffca1c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-phone-container {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-phone-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .phone-popup-card {
        width: 280px;
        right: -10px;
        padding: 20px;
    }
    
    .phone-popup-title {
        font-size: 20px;
    }
    
    .phone-popup-number {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .phone-popup-card {
        width: calc(100vw - 60px);
        right: -20px;
    }
}

/* Learn More Tooltip */
.learn-more-wrapper {
    position: relative;
    display: inline-block;
}

.phone-popup-learn-more {
    font-size: 13px;
    color: #003c3c;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.phone-popup-learn-more:hover {
    color: #ffca1c;
}

.learn-more-tooltip {
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background: #003c3c;
    color: #fff;
    font-size: 11.5px;
    line-height: 1.5;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 9999;
}

/* Tooltip arrow */
.learn-more-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #003c3c transparent transparent transparent;
}

/* Show on hover */
.learn-more-wrapper:hover .learn-more-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-6px);
}

/* Mobile: show tooltip above card */
@media (max-width: 768px) {
    .learn-more-tooltip {
        width: 230px;
        font-size: 11px;
    }
}


    /* ============================================
   PHONE-ONLY DEALS POPUP - SCROLL TRIGGERED
   Shows automatically after scrolling
   ============================================ */
.phone-deals-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    max-width: 600px;
    width: calc(100% - 40px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 9996;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 24px;
}

.phone-deals-popup.show {
    transform: translateX(-50%) translateY(0);
}

.phone-deals-content {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.phone-deals-agent {
    position: relative;
    flex-shrink: 0;
}

.phone-deals-agent img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0ab547;
}

.agent-online-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #0ab547;
    border-radius: 50%;
    border: 3px solid white;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(10, 181, 71, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(10, 181, 71, 0);
    }
}

.phone-deals-text {
    flex: 1;
}

.phone-deals-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #003c3c;
    margin-bottom: 5px;
}

.phone-deals-promo {
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.promo-code-inline {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    border: 1px dashed #ffc107;
    font-size: 13px;
}

.phone-deals-subtitle {
    font-size: 12px;
    color: #666;
}

.phone-deals-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0ab547 0%, #08a03e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(10, 181, 71, 0.3);
    white-space: nowrap;
}

.phone-deals-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 181, 71, 0.4);
    color: white;
}

.phone-deals-cta i {
    font-size: 16px;
}

.phone-deals-close {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.phone-deals-close:hover {
    background: #003c3c;
    color: white;
}

/* Mobile Responsive for Phone Deals Popup */
@media (max-width: 768px) {
    .phone-deals-popup {
        bottom: 15px;
        width: calc(100% - 30px);
        padding: 15px 18px;
    }
    
    .phone-deals-content {
        gap: 12px;
    }
    
    .phone-deals-agent img {
        width: 60px;
        height: 60px;
    }
    
    .phone-deals-text h4 {
        font-size: 16px;
    }
    
    .phone-deals-promo {
        font-size: 13px;
    }
    
    .promo-code-inline {
        font-size: 12px;
        padding: 1px 6px;
    }
    
    .phone-deals-cta {
        font-size: 14px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .phone-deals-content {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-deals-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FLOATING CHAT BUTTON (Bottom Right)
   ============================================ */
.floating-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.floating-chat-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003c3c 0%, #003c3c 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(7, 50, 105, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chatFloat 3s ease-in-out infinite;
}

.floating-chat-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(7, 50, 105, 0.5);
}

.floating-chat-btn i {
    animation: chatBounce 2s ease-in-out infinite;
}

/* Pulse Animations for Chat */
.chat-pulse,
.chat-pulse-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(7, 50, 105, 0.4);
    animation: chatPulse 2s ease-out infinite;
}

.chat-pulse-2 {
    animation-delay: 1s;
}

@keyframes chatFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes chatBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile Responsive for Chat Button */
@media (max-width: 768px) {
    .floating-chat-container {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-chat-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}


/* Search Intent Notification */
.search-intent-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    max-width: 380px;
    background: linear-gradient(135deg, #ffca1c 0%, #f0a500 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 202, 28, 0.4);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-intent-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.search-intent-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    position: relative;
}

.search-intent-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #002249;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.search-intent-text {
    flex: 1;
    color: #002249;
}

.search-intent-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.search-intent-text p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.search-intent-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #002249;
    transition: all 0.3s;
}

.search-intent-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Search Call Prompt */
.search-call-prompt {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-call-prompt.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-call-content {
    display: flex;
    gap: 20px;
    padding: 25px;
    position: relative;
}

.search-call-agent {
    position: relative;
    flex-shrink: 0;
}

.search-call-agent img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0ab547;
}

.agent-online-dot {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    background: #0ab547;
    border-radius: 50%;
    border: 3px solid white;
    animation: agentPulse 2s ease-in-out infinite;
}

@keyframes agentPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(10, 181, 71, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(10, 181, 71, 0);
    }
}

.search-call-text {
    flex: 1;
}

.search-call-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #003c3c;
    margin-bottom: 8px;
}

.search-call-text > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.search-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ab547 0%, #08a03e 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(10, 181, 71, 0.3);
    margin-bottom: 8px;
}

.search-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 181, 71, 0.4);
}

.search-call-btn i {
    font-size: 18px;
}

.search-call-note {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.search-call-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.search-call-close:hover {
    background: #003c3c;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-intent-notification {
        top: 80px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .search-call-prompt {
        bottom: 100px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
    
    .search-call-content {
        padding: 20px;
    }
    
    .search-call-agent img {
        width: 60px;
        height: 60px;
    }
    
    .search-call-text h4 {
        font-size: 16px;
    }
    
    .search-call-btn {
        font-size: 15px;
        padding: 11px 20px;
    }
}


/* BookingOpro Advantage Section */
.bookingopro-advantage-section {
    background: white;
    padding: 70px 40px;
    border-top: 3px solid #f0f0f0;
}

.advantage-container {
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-header {
    text-align: center;
    margin-bottom: 50px;
}

.advantage-logo h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003c3c;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.advantage-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-size: 18px;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: lowercase;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.advantage-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a1b33;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.advantage-card:hover {
    border-color: #ffca1c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003c3c 0%, #003c3c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    position: relative;
    box-shadow: 0 6px 20px rgba(7, 50, 105, 0.25);
}

.advantage-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed #ffca1c;
    opacity: 0;
    animation: iconRotate 8s linear infinite;
}

.advantage-card:hover .advantage-icon::before {
    opacity: 1;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #003c3c;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .bookingopro-advantage-section {
        padding: 50px 20px;
    }
    
    .advantage-logo h2 {
        font-size: 26px;
        flex-direction: column;
        gap: 8px;
    }
    
    .advantage-badge {
        font-size: 16px;
        padding: 5px 15px;
    }
    
    .advantage-title {
        font-size: 22px;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .advantage-card h4 {
        font-size: 17px;
    }
}

/* ================================================
   PHONE DEALS BUTTON (UNPUBLISHED DEALS)
   ================================================ */
.phone-deals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
}

.phone-deals-btn:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.phone-deals-btn i {
    font-size: 16px;
    animation: phoneShake 2s ease-in-out infinite;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* Mobile Responsive - Full Width Button */
@media (max-width: 768px) {
    .phone-deals-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        margin-top: 10px;
    }
    
    /* Stack buttons vertically on mobile */
    .compact-form-row {
        flex-wrap: wrap;
    }
    
    .compact-search-btn,
    .phone-deals-btn {
        width: 100%;
        order: 10; /* Ensures they appear at the bottom */
    }
}

@media (max-width: 480px) {
    .phone-deals-btn {
        font-size: 12px;
        padding: 12px 16px;
        gap: 8px;
    }
}

/* ================================================
   SEO CONTENT SECTION - FLIGHT BOOKING GUIDE
   ================================================ */
.seo-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.seo-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003c3c 0%, #ffca1c 50%, #003c3c 100%);
}

.seo-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Banner */
.seo-hero-banner {
    background: linear-gradient(135deg, #003c3c 0%, #004d4d 100%);
    border-radius: 20px;
    padding: 50px 60px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 60, 60, 0.3);
}

.seo-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 202, 28, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.seo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.seo-main-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.brand-highlight {
    color: #ffca1c;
    position: relative;
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffca1c;
    border-radius: 2px;
}

.seo-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0;
}

/* Content Grid */
.seo-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Main Content Column */
.seo-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Introduction Box */
.seo-intro-box {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ffca1c;
}

.seo-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.seo-intro-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #003c3c;
    margin: 0;
    padding: 18px;
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-radius: 12px;
}

.seo-intro-highlight i {
    color: #ffca1c;
    font-size: 24px;
}

/* Feature Cards */
.seo-feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.seo-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #003c3c 0%, #ffca1c 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.seo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.seo-feature-card:hover::before {
    transform: scaleX(1);
}

.accent-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #ffca1c;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003c3c 0%, #004d4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 60, 60, 0.3);
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: #ffca1c;
}

.accent-icon {
    background: linear-gradient(135deg, #ffca1c 0%, #f0a500 100%);
}

.accent-icon i {
    color: #003c3c;
}

.seo-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #003c3c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.seo-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.seo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.seo-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.seo-feature-list li:last-child {
    border-bottom: none;
}

.seo-feature-list i {
    color: #0ab547;
    font-size: 18px;
    flex-shrink: 0;
}

.seo-feature-footer {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ffca1c;
    margin: 0;
}

/* Sidebar */
.seo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.seo-sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.seo-sidebar-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.highlight-card {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border: 2px solid #ffca1c;
}

.cta-card {
    background: linear-gradient(135deg, #003c3c 0%, #004d4d 100%);
    color: white;
    text-align: center;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #003c3c;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ffca1c;
}

.cta-card .sidebar-title {
    color: white;
    border-bottom-color: #ffca1c;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #333;
    padding: 10px 0;
    line-height: 1.5;
}

.sidebar-list i {
    color: #ffca1c;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.sidebar-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.sidebar-text:last-of-type {
    margin-bottom: 0;
}

.sidebar-footer {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* CTA Elements */
.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: white;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-list li:last-child {
    border-bottom: none;
}

.cta-list i {
    color: #ffca1c;
    font-size: 18px;
    flex-shrink: 0;
}

.seo-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #ffca1c;
    color: #003c3c;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 202, 28, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-cta-button:hover {
    background: #e6b619;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 202, 28, 0.5);
    color: #003c3c;
}

.seo-cta-button i {
    font-size: 20px;
}

.cta-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0 0 0;
    text-align: center;
}

.cta-footer i {
    color: #ffca1c;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 50px 20px;
    }
    
    .seo-hero-banner {
        padding: 35px 25px;
        margin-bottom: 35px;
    }
    
    .seo-main-title {
        font-size: 26px;
    }
    
    .seo-hero-subtitle {
        font-size: 16px;
    }
    
    .seo-intro-box,
    .seo-feature-card {
        padding: 25px;
    }
    
    .seo-section-title {
        font-size: 22px;
    }
    
    .seo-sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-sidebar-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .seo-main-title {
        font-size: 22px;
    }
    
    .seo-hero-subtitle {
        font-size: 14px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 28px;
    }
    
    .seo-section-title {
        font-size: 20px;
    }
}



/* Car Search Specific Styles */
.different-dropoff-toggle {
    margin-top: 15px;
    padding: 10px 0;
}

.different-dropoff-toggle label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.different-dropoff-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.compact-input select.compact-input {
    cursor: pointer;
    background-color: white;
}

/* Mobile responsiveness for car search */
@media (max-width: 768px) {
    #carSearchCompact .compact-form-row {
        grid-template-columns: 1fr;
    }
    
    .different-dropoff-toggle {
        margin-top: 10px;
    }
}
