/*
Theme Name: MarrakechBike
Theme URI: https://marrakechbike.com
Author: MarrakechBike Team
Author URI: https://marrakechbike.com
Description: A vibrant, fully responsive WordPress theme for MarrakechBike.com — Electric Bike Rentals delivered to your riad or hotel in Marrakech. Includes hero, fleet, booking form, testimonials, and more.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marrakechbike
Tags: responsive-layout, custom-menu, custom-logo, one-page, travel, ecommerce
*/

/* ============================================================
   TABLE OF CONTENTS
   1. CSS Custom Properties (variables)
   2. Reset & Base
   3. Typography
   4. Layout Utilities
   5. Header & Navigation
   6. Hero Section
   7. About / Why Us Section
   8. Fleet Section
   9. Delivery & Battery Swap Section
   10. How It Works Section
   11. Testimonials Section
   12. Booking Form Section
   13. Footer
   14. Buttons & CTAs
   15. Mobile Navigation
   16. Responsive Breakpoints
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  /* Brand Colors */
  --color-green:       #2E7D32;   /* Eco-green primary */
  --color-green-light: #43A047;
  --color-green-dark:  #1B5E20;
  --color-orange:      #E65100;   /* Morocco-orange accent */
  --color-orange-light:#FF6D00;
  --color-orange-pale: #FFF3E0;
  --color-cream:       #FAF6EF;   /* Warm parchment background */
  --color-sand:        #F5E6C8;
  --color-dark:        #1A1A1A;
  --color-text:        #333333;
  --color-muted:       #666666;
  --color-white:       #FFFFFF;
  --color-border:      #E0D5C5;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;
  --font-accent:  'Nunito', sans-serif;

  /* Spacing */
  --section-pad: 80px 0;
  --container-width: 1200px;
  --radius: 12px;
  --radius-sm: 6px;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.18);

  /* Transitions */
  --transition: 0.3s ease;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover { color: var(--color-orange); }

ul { list-style: none; }

/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--color-dark);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1em; }

.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   4. Layout Utilities
   ============================================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bg-cream  { background-color: var(--color-cream); }
.bg-green  { background-color: var(--color-green); }
.bg-dark   { background-color: var(--color-dark); }
.bg-sand   { background-color: var(--color-sand); }

.text-center { text-align: center; }
.text-white  { color: var(--color-white) !important; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   5. Header & Navigation
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-green-dark);
  letter-spacing: -0.02em;
}

.logo-name span {
  color: var(--color-orange);
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Primary Navigation */
#primary-navigation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#primary-navigation ul li a {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

#primary-navigation ul li a:hover {
  color: var(--color-green);
  background: rgba(46,125,50,0.08);
}

.nav-cta {
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--color-orange-light) !important;
  color: var(--color-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230,81,0,0.35);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   6. Hero Section
   ============================================================ */
#hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,
    #1B5E20 0%,
    #2E7D32 40%,
    #1a3a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Decorative pattern overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,109,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
    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");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-orange-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--color-orange-light);
  display: block;
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-orange-light);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,109,0,0.1) 0%, transparent 60%);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(10%, 5%); }
}

.hero-image-placeholder .placeholder-icon {
  font-size: 5rem;
  line-height: 1;
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   7. About / Why Us Section
   ============================================================ */
#about {
  padding: var(--section-pad);
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-block {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-border) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  border: 2px dashed var(--color-border);
  text-align: center;
  padding: 2rem;
}

.about-img-placeholder .placeholder-icon {
  font-size: 4rem;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.about-badge-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.about-badge-float span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.why-us-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}

.why-us-item:hover {
  box-shadow: var(--shadow-card);
}

.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-us-item h4 {
  font-size: 1rem;
  margin-bottom: 3px;
  font-family: var(--font-accent);
}

.why-us-item p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

/* ============================================================
   8. Fleet Section
   ============================================================ */
#fleet {
  padding: var(--section-pad);
  background: var(--color-white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fleet-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.fleet-card.featured {
  border: 2px solid var(--color-orange);
}

.fleet-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.fleet-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-sand) 0%, rgba(46,125,50,0.1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--color-border);
}

.fleet-img-placeholder .placeholder-icon {
  font-size: 3.5rem;
}

.fleet-body {
  padding: 1.5rem;
}

.fleet-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.fleet-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.spec-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
}

.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1rem;
}

.fleet-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-green-dark);
}

.fleet-price span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ============================================================
   9. Delivery & Battery Swap Section
   ============================================================ */
#delivery {
  padding: var(--section-pad);
  background: var(--color-green-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

#delivery::before {
  content: '';
  position: absolute;
  inset: 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.04'%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");
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.delivery-content .section-label {
  color: var(--color-orange-light);
}

.delivery-content h2 {
  color: var(--color-white);
}

.delivery-content p {
  color: rgba(255,255,255,0.8);
}

.delivery-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.delivery-feature {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.delivery-feature .feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.delivery-feature h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.delivery-feature p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.delivery-visual {
  display: flex;
  justify-content: center;
}

.delivery-img-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}

.delivery-img-placeholder .placeholder-icon {
  font-size: 4rem;
}

/* ============================================================
   10. How It Works Section
   ============================================================ */
#how-it-works {
  padding: var(--section-pad);
  background: var(--color-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--color-green-light), var(--color-orange));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: var(--color-white);
  border: 3px solid var(--color-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green-dark);
  box-shadow: 0 4px 16px rgba(46,125,50,0.2);
  position: relative;
}

.step-number .step-icon {
  font-size: 1.6rem;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
}

/* ============================================================
   11. Testimonials Section
   ============================================================ */
#testimonials {
  padding: var(--section-pad);
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-cream);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-green-light);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-stars {
  color: #FFB300;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.925rem;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green-light), var(--color-green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ============================================================
   12. Booking Form Section
   ============================================================ */
#booking {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.booking-info .section-label {
  display: block;
  text-align: left;
}

.booking-info h2 {
  text-align: left;
}

.booking-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.booking-feature-item .check {
  width: 28px;
  height: 28px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.whatsapp-book {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #25D366;
  border-radius: var(--radius);
  color: white;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}

.whatsapp-book:hover {
  opacity: 0.9;
  color: white;
}

.booking-form-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-border);
}

.booking-form-card h3 {
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--color-orange);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-green-light);
  box-shadow: 0 0 0 3px rgba(67,160,71,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit {
  margin-top: 0.5rem;
}

/* ============================================================
   13. Footer
   ============================================================ */
#site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .site-logo .logo-name {
  color: var(--color-white);
}

.footer-tagline {
  font-size: 0.875rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 240px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-orange-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.footer-contact-item .contact-icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   14. Buttons & CTAs
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}

.btn-primary:hover {
  background: var(--color-orange-light);
  border-color: var(--color-orange-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,81,0,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-green {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.btn-green:hover {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}

.btn-outline-green {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn-outline-green:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============================================================
   15. Mobile Navigation
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav ul li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav ul li a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.mobile-nav .mobile-cta {
  margin-top: 1.5rem;
}

/* ============================================================
   16. Responsive Breakpoints
   ============================================================ */

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-badge-float {
    bottom: -10px;
    right: 10px;
  }

  .fleet-grid { grid-template-columns: 1fr 1fr; }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .steps-grid::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .booking-wrapper { grid-template-columns: 1fr; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  :root {
    --section-pad: 56px 0;
  }

  #primary-navigation { display: none; }

  .menu-toggle { display: flex; }

  .mobile-nav { display: none; }
  .mobile-nav.open { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .fleet-grid { grid-template-columns: 1fr; }

  .delivery-features { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .booking-wrapper { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 380px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Utility: Accessibility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
}

/* Smooth scroll offset for sticky header */
[id] { scroll-margin-top: 80px; }
