/* ====================================
   PK BUSES Design System
   Inspired by PHPTravels, BookMe.pk, Omio.com
   Modern, Clean, Professional Travel Platform
   ==================================== */

:root {
    /* Primary Colors - Travel Industry Standard */
    --primary-green: #28a745;
    --primary-green-dark: #218838;
    --primary-green-light: #e8f5e9;
    --primary-hover: #20c997;
    
    /* Neutral Colors - Modern Gray Scale */
    --white: #ffffff;
    --grey-50: #f9fafb;
    --grey-100: #f3f4f6;
    --grey-200: #e5e7eb;
    --grey-300: #d1d5db;
    --grey-400: #9ca3af;
    --grey-500: #6b7280;
    --grey-600: #4b5563;
    --grey-700: #374151;
    --grey-800: #1f2937;
    --grey-900: #111827;
    
    /* Accent Colors */
    --blue: #3b82f6;
    --blue-light: #dbeafe;
    --orange: #f59e0b;
    --orange-light: #fef3c7;
    
    /* Dark Theme for Hero */
    --dark-bg: #1e293b;
    --dark-bg-light: #334155;
    --dark-text: #f1f5f9;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Spacing - Consistent Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius - Modern Smooth */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 24px;
    --radius-full: 9999px;
    
    /* Shadows - Elevation System */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ====================================
   Reset & Base Styles
   ==================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background: var(--grey-50);
    color: var(--grey-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
}

/* ====================================
   Container & Layout
   ==================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-white {
    background: var(--white);
}

.section-grey {
    background: var(--grey-50);
}

/* ====================================
   Header - Modern Travel Platform Style
   ==================================== */

.header {
    background: var(--white);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    border-bottom: 1px solid #dadce0;
    transition: all 0.2s ease;
}

.header.scrolled {
    box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.8px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo span {
    color: var(--grey-700);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--grey-700);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--grey-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: var(--spacing-sm) 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

/* Primary Button in Nav */
.btn-primary-nav {
    background: #28a745 !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
}

.btn-primary-nav::after {
    display: none !important;
}

.btn-primary-nav:hover {
    background: #218838 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
}

/* Dropdown Menu */
.nav-links .dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    padding: var(--spacing-sm) 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 12px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--grey-700) !important;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--grey-50);
    color: var(--primary-green) !important;
}

.dropdown-menu a i {
    width: 18px;
    color: var(--grey-500);
}

.dropdown-menu a:hover i {
    color: var(--primary-green);
}

.admin-btn {
    background: var(--grey-100);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    color: var(--grey-700) !important;
}

.admin-btn:hover {
    background: var(--grey-200);
    color: var(--grey-900) !important;
}

/* ====================================
   Hero Section - Dark Grey Background
   ==================================== */

.hero,
.hero-section {
    background: linear-gradient(135deg, #455a64 0%, #37474f 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23263238" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center/cover no-repeat;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.hero-title {
    color: white;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: var(--dark-text);
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.95;
}

/* ====================================
   Search Box - White Card with Shadow
   ==================================== */

.search-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: var(--spacing-md);
    align-items: end;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: var(--grey-700);
    font-size: 0.875rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey-500);
    pointer-events: none;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: 0.875rem var(--spacing-md) 0.875rem 2.75rem;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: white;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #28a745;
    background: white;
    box-shadow: 0 1px 1px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

/* ====================================
   Buttons - Solid Green Pill Style
   ==================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
    background: white;
    color: #5f6368;
}

.btn:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.btn-primary {
    background: #28a745;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #218838;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.btn-primary:active {
    background: #1e7e34;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3);
}

.btn-secondary {
    background: white;
    color: #5f6368;
    border: 1px solid #dadce0;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #dadce0;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.btn-outline {
    background: transparent;
    border: 1px solid #28a745;
    color: #28a745;
}

.btn-outline:hover {
    background: #f0f9f4;
    border-color: #28a745;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 12px 32px;
    font-size: 15px;
}

.search-btn {
    padding: 10px 24px;
    height: auto;
}

/* ====================================
   Cards - Modern Travel Platform Style
   ==================================== */

.card {
    background: white;
    border-radius: 8px;
    padding: var(--spacing-xl);
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
    transition: all 0.2s ease;
    border: 1px solid #dadce0;
}

.card:hover {
    box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
}

.card-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #dadce0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--grey-900);
    margin: 0;
}

.card-body {
    color: var(--grey-700);
    font-size: 0.95rem;
}

/* Featured Items Card */
.featured-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--grey-200);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-green);
}

.featured-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grey-900);
    margin-bottom: var(--spacing-sm);
}

.featured-card-subtitle {
    font-size: 0.875rem;
    color: var(--grey-600);
    margin-bottom: var(--spacing-md);
}

.featured-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.featured-card-price-label {
    font-size: 0.875rem;
    color: var(--grey-600);
    font-weight: 400;
}

/* ====================================
   Forms
   ==================================== */

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: var(--grey-700);
    font-size: 0.875rem;
}

.form-label i {
    color: var(--primary-green);
    margin-right: var(--spacing-xs);
}

.form-control {
    width: 100%;
    padding: 0.875rem var(--spacing-md);
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #28a745;
    background: white;
    box-shadow: 0 1px 1px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

/* Select2 Customization */
.select2-container--default .select2-selection--single {
    border: 1px solid #dadce0;
    border-radius: 4px;
    height: 40px;
    padding-left: 2.75rem;
    background: white;
    transition: all 0.2s ease;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    padding-left: 0;
    color: var(--grey-800);
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.08);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-green);
}

/* ====================================
   Section Titles
   ==================================== */

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--grey-600);
    margin-bottom: var(--spacing-2xl);
}

/* ====================================
   Badges & Tags
   ==================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

.badge-primary {
    background: var(--primary-green);
    color: white;
}

.badge-success {
    background: var(--success);
    color: white;
}

.badge-warning {
    background: var(--warning);
    color: white;
}

.badge-error {
    background: var(--error);
    color: white;
}

.badge-grey {
    background: var(--grey-200);
    color: var(--grey-700);
}

/* ====================================
   Alerts
   ==================================== */

.alert {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    border: 1px solid;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #4caf50;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border-color: #f44336;
}

.alert-warning {
    background: #fff3e0;
    color: #e65100;
    border-color: #ff9800;
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #2196f3;
}

/* ====================================
   Footer - Modern Professional Style
   ==================================== */

.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--grey-400);
    padding: var(--spacing-3xl) 0 var(--spacing-lg) 0;
    margin-top: var(--spacing-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: var(--grey-400);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-text {
    color: var(--grey-400);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--grey-400);
}

.footer-contact i {
    color: var(--primary-green);
    margin-top: 0.25rem;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    border-color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--grey-500);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--grey-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-green);
}

/* ====================================
   Grid System
   ==================================== */

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ====================================
   Utilities
   ==================================== */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

/* ====================================
   Page Hero (for internal pages)
   ==================================== */

.page-hero {
    background: linear-gradient(135deg, #455a64 0%, #37474f 100%);
    padding: var(--spacing-2xl) 0;
    color: white;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.page-hero p {
    font-size: 1.0625rem;
    opacity: 0.9;
}

/* ====================================
   Routes Grid & Cards
   ==================================== */

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.route-card {
    background: white;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.route-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-green);
}

.route-cities {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.route-city {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--grey-900);
}

.route-code {
    font-size: 0.875rem;
    color: var(--grey-600);
    margin-top: 0.25rem;
}

.route-icon {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.route-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-200);
    font-size: 0.875rem;
    color: var(--grey-600);
}

.route-price {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1rem;
}

/* ====================================
   Search Grid
   ==================================== */

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

/* ====================================
   Responsive Design
   ==================================== */

@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 65px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 65px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-xl);
        gap: var(--spacing-md);
        transition: right 0.3s ease;
        box-shadow: -4px 0 12px rgba(0,0,0,0.1);
        border-left: 1px solid var(--grey-200);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid var(--grey-200);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .search-box {
        padding: var(--spacing-lg);
    }
    
    .card {
        padding: var(--spacing-lg);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
