/* ============================================
   GUJARAT CAB - Main Stylesheet
   Colors: Blue #1a3c8f, Cherry Red #dc143c, White #ffffff
   ============================================ */

:root {
    --blue: #1a3c8f;
    --blue-dark: #0d2460;
    --blue-light: #2550b8;
    --red: #dc143c;
    --red-dark: #a50e2d;
    --red-light: #ff2a52;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #eef1f8;
    --gray: #6b7280;
    --dark: #0a1628;
    --text: #1e293b;
    --shadow: 0 4px 20px rgba(26,60,143,0.15);
    --shadow-red: 0 4px 20px rgba(220,20,60,0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-body); }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.red { color: var(--red); }
.blue { color: var(--blue); }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

/* Section Headings */
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge { display: inline-block; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--red); }
.section-subtitle { color: var(--gray); font-size: 16px; max-width: 580px; margin: 0 auto; }
.section-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; }
.section-divider span { display: block; height: 3px; border-radius: 2px; }
.section-divider span:nth-child(1), .section-divider span:nth-child(3) { width: 40px; background: var(--blue); }
.section-divider span:nth-child(2) { width: 12px; height: 12px; border-radius: 50%; background: var(--red); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: linear-gradient(135deg, var(--red-dark), var(--red)); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(220,20,60,0.4); }
.btn-secondary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: white; box-shadow: var(--shadow); }
.btn-secondary:hover { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-lg { padding: 18px 40px; font-size: 16px; border-radius: 10px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--blue-dark); color: rgba(255,255,255,0.85); padding: 8px 0; font-size: 13px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-left span, .top-bar-right a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); }
.top-bar-right a:hover { color: var(--red-light); }
.top-bar i { color: var(--red-light); font-size: 12px; }

/* ===== HEADER ===== */
.main-header { background: var(--white); box-shadow: 0 2px 20px rgba(26,60,143,0.1); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.main-header.scrolled { box-shadow: 0 4px 30px rgba(26,60,143,0.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }

/* Logo */
.logo-box { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; box-shadow: var(--shadow); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: var(--blue); letter-spacing: -0.5px; }
.logo-name .red { color: var(--red); }
.logo-tagline { font-size: 10px; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }

/* Navigation */
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li { position: relative; }
.main-nav ul li a { display: flex; align-items: center; gap: 6px; padding: 10px 14px; color: var(--text); font-size: 13.5px; font-weight: 600; font-family: var(--font-heading); border-radius: 8px; white-space: nowrap; }
.main-nav ul li a i.arrow { font-size: 10px; }
.main-nav ul li a.active, .main-nav ul li a:hover { color: var(--red); background: rgba(220,20,60,0.06); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 10px); left: 0; background: white; border-radius: var(--radius); box-shadow: 0 10px 40px rgba(26,60,143,0.15); min-width: 210px; padding: 8px; border-top: 3px solid var(--red); z-index: 100; }
.has-dropdown:hover .dropdown { display: block; animation: dropDown 0.2s ease; }
@keyframes dropDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dropdown li a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; color: var(--text); font-size: 13px; border-radius: 8px; font-family: var(--font-body); font-weight: 500; }
.dropdown li a:hover { color: var(--red); background: rgba(220,20,60,0.06); padding-left: 20px; }
.dropdown li a i { color: var(--blue); width: 16px; }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 12px; }
.btn-call { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; padding: 10px 20px; border-radius: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 13px; box-shadow: var(--shadow-red); transition: var(--transition); }
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(220,20,60,0.4); color: white; }
.btn-call i { font-size: 16px; animation: ring 2s infinite; }
@keyframes ring { 0%,100%{transform:rotate(0)} 10%{transform:rotate(-15deg)} 20%{transform:rotate(15deg)} 30%{transform:rotate(-10deg)} 40%{transform:rotate(10deg)} 50%{transform:rotate(0)} }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 25px; height: 2.5px; background: var(--blue); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SECTION ===== */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
.slide.active { opacity: 1; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(26,60,143,0.6) 50%, rgba(10,22,40,0.5) 100%); }
/* Slide backgrounds using CSS gradients as image placeholders */
.slide-1 { background: linear-gradient(135deg, #0a1628 0%, #1a3c8f 50%, #0a1628 100%); }
.slide-2 { background: linear-gradient(135deg, #0d2460 0%, #1a3c8f 60%, #dc143c22 100%); }
.slide-3 { background: linear-gradient(135deg, #0a1628 0%, #0d3b6e 50%, #1a3c8f 100%); }

/* Animated bg pattern */
.hero-bg-pattern { position: absolute; inset: 0; z-index: 1; opacity: 0.05; background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%); background-size: 20px 20px; }

/* Road animation */
.road-animation { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; z-index: 2; overflow: hidden; }
.road-line { position: absolute; bottom: 20px; height: 4px; background: white; opacity: 0.3; border-radius: 2px; animation: roadMove 3s linear infinite; }
.road-line:nth-child(1) { width: 80px; left: -80px; animation-delay: 0s; }
.road-line:nth-child(2) { width: 60px; left: -60px; animation-delay: 1s; }
.road-line:nth-child(3) { width: 100px; left: -100px; animation-delay: 2s; }
@keyframes roadMove { from { transform: translateX(0); } to { transform: translateX(calc(100vw + 200px)); } }

.hero-content { position: relative; z-index: 10; width: 100%; padding: 100px 0 60px; }
.hero-inner { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; }

/* Hero Text */
.hero-text { color: white; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(220,20,60,0.2); border: 1px solid rgba(220,20,60,0.4); color: #ffaabd; padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(10px); }
.hero-badge i { color: var(--red-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }
.hero-title { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 62px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-title .line1 { display: block; color: white; }
.hero-title .line2 { display: block; color: var(--red-light); text-shadow: 0 0 30px rgba(220,20,60,0.5); }
.hero-title .line3 { display: block; color: rgba(255,255,255,0.8); font-size: 0.6em; font-weight: 500; margin-top: 8px; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 30px; max-width: 480px; }
.hero-stats { display: flex; gap: 30px; margin-bottom: 30px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: var(--red-light); display: block; }
.hero-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Slider Controls */
.slider-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: var(--transition); }
.slider-dot.active { width: 30px; border-radius: 5px; background: var(--red); }

/* Hero Booking Form */
.hero-form-card { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.3); }
.form-tabs { display: flex; background: var(--blue-dark); }
.form-tab { flex: 1; padding: 14px 8px; text-align: center; color: rgba(255,255,255,0.6); font-family: var(--font-heading); font-size: 12px; font-weight: 700; cursor: pointer; transition: var(--transition); border: none; background: none; border-bottom: 3px solid transparent; }
.form-tab.active { color: white; border-bottom-color: var(--red); background: rgba(255,255,255,0.05); }
.form-tab:hover { color: white; }
.form-tab i { display: block; font-size: 16px; margin-bottom: 4px; }
.form-panels { padding: 24px; }
.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.form-title { font-family: var(--font-heading); font-size: 16px; font-weight: 800; color: var(--blue-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.form-title i { color: var(--red); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
    font-family: var(--font-body); font-size: 13.5px; color: var(--text);
    transition: var(--transition); background: var(--off-white); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(26,60,143,0.08); }
.form-group .input-icon { position: relative; }
.form-group .input-icon i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--blue); font-size: 13px; }
.form-group .input-icon input, .form-group .input-icon select { padding-left: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; border: none; border-radius: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 14px; letter-spacing: 1px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); box-shadow: var(--shadow-red); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220,20,60,0.4); }

/* ===== FEATURES STRIP ===== */
.features-strip { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 40px 0; }
.features-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature-item { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.05); }
.feature-icon { width: 54px; height: 54px; background: rgba(220,20,60,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red-light); font-size: 22px; flex-shrink: 0; border: 1px solid rgba(220,20,60,0.3); }
.feature-text h4 { font-family: var(--font-heading); color: white; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.feature-text p { color: rgba(255,255,255,0.6); font-size: 12px; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 90px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(26,60,143,0.06); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,60,143,0.18); }
.service-img { height: 200px; position: relative; overflow: hidden; }
.service-img-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 70px; position: relative; }
.service-img-bg.oneway { background: linear-gradient(135deg, #1a3c8f, #2550b8); }
.service-img-bg.roundtrip { background: linear-gradient(135deg, #dc143c, #a50e2d); }
.service-img-bg.local { background: linear-gradient(135deg, #0d3b6e, #1a3c8f); }
.service-img-bg.airport { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.service-img-bg.outstation { background: linear-gradient(135deg, #800020, #dc143c); }
.service-img-bg.corporate { background: linear-gradient(135deg, #0d2460, #1a3c8f); }
.service-badge-tag { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.15); color: white; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }
.service-body { padding: 24px; }
.service-body h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.service-body p { color: var(--gray); font-size: 13.5px; line-height: 1.7; margin-bottom: 16px; }
.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.service-feat-tag { background: var(--light-gray); color: var(--blue); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.service-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--light-gray); }
.service-price { font-family: var(--font-heading); font-weight: 800; }
.service-price .from { font-size: 11px; color: var(--gray); display: block; }
.service-price .amount { font-size: 20px; color: var(--red); }
.service-book-btn { display: flex; align-items: center; gap: 6px; background: var(--blue); color: white; padding: 8px 18px; border-radius: 8px; font-size: 12px; font-weight: 700; font-family: var(--font-heading); }
.service-book-btn:hover { background: var(--red); color: white; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 90px 0; background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--red)); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 28px; font-weight: 900; margin: 0 auto 20px; position: relative; border: 3px solid; }
.step-card:nth-child(odd) .step-num { background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: white; border-color: var(--blue); box-shadow: 0 6px 20px rgba(26,60,143,0.3); }
.step-card:nth-child(even) .step-num { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; border-color: var(--red); box-shadow: var(--shadow-red); }
.step-icon { position: absolute; top: -10px; right: -10px; width: 30px; height: 30px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; box-shadow: var(--shadow); }
.step-card h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.step-card p { color: var(--gray); font-size: 13px; line-height: 1.6; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 90px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual { position: relative; }
.why-main-img { width: 100%; height: 420px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-light)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 120px; box-shadow: 0 20px 50px rgba(26,60,143,0.3); position: relative; overflow: hidden; }
.why-main-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(220,20,60,0.15)); }
.why-badge-float { position: absolute; background: white; border-radius: var(--radius); padding: 14px 18px; box-shadow: 0 8px 25px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 12px; }
.why-badge-float.top-right { top: 20px; right: -20px; }
.why-badge-float.bottom-left { bottom: 30px; left: -20px; }
.badge-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.badge-icon.red { background: rgba(220,20,60,0.1); color: var(--red); }
.badge-icon.blue { background: rgba(26,60,143,0.1); color: var(--blue); }
.badge-info .num { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: var(--dark); display: block; line-height: 1; }
.badge-info .lbl { font-size: 11px; color: var(--gray); }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-point { display: flex; gap: 14px; padding: 18px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 3px solid var(--blue); transition: var(--transition); }
.why-point:hover { border-left-color: var(--red); transform: translateX(4px); }
.why-point-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.why-point h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.why-point p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ===== FLEET SECTION ===== */
.fleet-section { padding: 90px 0; background: white; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fleet-card { background: var(--off-white); border-radius: var(--radius-lg); overflow: hidden; border: 2px solid transparent; transition: var(--transition); cursor: pointer; }
.fleet-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.fleet-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 70px; position: relative; }
.fleet-img.sedan { background: linear-gradient(135deg, #e8f0fe, #c5d4f8); }
.fleet-img.suv { background: linear-gradient(135deg, #fde8ec, #f8c5cf); }
.fleet-img.innova { background: linear-gradient(135deg, #e8f4e8, #c5e8c5); }
.fleet-img.tempo { background: linear-gradient(135deg, #fef3e8, #f8dac5); }
.fleet-body { padding: 16px; }
.fleet-body h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.fleet-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.fleet-spec { font-size: 11px; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.fleet-spec i { color: var(--blue); }
.fleet-rate { font-family: var(--font-heading); font-size: 13px; color: var(--red); font-weight: 700; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 90px 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.7); }
.testimonials-section .section-badge { background: rgba(220,20,60,0.3); }
.testimonials-section .section-divider span:nth-child(1),
.testimonials-section .section-divider span:nth-child(3) { background: rgba(255,255,255,0.4); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 28px; border: 1px solid rgba(255,255,255,0.12); transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.test-stars { color: #fbbf24; margin-bottom: 14px; font-size: 14px; }
.test-text { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 18px; font-weight: 900; color: white; flex-shrink: 0; }
.test-name { color: white; font-weight: 700; font-size: 14px; font-family: var(--font-heading); }
.test-location { color: rgba(255,255,255,0.5); font-size: 12px; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: var(--off-white); }
.cta-box { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--red-dark) 100%); border-radius: var(--radius-lg); padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: rgba(220,20,60,0.15); }
.cta-text h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 900; color: white; margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 15px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.main-footer { background: var(--dark); position: relative; }
.footer-wave { line-height: 0; }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 50px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.footer-logo .logo-name { font-family: var(--font-heading); font-size: 20px; font-weight: 900; color: white; display: block; }
.footer-logo .red { color: var(--red); }
.footer-logo .logo-tagline { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; display: block; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 13.5px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.08); }
.social-btn:hover { background: var(--red); color: white; border-color: var(--red); transform: translateY(-2px); }
.footer-title { font-family: var(--font-heading); font-size: 15px; font-weight: 800; color: white; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13.5px; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a i { font-size: 10px; color: var(--red); }
.footer-links a:hover { color: white; padding-left: 6px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.55); font-size: 13.5px; margin-bottom: 14px; }
.footer-contact-list .contact-icon { width: 34px; height: 34px; background: rgba(220,20,60,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--red-light); font-size: 13px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.55); }
.footer-contact-list a:hover { color: var(--red-light); }
.app-badges { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.app-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; transition: var(--transition); }
.app-badge:hover { background: var(--blue); color: white; border-color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--red-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 80px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white; font-size: 26px; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); color: white; }
.wa-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(37,211,102,0.3); animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 10px; background: var(--blue); color: white; font-size: 14px; display: none; align-items: center; justify-content: center; z-index: 998; box-shadow: var(--shadow); transition: var(--transition); }
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--red); transform: translateY(-2px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 50%); background-size: 30px 30px; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(30px, 5vw, 50px); font-weight: 900; color: white; margin-bottom: 12px; }
.page-hero h1 span { color: var(--red-light); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 500px; margin: 0 auto 20px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb i { font-size: 10px; }

/* ===== BOOK PAGE ===== */
.booking-section { padding: 80px 0; background: var(--off-white); }
.booking-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); max-width: 700px; margin: 0 auto; }
.booking-card h2 { font-family: var(--font-heading); font-size: 26px; font-weight: 900; color: var(--blue-dark); margin-bottom: 8px; }
.booking-card .sub { color: var(--gray); font-size: 14px; margin-bottom: 28px; }

/* ===== ALERT ===== */
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { width: 100%; height: 380px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 100px; box-shadow: 0 20px 50px rgba(26,60,143,0.25); }
.about-counters { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 20px; }
.about-counter { text-align: center; background: white; padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--blue); }
.about-counter:nth-child(even) { border-top-color: var(--red); }
.about-counter .num { font-family: var(--font-heading); font-size: 30px; font-weight: 900; color: var(--blue); display: block; }
.about-counter:nth-child(even) .num { color: var(--red); }
.about-counter .lbl { font-size: 12px; color: var(--gray); }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.mv-card { padding: 24px; border-radius: var(--radius); background: var(--off-white); border-left: 4px solid var(--blue); }
.mv-card:nth-child(2) { border-left-color: var(--red); }
.mv-card h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.mv-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info-cards { display: grid; gap: 16px; }
.contact-info-card { display: flex; gap: 16px; padding: 22px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.ci-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ci-icon.blue { background: rgba(26,60,143,0.1); color: var(--blue); }
.ci-icon.red { background: rgba(220,20,60,0.1); color: var(--red); }
.ci-body h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.ci-body p, .ci-body a { color: var(--gray); font-size: 13.5px; }
.ci-body a:hover { color: var(--red); }
.contact-form-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.contact-form-card .sub { color: var(--gray); font-size: 14px; margin-bottom: 24px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-img { height: 200px; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,60,143,0.7); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== PRIVACY PAGE ===== */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--blue-dark); margin: 30px 0 12px; }
.privacy-content p { color: var(--gray); font-size: 14px; line-height: 1.9; margin-bottom: 16px; }
.privacy-content ul { padding-left: 20px; color: var(--gray); font-size: 14px; line-height: 2; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-form-card { max-width: 540px; margin: 0 auto; }
    .features-strip-grid { grid-template-columns: repeat(2,1fr); }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .fleet-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid::before { display: none; }
    .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); z-index: 999; flex-direction: column; justify-content: center; align-items: center; }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; text-align: center; gap: 8px; }
    .main-nav ul li a { color: rgba(255,255,255,0.8); font-size: 16px; padding: 14px 30px; }
    .dropdown { position: static; box-shadow: none; background: rgba(255,255,255,0.05); }
    .hamburger { display: flex; z-index: 1000; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .btn-call span { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; padding: 40px 24px; text-align: center; }
    .hero-stats { gap: 20px; }
    .why-points { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .fleet-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .features-strip-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .about-counters { grid-template-columns: repeat(2,1fr); }
    .mission-vision { grid-template-columns: 1fr; }
}
