/*
Theme Name: DinoTransfers
Theme URI: https://dinotransfers.com
Author: DinoTransfers Team
Author URI: https://dinotransfers.com
Description: A stunning, modern theme for premium transfer booking services
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dinotransfers
Tags: booking, transfers, transportation, responsive, modern, premium
*/

/* ========================================
   CSS CUSTOM PROPERTIES - Design System
   ======================================== */
:root {
    /* Primary Brand Colors */
    --primary: #0a4d8c;
    --primary-light: #1a6eb5;
    --primary-dark: #063a6a;
    --primary-gradient: linear-gradient(135deg, #0a4d8c 0%, #1a6eb5 50%, #2d8fd9 100%);
    
    /* Secondary - Coral/Orange accent */
    --secondary: #ff6b35;
    --secondary-light: #ff8c5a;
    --secondary-dark: #e55a2b;
    
    /* Accent - Gold */
    --accent: #ffc107;
    --accent-light: #ffd54f;
    
    /* Semantic Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Sora', var(--font-primary);
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(10, 77, 140, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: radial-gradient(circle at 12% 8%, #e7f5ff 0%, #ffffff 45%, #f6fbff 100%);
    overflow-x: hidden;
}

/* Constrain third-party map renderers to viewport width. */
.gm-style,
.gm-style > div,
.gm-style img {
    max-width: 100% !important;
}

#chbs_google_map {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-lg);
}

/* ========================================
   HEADER - Modern Glassmorphism
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all var(--transition-base);
    text-decoration: none;
}

.site-header.scrolled .site-logo {
    color: var(--primary);
    text-shadow: none;
}

.brand-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.9;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.32));
}

.brand-dino {
    color: #ff2b2b;
    font-size: 2.35rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.04em;
}

.brand-bottom-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: -2px;
    margin-left: 26px;
}

.brand-truck {
    width: 52px;
    height: 22px;
    color: #9fd0ff;
    flex-shrink: 0;
}

.brand-transfers {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.08em;
}

.site-header.scrolled .brand-lockup {
    filter: none;
}

.site-header.scrolled .brand-truck,
.site-header.scrolled .brand-transfers {
    color: var(--primary);
}

/* Navigation */
.main-navigation {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.main-navigation a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    padding: var(--space-sm) 0;
    position: relative;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.site-header.scrolled .main-navigation a {
    color: var(--gray-700);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition-base);
}

.main-navigation a:hover::after,
.main-navigation a.current::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

/* ========================================
   BUTTONS - Modern Design
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 77, 140, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 77, 140, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.site-header.scrolled .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.site-header.scrolled .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: var(--space-sm) var(--space-md);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.site-header.scrolled .btn-ghost {
    color: var(--gray-700);
}

.site-header.scrolled .btn-ghost:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

/* ========================================
   HERO SECTION - Epic Fullscreen
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-gradient);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: url('assets/images/hero-van.jpg') center center / cover no-repeat;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 42, 76, 0.94) 0%,
        rgba(14, 74, 128, 0.90) 50%,
        rgba(28, 116, 188, 0.86) 100%
    );
    z-index: 1;
}

/* Animated Wave Bottom */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 2;
    overflow: hidden;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    animation: wave 25s linear infinite;
}

.hero-waves svg:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.5;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: var(--space-4xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.8s ease-out;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    text-shadow: 0 6px 26px rgba(0,0,0,0.45), 0 2px 4px rgba(0,0,0,0.38);
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    opacity: 1;
    line-height: 1.7;
    text-shadow: 0 3px 16px rgba(0,0,0,0.36), 0 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.hero-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.hero-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-feature small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.8;
    text-decoration: none;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-section {
    position: relative;
    z-index: 20;
    margin-top: -100px;
    padding-bottom: var(--space-4xl);
}

.booking-form-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-form-header {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-xl) var(--space-2xl);
    text-align: center;
}

.booking-form-header h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.booking-form-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.booking-alert {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header .overline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title h2 {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section-title p {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.feature-card p {
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: var(--space-3xl) 0;
    background: var(--primary-gradient);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    padding: var(--space-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: var(--space-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 760px;
    justify-self: center;
}

.review-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-md);
    margin: 0 0 var(--space-2xl);
}

.review-proof-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,255,0.98));
    border: 1px solid rgba(10, 77, 140, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
    text-align: center;
}

.review-proof-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.review-proof-item span {
    display: block;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
}

.review-source-note {
    margin-top: var(--space-xl);
    text-align: center;
}

.review-source-note p {
    margin-bottom: 0;
    color: var(--gray-500);
}

.review-source-note a {
    font-weight: 700;
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-xl);
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.testimonial-rating {
    color: var(--accent);
    margin-top: var(--space-md);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-900);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: var(--space-xl);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .site-logo,
.footer-logo {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    color: var(--white);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-widget h3,
.footer-widget h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: var(--space-sm);
}

.footer-widget a,
.footer-widget p {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-widget a:hover {
    color: var(--white);
    padding-left: var(--space-sm);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-contact svg {
    flex-shrink: 0;
    stroke: var(--secondary);
}

.payment-methods {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-methods > span {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.payment-icons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.payment-icon {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-xl) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--gray-500);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-payments {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.footer-payments span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .review-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: var(--space-lg);
        display: none;
    }
    
    .main-navigation.open {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .brand-dino {
        font-size: 2rem;
    }

    .brand-bottom-row {
        margin-left: 18px;
    }

    .brand-truck {
        width: 44px;
        height: 18px;
    }

    .brand-transfers {
        font-size: 0.92rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: var(--space-lg);
    }
    
    .booking-section {
        margin-top: -50px;
        padding: 0 var(--space-md);
    }
    
    .footer-grid,
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .review-proof-strip {
        grid-template-columns: 1fr;
    }

    .brand-dino {
        font-size: 1.45rem;
    }

    .brand-bottom-row {
        margin-left: 12px;
        gap: 4px;
    }

    .brand-truck {
        width: 34px;
        height: 16px;
    }

    .brand-transfers {
        font-size: 0.68rem;
        letter-spacing: 0.05em;
    }

    .hero-features {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-5 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--gray-700);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    z-index: 1000;
    padding: 100px var(--space-xl) var(--space-3xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-navigation.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: block;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    padding: var(--space-lg) 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    padding-left: var(--space-md);
    color: var(--accent);
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-navigation {
        display: flex;
        flex-direction: column;
    }
    
    .header-cta {
        gap: var(--space-sm);
    }
    
    .header-cta .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
    }
    
    .header-cta .btn svg {
        width: 14px;
        height: 14px;
    }
}
