/* ===================================
   COAST TO COAST JOURNEYS - TRAVELOPICK STYLE
   Professional Clean Design
   =================================== */

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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-blue: #0e64a6;
    --primary-light: #3b82f6;
    --accent-orange: #f97316;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --radius-lg: 12px;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    max-height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.phone-number i {
    color: var(--primary);
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.mobile-menu-toggle {
    display: none;
}

/* === HERO === */
.hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(30, 64, 175, 0.95)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 60px 0 100px;
    color: white;
    text-align: center;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0.95;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* === SEARCH BOX === */
.search-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.search-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.search-tab.active {
    color: var(--primary);
}

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

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

.trip-type label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select {
    padding: 12px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-search {
    padding: 12px 28px;
    background: var(--success);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-search:hover {
    background: #059669;
    transform: translateY(-1px);
}

.hidden {
    display: none !important;
}

/* === TRUST BAND === */
.trust-band {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 14px 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    width: 100%;
    overflow: hidden;
}

.trust-band .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-items {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap !important;
}

.trust-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    color: white !important;
}

.trust-item i {
    font-size: 18px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item span {
    letter-spacing: 0.3px;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* === TRUST SECTION === */
.trust-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.trust-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.trust-badge-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 24px;
}

.trust-badge h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.trust-badge p {
    font-size: 14px;
    color: var(--gray-500);
}

/* === SECTIONS === */
.section {
    padding: 60px 0;
}

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

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

.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
}

/* === CARDS === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

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

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

.card-description {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #034b85 0%, #056cb9 100%);
    color: var(--gray-300);
    padding: 50px 0 20px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-col a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .search-form {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .header-actions,
    .mobile-menu-toggle,
    .nav-actions {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .card-grid,
    .trust-badges {
        grid-template-columns: 1fr;
    }

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

    /* Trust band mobile */
    .trust-items {
        gap: 30px;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .trust-item {
        font-size: 12px;
        flex-direction: row !important;
        flex-shrink: 0;
    }

    .trust-item i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* === SIDEBAR === */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 999;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
}

.sidebar-header img {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    border-radius: 8px;
    object-fit: contain;
}

.sidebar-header span {
    font-weight: 700;
    font-size: 1.1rem;
    flex: 1;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sidebar-nav {
    padding: 20px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--gray-100);
    color: var(--primary);
}

.sidebar-link i {
    width: 20px;
    text-align: center;
}

.sidebar-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 16px 0;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.8rem;
    color: var(--gray-500);
}

.sidebar-social {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.sidebar-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    transition: var(--transition);
}

.sidebar-social a:hover {
    background: var(--primary);
    color: white;
}