/* =====================================================
   Mechaniconspot — Complete Stylesheet
   Theme: Dark Navy + Crimson Red (matching logo)
===================================================== */
:root {
  --red: #8B1A1A;
  --red-dark: #6d1414;
  --red-light: #a52020;
  --navy: #1a2a3a;
  --navy-dark: #0f1e2d;
  --navy-mid: #162230;
  --navy-light: #1e3045;
  --navy-card: #152535;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --text-dark: #0d1117;
  --text-body: #374151;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --transition: 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text-body); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--red); }

/* ===== TOPBAR ===== */
.topbar { background: var(--navy-dark); padding: 9px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--font-condensed); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; color: var(--gray-400); }
.topbar a { color: #e8b04a; transition: var(--transition); }
.topbar a:hover { color: #f5c97a; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 4px solid var(--red); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 24px; gap: 16px; max-width: 1180px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 150px; height: 56px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-condensed); font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; text-transform: uppercase; }
.logo-main span { color: var(--red); }
.logo-sub { font-size: 0.65rem; font-weight: 600; color: var(--gray-400); letter-spacing: 0.13em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav a { font-family: var(--font-condensed); font-size: 0.92rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dark); padding: 7px 11px; border-radius: 7px; transition: var(--transition); white-space: nowrap; }
.nav a:hover, .nav a.active { color: var(--red); background: rgba(139,26,26,0.07); }
.nav .nav-cta { background: var(--red); color: var(--white) !important; padding: 9px 17px; border-radius: 8px; }
.nav .nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(139,26,26,0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-condensed); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 13px 26px; border-radius: 10px; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,26,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-dark:hover { background: var(--red); color: var(--white); }
.btn-lg { padding: 16px 34px; font-size: 1.12rem; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-tag { display: inline-block; font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); background: rgba(139,26,26,0.09); padding: 4px 14px; border-radius: 30px; margin-bottom: 12px; border: 1px solid rgba(139,26,26,0.22); }
.section-tag.light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); line-height: 1.05; color: var(--text-dark); margin-bottom: 14px; letter-spacing: 0.02em; }
.section-header p { font-size: 1rem; color: var(--gray-600); line-height: 1.7; }

/* ===== HERO (homepage) ===== */
.hero { position: relative; background: var(--navy-dark); min-height: 88vh; display: flex; align-items: center; overflow: hidden; padding: 80px 0 60px; }
.hero-bg { position: absolute; inset: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(130deg, #0f1e2d 0%, #1a2a3a 55%, #0f1e2d 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(139,26,26,0.07) 1px,transparent 1px), linear-gradient(90deg,rgba(139,26,26,0.07) 1px,transparent 1px); background-size: 52px 52px; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-content { max-width: 580px; }
.hero-badge { display: inline-block; background: rgba(139,26,26,0.18); border: 1px solid rgba(139,26,26,0.45); color: #f08080; font-family: var(--font-condensed); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 30px; margin-bottom: 22px; animation: fadeInUp .6s ease both; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.6rem,5vw,4.8rem); line-height: 1.0; color: var(--white); letter-spacing: 0.02em; margin-bottom: 20px; animation: fadeInUp .6s .1s ease both; }
.hero-accent { color: var(--red); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.68); max-width: 500px; margin-bottom: 32px; animation: fadeInUp .6s .2s ease both; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; animation: fadeInUp .6s .3s ease both; }
.hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; animation: fadeInUp .6s .4s ease both; }
.hero-checks span { font-family: var(--font-condensed); font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }
.hero-video { animation: fadeInUp .6s .2s ease both; }
.hero-video img,
.hero-video video { width: 100%; display: block; border-radius: var(--radius-lg); border: 2px solid rgba(139,26,26,0.35); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.hero-video video { aspect-ratio: 16 / 9; object-fit: cover; }
.rounded-lg { border-radius: var(--radius-lg); }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--red); padding: 18px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-around; gap: 10px; flex-wrap: wrap; }
.trust-item { text-align: center; padding: 4px 10px; }
.ti-num { display: block; font-family: var(--font-condensed); font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.ti-label { display: block; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.08em; }
.trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.28); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--navy-dark); padding: 80px 24px 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(139,26,26,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(139,26,26,0.06) 1px,transparent 1px); background-size: 52px 52px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.6rem,5vw,4.2rem); color: var(--white); margin-bottom: 16px; letter-spacing: 0.02em; line-height: 1.0; }
.page-hero p { color: rgba(255,255,255,0.62); font-size: 1.08rem; max-width: 580px; margin: 0 auto 26px; line-height: 1.7; }
.page-hero .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICES ===== */
.services-section { padding: 96px 0; background: var(--gray-100); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(340px,1fr)); gap: 22px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; border: 2px solid transparent; box-shadow: var(--shadow); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gray-200); transition: var(--transition); }
.service-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(139,26,26,0.13); }
.service-card:hover::before, .service-card.featured::before { background: var(--red); }
.service-card.featured { border-color: var(--red); }
.sc-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-card h3 { font-family: var(--font-condensed); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 9px; text-transform: uppercase; letter-spacing: 0.03em; }
.service-card > p { font-size: 0.93rem; color: var(--gray-600); margin-bottom: 15px; line-height: 1.65; }
.service-card ul { margin-bottom: 16px; }
.service-card li { font-size: 0.88rem; color: var(--gray-700); padding: 4px 0; font-weight: 500; border-bottom: 1px solid var(--gray-100); }
.service-card li:last-child { border: none; }
.service-price { font-family: var(--font-condensed); font-size: 1.1rem; font-weight: 700; color: var(--red); margin-bottom: 16px; padding: 8px 12px; background: rgba(139,26,26,0.06); border-radius: 6px; display: inline-block; }
.sc-btn { display: inline-flex; font-family: var(--font-condensed); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); border: 2px solid var(--red); padding: 8px 18px; border-radius: 8px; transition: var(--transition); }
.sc-btn:hover { background: var(--red); color: var(--white); }

/* ===== HOW IT WORKS ===== */
.hiw-section { padding: 96px 0; background: var(--navy-dark); }
.hiw-section .section-header h2, .hiw-section .section-header p { color: var(--white); }
.steps-grid { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; align-items: flex-start; }
.step { flex: 1; min-width: 195px; max-width: 235px; text-align: center; padding: 28px 18px; background: var(--navy-light); border-radius: var(--radius); border: 1px solid rgba(139,26,26,0.18); transition: var(--transition); }
.step:hover { border-color: var(--red); transform: translateY(-4px); }
.step-num { font-family: var(--font-display); font-size: 2.6rem; color: #FFF; line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 2rem; margin-bottom: 10px; }
.step h3 { font-family: var(--font-condensed); font-size: 1.05rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 9px; }
.step p { font-size: 0.86rem; color: var(--gray-400); line-height: 1.65; }
.step-arrow { font-size: 1.5rem; color: var(--red); align-self: center; margin-top: -18px; flex-shrink: 0; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 20px; }
.why-card { padding: 28px; border-radius: var(--radius); background: var(--gray-100); border: 1px solid var(--gray-200); transition: var(--transition); }
.why-card:hover { background: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--red); }
.why-icon { font-size: 2.2rem; margin-bottom: 13px; }
.why-card h3 { font-family: var(--font-condensed); font-size: 1.12rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.why-card p { font-size: 0.93rem; color: var(--gray-600); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.reviews-section { padding: 96px 0; background: var(--navy-mid); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 18px; }
.review-card { background: var(--navy-light); border-radius: var(--radius); padding: 26px; border: 1px solid rgba(139,26,26,0.12); transition: var(--transition); }
.review-card:hover { border-color: var(--red); transform: translateY(-3px); }
.stars { font-size: 1rem; margin-bottom: 12px; }
.review-card p { font-size: 0.93rem; color: rgba(255,255,255,0.70); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.reviewer { font-family: var(--font-condensed); font-size: 0.88rem; font-weight: 700; color: var(--red-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== AREAS ===== */
.areas-grid { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.areas-grid span { font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); background: var(--white); border: 2px solid var(--gray-200); padding: 7px 16px; border-radius: 30px; transition: var(--transition); cursor: default; }
.areas-grid span:hover { border-color: var(--red); color: var(--red); }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--red) 0%, #5a1010 100%); padding: 80px 24px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; }
.cta-text h2 { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,2.9rem); color: var(--white); line-height: 1.05; margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.82); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--white); color: var(--red); border-color: var(--white); }
.cta-section .btn-primary:hover { background: var(--cream); }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ===== COMPARISON TABLE ===== */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-table th { font-family: var(--font-condensed); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 17px 22px; text-align: left; }
.compare-table th:first-child { background: var(--gray-200); color: var(--text-dark); }
.compare-table th:nth-child(2) { background: var(--gray-400); color: var(--white); }
.compare-table th:nth-child(3) { background: var(--red); color: var(--white); }
.compare-table td { padding: 13px 22px; font-size: 0.92rem; border-bottom: 1px solid var(--gray-200); }
.compare-table tr:last-child td { border: none; }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table td:nth-child(3) { font-weight: 600; background: rgba(139,26,26,0.04); }
.bad { color: #dc2626; } .good { color: #16a34a; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; border: 1px solid var(--gray-200); transition: var(--transition); }
.faq-item.open { border-color: var(--red); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 19px 24px; cursor: pointer; font-family: var(--font-condensed); font-size: 1.02rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-dark); gap: 12px; }
.faq-q:hover, .faq-item.open .faq-q { color: var(--red); }
.faq-toggle { width: 28px; height: 28px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-toggle { background: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* ===== PRICING CARDS ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 22px; }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 26px; border: 2px solid var(--gray-200); box-shadow: var(--shadow); transition: var(--transition); text-align: center; position: relative; }
.pricing-card.popular { border-color: var(--red); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 16px; border-radius: 20px; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-icon { font-size: 2.5rem; margin-bottom: 13px; }
.pricing-card h3 { font-family: var(--font-condensed); font-size: 1.22rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dark); margin-bottom: 5px; }
.pricing-sub { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 16px; }
.pricing-amount { font-family: var(--font-display); font-size: 2.8rem; color: var(--red); line-height: 1; margin-bottom: 4px; }
.pricing-period { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 20px; }
.pricing-list { text-align: left; margin-bottom: 24px; }
.pricing-list li { font-size: 0.87rem; color: var(--gray-700); padding: 5px 0; border-bottom: 1px solid var(--gray-100); }
.pricing-list li:last-child { border: none; }
.pricing-cta { display: block; width: 100%; font-family: var(--font-condensed); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 13px; border-radius: 10px; background: var(--red); color: var(--white); border: none; cursor: pointer; transition: var(--transition); }
.pricing-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ===== INFO BOXES ===== */
.info-box { padding: 28px 32px; border-radius: var(--radius); border-left: 5px solid var(--red); background: rgba(139,26,26,0.05); margin-bottom: 22px; }
.info-box h4 { font-family: var(--font-condensed); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dark); margin-bottom: 10px; }
.info-box p, .info-box li { font-size: 0.93rem; color: var(--gray-700); line-height: 1.65; }
.info-box ul { padding-left: 4px; }
.info-box li { padding: 4px 0; }

/* ===== FLEET CARDS ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 20px; }
.fleet-card { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); transition: var(--transition); }
.fleet-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.fleet-card .fc-icon { font-size: 1.9rem; margin-bottom: 11px; }
.fleet-card h4 { font-family: var(--font-condensed); font-size: 1.08rem; font-weight: 700; text-transform: uppercase; color: var(--text-dark); margin-bottom: 7px; letter-spacing: 0.03em; }
.fleet-card p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.65; }

/* ===== BENEFIT CARDS (dark bg) ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 20px; }
.benefit-card { padding: 26px; background: var(--navy-light); border-radius: var(--radius); border: 1px solid rgba(139,26,26,0.15); transition: var(--transition); }
.benefit-card:hover { border-color: var(--red); transform: translateY(-3px); }
.benefit-card .bi { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h4 { font-family: var(--font-condensed); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.benefit-card p { font-size: 0.86rem; color: var(--gray-400); line-height: 1.65; }

/* ===== SERVICE AREA CARDS ===== */
.area-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; }
.area-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); transition: var(--transition); }
.area-card:hover { border-color: var(--red); transform: translateY(-3px); }
.area-card h4 { font-family: var(--font-condensed); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--text-dark); margin-bottom: 8px; letter-spacing: 0.03em; }
.area-card p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 8px; }
.area-card .sub { font-size: 0.8rem; color: var(--gray-400); font-style: italic; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 48px; align-items: start; }
.contact-info h3 { font-family: var(--font-condensed); font-size: 1.45rem; font-weight: 700; text-transform: uppercase; color: var(--text-dark); margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.cd-icon { font-size: 1.35rem; width: 46px; height: 46px; background: rgba(139,26,26,0.09); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-text strong { display: block; font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600); margin-bottom: 3px; }
.cd-text a, .cd-text span { font-size: 0.96rem; color: var(--text-dark); font-weight: 500; }
.booking-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.booking-form h3 { font-family: var(--font-condensed); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; color: var(--text-dark); margin-bottom: 24px; letter-spacing: 0.03em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; font-family: var(--font-body); font-size: 0.93rem; color: var(--text-dark); background: var(--gray-100); border: 2px solid var(--gray-200); border-radius: 9px; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(139,26,26,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 15px; font-family: var(--font-condensed); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: var(--red); color: var(--white); border: none; border-radius: 10px; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,26,0.35); }
.form-note { text-align: center; margin-top: 10px; font-size: 0.77rem; color: var(--gray-400); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { color: var(--gray-400); font-size: 0.92rem; line-height: 1.7; margin: 18px 0; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact div { font-size: 0.87rem; color: var(--gray-400); }
.footer-contact a { color: #e8b04a; transition: var(--transition); }
.footer-contact a:hover { color: #f5c97a; }
.footer-col h4 { font-family: var(--font-condensed); font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--gray-400); font-size: 0.87rem; padding: 4px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--red-light); padding-left: 4px; }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-bottom p { color: var(--gray-600); font-size: 0.8rem; }

/* ===== GENERIC SECTIONS ===== */
.section-light { padding: 96px 0; background: var(--white); }
.section-gray { padding: 96px 0; background: var(--gray-100); }
.section-dark { padding: 96px 0; background: var(--navy-dark); }
.section-dark .section-header h2, .section-dark .section-header p { color: var(--white); }
.section-navy { padding: 96px 0; background: var(--navy-mid); }
.section-navy .section-header h2, .section-navy .section-header p { color: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 18px 24px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-200); z-index: 200; }
  .nav.open { display: flex; }
  .nav a { padding: 11px 14px; width: 100%; }
  .hamburger { display: flex; }
  .header-inner { position: relative; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2.4rem,8vw,3.6rem); }
}
@media (max-width: 640px) {
  .hero { min-height: auto; padding: 60px 0 48px; }
  .topbar-inner span:nth-child(2), .topbar-inner span:nth-child(3) { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid, .why-grid, .reviews-grid, .pricing-grid, .fleet-grid, .benefits-grid, .area-cards { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.8rem; }
  .hero-checks { grid-template-columns: 1fr; }
}
