/* Modern MakeMyTrip Clone Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #1e293b;
    background: #f8fafc;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Bar */
.utility-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
    font-size: 0.9rem;
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.utility-links {
    display: flex;
    gap: 24px;
}

.utility-links a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.utility-links a:hover {
    color: #2563eb;
}

.utility-right {
    display: flex;
    gap: 20px;
}

.utility-right a {
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Main Header */
.main-header {
    background: white;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Category Navigation */
.category-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-nav .container {
    display: flex;
    gap: 16px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #475569;
    font-size: 0.8rem;
    min-width: 60px;
    transition: color 0.2s;
}

.category-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.category-item:hover,
.category-item.active {
    color: #2563eb;
}

/* Hero Section with Gradient & Background */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%), url('../images/hero-bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    padding: 48px 0;
    color: white;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Search Card */
.search-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.trip-type {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.trip-type label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
    font-weight: 500;
    cursor: pointer;
}

.trip-type input[type="radio"] {
    accent-color: #2563eb;
    width: 18px;
    height: 18px;
}

.search-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    margin-bottom: 16px;
}

.field {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color 0.2s;
}

.field:hover,
.field:focus-within {
    border-color: #2563eb;
}

.field label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 4px;
}

.field input,
.field select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
}

.field input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-btn {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 32px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-btn:hover {
    background: #1d4ed8;
}

.fare-options {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.fare-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    color: #1e293b;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

/* Featured Section */
.featured {
    padding: 48px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #0f172a;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.card-content p {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.price {
    font-weight: 700;
    color: #2563eb;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-outline:hover {
    background: #eef2ff;
}

/* Auth Forms */
.auth-form {
    max-width: 400px;
    margin: 48px auto;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
}

.auth-form h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #0f172a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #334155;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.error {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Footer */
.site-footer {
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 24px 0;
    text-align: center;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .utility-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .utility-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-nav .container {
        gap: 12px;
    }

    .search-fields {
        grid-template-columns: 1fr;
    }

    .fare-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkbox-group {
        margin-left: 0;
    }

    .hero {
        padding: 32px 0;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin/User Panels (unchanged from previous, but ensure they don't get public styles) */
.panel-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: #1e293b;
    color: white;
}

/* Offers Section */
.offers-section {
    padding: 48px 0;
    background: #ffffff;
}

.offers-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.tab-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #475569;
}

.tab-btn:hover,
.tab-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.offer-card {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.offer-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.offer-content {
    padding: 16px;
    flex: 1;
}

.offer-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.offer-content p {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.coupon-code {
    display: inline-block;
    background: #eef2ff;
    color: #2563eb;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.btn-small {
    padding: 4px 12px;
    font-size: 0.9rem;
}

/* Handpicked Collections */
.collections-section {
    padding: 48px 0;
    background: #f8fafc;
}

.collections-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.collections-scroll::-webkit-scrollbar {
    height: 6px;
}

.collections-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.collection-card {
    flex: 0 0 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    background: white;
}

.collection-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.collection-card h3 {
    padding: 12px;
    font-size: 1rem;
    text-align: center;
}

/* Unlock Lesser-Known Wonders */
.wonders-section {
    padding: 48px 0;
    background: white;
}

.wonders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.wonder-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s;
}

.wonder-card:hover {
    transform: scale(1.02);
}

.wonder-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wonder-card h3 {
    padding: 16px;
    font-size: 1.1rem;
    text-align: center;
}

/* Mega Footer (to replace existing footer) */
.mega-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 48px 0 24px;
    margin-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Floating Search Widget */
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-toggle {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-toggle:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.floating-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: none;
}

.floating-panel.show {
    display: block;
}

.floating-panel form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-panel input {
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-card img {
        width: 100%;
        height: 150px;
    }

    .wonders-grid {
        grid-template-columns: 1fr;
    }

    .floating-widget {
        bottom: 20px;
        right: 20px;
    }

    .floating-panel {
        width: 250px;
    }
}

/* ===== Modern Bright Theme for Plan New Trip ===== */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #f97316;
    --accent: #8b5cf6;
    --bg-light: #ffffff;
    --bg-off-white: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --border-light: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-off-white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Bar */
.utility-bar {
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
    font-size: 0.9rem;
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.utility-links,
.utility-right {
    display: flex;
    gap: 24px;
}

.utility-links a,
.utility-right a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.utility-links a:hover,
.utility-right a:hover {
    color: var(--primary);
}

/* Main Header */
.main-header {
    background: white;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.auth-nav {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Category Navigation */
.category-nav {
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.category-nav .container {
    display: flex;
    gap: 24px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    min-width: 60px;
    transition: color 0.2s, transform 0.2s;
}

.category-item i {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.category-item:hover,
.category-item.active {
    color: var(--primary);
}

.category-item:hover i {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 48px 0;
    color: white;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Search Card */
.search-card {
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
}

.trip-type {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.trip-type label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
}

.trip-type input[type="radio"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.search-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    margin-bottom: 20px;
}

.field {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 12px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field:hover,
.field:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.field label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.field input,
.field select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-dark);
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 0 32px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.fare-options {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.fare-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    color: var(--text-dark);
}

/* Offers Section */
.offers-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
}

.offers-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 40px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.offer-card {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.offer-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.offer-content {
    padding: 16px;
    flex: 1;
}

.offer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.offer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.coupon-code {
    display: inline-block;
    background: #eef2ff;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Best / Selected Section */
.best-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.best-card {
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.best-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.best-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.best-card-content {
    padding: 16px;
}

.best-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.best-card-content .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    margin-bottom: 8px;
}

.best-card-content .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Horizontal Banner */
.banner-section {
    padding: 40px 0;
}

.banner {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    padding: 40px 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.banner h2 {
    font-size: 2rem;
    font-weight: 700;
}

.banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.banner .btn {
    background: white;
    color: var(--primary);
    padding: 12px 32px;
    font-size: 1.1rem;
}

.banner .btn:hover {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .search-fields {
        grid-template-columns: 1fr;
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-card img {
        width: 100%;
        height: 150px;
    }

    .banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

.trending-searches {
    margin-top: 16px;
    font-size: 0.9rem;
}

.trending-searches a {
    margin: 0 8px;
    color: var(--primary);
    text-decoration: none;
}

.guarantee {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 8px;
}

.currency-rates {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: #eef2ff;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.offer-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
}

.fare-label {
    font-weight: 600;
    margin-right: 8px;
}

.small-note {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #2563eb;
}

/* Utility Bar Icons */
.util-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 4px;
}

/* Button Icons */
.btn-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}

/* Category Icons */
.category-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.category-item:hover .category-icon {
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    height: auto;
}

.category-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #5a6874;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    gap: 4px;
    min-width: 70px;
}

@media (max-width: 768px) {
    .category-icon {
        width: 20px;
        height: 20px;
    }

    .util-icon,
    .btn-icon {
        width: 14px;
        height: 14px;
    }
}

/* Button Styles */
.btn,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}

/* Primary Button (Register / Logout) */
.btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Outline Button (Login / Profile) */
.btn-outline {
    border: 1.5px solid #2563eb;
    color: #2563eb;
    background: white;
}

.btn-outline:hover {
    background: #eef2ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.1);
}

/* Button icons (if used) */
.btn-icon,
.btn-outline .btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Trending Searches */
.trending {
    margin-top: 1rem;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.trending span {
    color: rgba(255, 255, 255, 0.7);
}

.trending a {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    transition: all 0.2s;
}

.trending a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Services Grid */
.services-grid {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #eef2f6;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.service-item {
    flex: 1;
    min-width: 80px;
    text-align: center;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.service-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e293b;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.cta-content p {
    color: #475569;
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .services-wrapper {
        justify-content: center;
        gap: 1.5rem;
    }

    .service-item {
        flex: 0 0 auto;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }
}

/* Logo Image */
.logo-img {
    height: 40px;
    /* Adjust based on your logo size */
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.9;
}

/* Category Emojis */
.category-emoji {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.category-item:hover .category-emoji {
    transform: translateY(-2px);
}

/* Adjust category item spacing */
.category-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #5a6874;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    gap: 4px;
    min-width: 70px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }

    .category-emoji {
        font-size: 20px;
    }
}

/* Utility Bar with emojis */
.utility-bar {
    background: #ffffff;
    border-bottom: 1px solid #eef2f6;
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    white-space: nowrap;
}

.utility-bar .container {
    max-width: 100%;
    padding: 0 24px;
}

.utility-links {
    display: inline-flex;
    gap: 28px;
    white-space: nowrap;
}

.utility-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5a6874;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.utility-links a:hover {
    color: #2563eb;
}

.util-emoji {
    font-size: 1rem;
    line-height: 1;
}

/* Button emojis */
.btn-emoji,
.btn-outline .btn-emoji {
    font-size: 1rem;
    line-height: 1;
    margin-right: 4px;
}

/* Logo image */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.9;
}

/* Category Emojis */
.category-emoji {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.category-item:hover .category-emoji {
    transform: translateY(-2px);
}

.category-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #5a6874;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    gap: 4px;
    min-width: 70px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .utility-bar .container {
        padding: 0 16px;
    }

    .utility-links {
        gap: 20px;
    }

    .utility-links a {
        font-size: 0.75rem;
    }

    .util-emoji {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 32px;
    }

    .category-emoji {
        font-size: 20px;
    }

    .category-item {
        min-width: 60px;
        font-size: 0.7rem;
    }

    .btn,
    .btn-outline {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .btn-emoji {
        font-size: 0.9rem;
    }

    /* Hero with background image */
    .hero.hero-image {
        background: url('../images/hero-bg.jpg') center/cover no-repeat;
        position: relative;
        padding: 60px 0;
    }

    /* Optional overlay for better text readability */
    .hero.hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .hero.hero-image .hero-content {
        position: relative;
        z-index: 2;
    }

    /* Search card enhancements */
    .search-card {
        background: white;
        border-radius: 32px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        padding: 32px;
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Responsive search fields */
    .search-fields {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        margin-bottom: 20px;
    }

    .field {
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 12px 16px;
        transition: border-color 0.2s, box-shadow 0.2s;
        background: white;
    }

    .field:hover,
    .field:focus-within {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .field label {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #64748b;
        margin-bottom: 4px;
    }

    .field input,
    .field select {
        width: 100%;
        border: none;
        outline: none;
        font-size: 1rem;
        font-weight: 500;
        background: transparent;
        color: #0f172a;
    }

    .field input::placeholder {
        color: #94a3b8;
        font-weight: 400;
    }

    .search-btn {
        background: #2563eb;
        color: white;
        border: none;
        border-radius: 16px;
        padding: 0 32px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s;
        white-space: nowrap;
        height: 56px;
    }

    .search-btn:hover {
        background: #1d4ed8;
    }

    /* Mobile responsive adjustments */
    @media (max-width: 768px) {
        .hero.hero-image {
            padding: 40px 0;
        }

        .search-card {
            padding: 20px;
        }

        .search-fields {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .search-btn {
            width: 100%;
            height: 48px;
            padding: 0;
            font-size: 1rem;
        }

        .field {
            padding: 10px 14px;
        }
    }

    /* Scroll Sections */
    .scroll-section {
        padding: 40px 0;
        background: #ffffff;
    }

    .scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        margin-top: 20px;
    }

    .scroll-container {
        display: flex;
        gap: 20px;
        padding-bottom: 10px;
    }

    .scroll-card {
        flex: 0 0 260px;
        background: white;
        border: 1px solid #eef2f6;
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .scroll-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    }

    .scroll-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .scroll-card-content {
        padding: 12px;
    }

    .scroll-card-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
        white-space: normal;
    }

    .scroll-card-content p {
        font-size: 0.85rem;
        color: #64748b;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .scroll-card-content .price {
        font-weight: 700;
        color: #2563eb;
        font-size: 1rem;
    }

    @media (max-width: 768px) {
        .scroll-card {
            flex: 0 0 220px;
        }

        .scroll-card img {
            height: 140px;
        }
    }

    /* Dynamic Footer */
    .dynamic-footer {
        background: #1e293b;
        color: #94a3b8;
        padding: 48px 0 24px;
        margin-top: 48px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-col h4 {
        color: white;
        font-size: 1rem;
        margin-bottom: 16px;
        font-weight: 600;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col li {
        margin-bottom: 8px;
    }

    .footer-col a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .footer-col a:hover {
        color: white;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 24px;
        border-top: 1px solid #334155;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
        }
    }

    /* Site Banner */
    .site-banner {
        text-align: center;
        padding: 10px 0;
        background: #f8fafc;
        border-bottom: 1px solid #eef2f6;
    }

    .site-banner img {
        max-width: 100%;
        height: auto;
        max-height: 120px;
        /* adjust as needed */
        object-fit: contain;
    }

    .site-banner-bottom {
        border-bottom: none;
        border-top: 1px solid #eef2f6;
        margin-top: 20px;
    }

    @media (max-width: 768px) {
        .site-banner img {
            max-height: 80px;
        }
    }

}