/* World Airfare Stocks Master Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-hero: #050b14;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    
    --primary: #0A192F; /* Navy Blue */
    --accent-red: #D91A2A; /* Crimson Red */
    --accent-red-hover: #b0121f;
    --accent-teal: #0f172a; /* Dark slate */
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

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

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header h2 span {
    color: var(--accent-red);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Header & Navigation - Premium White Light Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-header);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.logo span {
    color: var(--accent-red);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(217, 26, 42, 0.25);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    transform: rotate(45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: var(--transition-normal);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

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

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

.btn-primary {
    background: var(--accent-red);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(217, 26, 42, 0.2);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(217, 26, 42, 0.35);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section - Glowing Red and Dark Map Overlay */
.hero {
    position: relative;
    padding: 110px 0 140px;
    background-color: var(--bg-hero);
    background-image: 
        radial-gradient(circle at 75% 45%, rgba(217, 26, 42, 0.35) 0%, transparent 55%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" opacity="0.04"><circle cx="50" cy="50" r="1.5" fill="white"/></svg>');
    color: var(--text-light);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.2) 0%, rgba(5, 11, 20, 0.8) 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--accent-red);
}

.hero-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-red);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-plane-img {
    width: 130%;
    max-width: 600px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

/* Booking Search Panel - Crisp White Premium overlay */
.search-panel {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    padding: 24px 30px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
    margin-top: -65px;
    position: relative;
    z-index: 10;
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.search-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 4px;
}

.search-tab.active {
    background: var(--accent-red);
    color: white;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr 0.9fr 0.7fr;
    gap: 16px;
    align-items: flex-end;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}

.search-form input, .search-form select {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 12px 12px 12px 38px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.search-form input:focus, .search-form select:focus {
    border-color: var(--accent-red);
    outline: none;
    background: #ffffff;
}

.btn-search {
    width: 100%;
    padding: 13px;
    border-radius: 4px;
    background: var(--accent-red);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(217, 26, 42, 0.2);
}

.btn-search:hover {
    background: var(--accent-red-hover);
}

/* Destinations Cards Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.destination-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.destination-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.destination-card:hover .destination-image-container img {
    transform: scale(1.08);
}

.destination-region-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.destination-price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--accent-red);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.destination-details {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.destination-title h3 {
    font-size: 1.4rem;
    font-weight: 800;
}

.destination-title span.airport {
    font-size: 0.8rem;
    font-weight: 700;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-secondary);
}

.destination-country {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.destination-country svg {
    width: 14px;
    height: 14px;
    fill: var(--text-muted);
}

.destination-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.destination-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.airline-info {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Why Choose Us Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 36px 30px;
    transition: var(--transition-normal);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: rgba(217, 26, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

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

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Partners Carousel - Light Strip styling */
.partners-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scrollCarousel 28s linear infinite;
    width: max-content;
}

.carousel-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 10px 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.carousel-item img {
    height: 26px;
    object-fit: contain;
    filter: none !important; /* accurate color logos */
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); }
}

/* Light Blue Map Theme */
.map-section {
    background: #f0f7ff; /* Very soft light blue background */
    padding: 80px 0;
}

.map-container-outer {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.map-bg-countries path {
    fill: #ffffff !important; /* White land */
    stroke: #cbd5e1 !important; /* Slate borders */
    stroke-width: 0.8px;
}

.map-bg-countries path:hover {
    fill: #f8fafc !important;
}

.map-svg-container {
    background-color: #dbeafe; /* Light blue water */
    border-radius: 4px;
    overflow: hidden;
}

/* Accurate nodes based on design */
.map-node.origin .map-node-circle {
    fill: #ffffff;
    stroke: var(--accent-red);
    stroke-width: 2.5px;
}

.map-node.origin .map-node-pulse {
    fill: var(--accent-red);
}

.map-node-circle {
    fill: var(--accent-red);
    stroke: #ffffff;
    stroke-width: 1.5px;
}

.map-node-pulse {
    fill: var(--accent-red);
}

/* Curved Dashed routes */
.route-path {
    stroke: var(--accent-red);
    stroke-width: 2px;
    stroke-dasharray: 6 4;
}

.route-path.connecting {
    stroke: #3b82f6; /* Blue dashed connecting */
}

/* Premium Map Labels */
.map-price-tag {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 6px 10px !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08) !important;
    text-align: left;
}

.map-price-tag .tag-city {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-price-tag .tag-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
    background: #0f172a; /* Black background price pill */
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    text-align: center;
    display: inline-block;
}

/* Plane flying */
.plane-marker-element svg {
    fill: var(--accent-red) !important;
    width: 20px;
    height: 20px;
}

/* Fares Table Styles */
.fares-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.fares-table th, .fares-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    text-align: left;
}

.fares-table th {
    background: #f8fafc;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fares-table tr:hover td {
    background: rgba(15, 43, 92, 0.01);
}

.fare-destination {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fare-destination-img {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.fare-destination-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.fare-destination-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.fare-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-red);
    font-family: var(--font-header);
}

/* About Us stats & visual layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Grid & Form Panels - Precise colored overlays */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Themed card icon colors matching Page 8 */
.contact-card-icon.whatsapp {
    background: rgba(37, 211, 102, 0.08);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-card-icon.phone {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-card-icon.email {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-card-icon.address {
    background: rgba(217, 26, 42, 0.08);
    color: var(--accent-red);
    border: 1px solid rgba(217, 26, 42, 0.2);
}

.contact-card-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-card-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.contact-form-panel p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.form-group-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group-full label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-form-panel input, .contact-form-panel textarea, .contact-form-panel select {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.contact-form-panel input:focus, .contact-form-panel textarea:focus, .contact-form-panel select:focus {
    border-color: var(--accent-red);
    background: #ffffff;
    outline: none;
}

/* Category Filter Tabs styling */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.filter-btn {
    border-radius: 4px;
    background: #f1f5f9;
    color: var(--text-secondary);
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
    box-shadow: 0 4px 12px rgba(217, 26, 42, 0.2);
}

/* Testimonials & Trust Section Styling */
.testimonials-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}
.testimonial-stars {
    color: #f59e0b; /* Amber star color */
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.testimonial-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #f1f5f9;
}
.testimonial-author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}
.testimonial-author-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.trust-badges-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-badge-item img {
    height: 32px;
    object-fit: contain;
}
.trust-badge-item .rating-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-header);
}
.trust-badge-item .rating-source {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Footer - Dark theme with high contrast text */
footer {
    background: #090e17;
    color: #cbd5e1;
    border-top: 4px solid var(--accent-red);
    padding: 80px 0 30px;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
}

.footer-col p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--accent-red);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .search-panel {
        margin-top: -30px;
    }
    
    .search-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .btn-search {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-ctas {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .btn-search {
        grid-column: span 1;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
