/* ==========================================================================
   PACIFIC PET GROOMING - Modern CSS Design System
   ========================================================================== */

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

:root {
  /* Color Palette */
  --primary-navy: #0B2545;
  --primary-blue: #0077B6;
  --accent-teal: #00B4D8;
  --accent-cyan: #90E0EF;
  --light-bg: #F8FAFC;
  --white: #FFFFFF;
  --amber-gold: #FFB703;
  --warm-orange: #FB8500;
  --coral-red: #E63946;
  --success-green: #10B981;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --border-light: #E2E8F0;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 4px rgba(11, 37, 69, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 16px 36px rgba(11, 37, 69, 0.12);
  --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.35);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

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

/* Announcement Bar (Removed) */
.top-bar {
  display: none !important;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  color: var(--amber-gold);
}

.status-badge {
  background-color: rgba(16, 185, 129, 0.2);
  color: #34D399;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: #34D399;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Header & Floating Navigation */
.header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0 24px;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(11, 37, 69, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 10;
  margin-top: -22px;
  margin-bottom: -22px;
}

.logo-circle {
  width: 130px;
  height: 130px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform: scale(1.18);
}

.footer-logo-card {
  display: inline-block;
  background: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}

.footer-logo-card:hover {
  transform: translateY(-2px);
}

.footer-logo-img {
  height: 92px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.logo span {
  color: var(--primary-blue);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.975rem;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary-blue);
  transition: width 0.25s ease;
  border-radius: 2px;
}

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

.nav-cta {
  display: flex;
  gap: 12px;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--warm-orange), var(--amber-gold));
  color: var(--primary-navy);
  box-shadow: 0 4px 14px rgba(251, 133, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 133, 0, 0.45);
}

.btn-secondary {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 119, 182, 0.25);
}

.btn-secondary:hover {
  background: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 37, 69, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(0, 119, 182, 0.04);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  background: linear-gradient(180deg, #EDF7FC 0%, var(--light-bg) 100%);
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.hero-badge i {
  color: var(--warm-orange);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--primary-navy);
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 119, 182, 0.15);
}

.stat-item h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.hero-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-light);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 183, 3, 0.2);
  color: var(--warm-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.floating-info h5 {
  font-size: 1rem;
  font-weight: 700;
}

.floating-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section Containers */
.section {
  padding: 90px 24px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  background: rgba(0, 119, 182, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Bus Schedule & Locations Tracker */
.bus-section {
  background: var(--white);
}

.bus-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  width: 100%;
}

.bus-tab-btn {
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
}

.bus-tab-btn * {
  pointer-events: none;
}

.bus-tab-btn i {
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.bus-tab-btn.active {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.bus-tab-btn.active i {
  color: var(--amber-gold);
}

.bus-content {
  display: none;
  width: 100%;
}

.bus-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.bus-info-banner {
  background: linear-gradient(135deg, #0B2545 0%, #0077B6 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.bus-crew {
  display: flex;
  align-items: center;
  gap: 20px;
}

.crew-avatar {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.bus-crew h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.bus-crew p {
  color: var(--accent-cyan);
  font-size: 0.9rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.schedule-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  transition: all 0.25s ease;
  position: relative;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.schedule-card.today {
  border: 2px solid var(--primary-blue);
  background: #F0F9FF;
}

.today-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.day-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-title i {
  color: var(--primary-blue);
}

.location-address {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.location-city {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--white);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.card-action {
  width: 100%;
}

/* Service Menu & Interactive Price Estimator */
.estimator-box {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.estimator-info h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.estimator-info p {
  color: #94A3B8;
  margin-bottom: 24px;
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.control-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.size-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.size-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.size-btn:hover,
.size-btn.active {
  background: var(--primary-blue);
  border-color: var(--accent-teal);
}

.size-btn span {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
}

.size-btn small {
  font-size: 0.7rem;
  color: #CBD5E1;
}

.service-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

.service-select option {
  background: var(--primary-navy);
  color: var(--white);
}

.estimator-result {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.price-display {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber-gold);
  line-height: 1;
  margin: 12px 0;
}

.estimator-result p {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 24px;
}

/* Dog Sizing & Measurement Guide */
.sizing-card-wrapper {
  background: linear-gradient(180deg, #F8FAFC 0%, #EDF7FC 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.sizing-header {
  margin-bottom: 24px;
}

.sizing-image-box {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.sizing-guide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Services Banner Header */
.services-banner {
  background: linear-gradient(180deg, #EDF7FC 0%, var(--light-bg) 100%);
  padding: 60px 24px 40px;
  text-align: center;
}

.services-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-banner-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-top: 14px;
  margin-bottom: 16px;
  line-height: 1.25;
  text-align: center;
  width: 100%;
}

.services-banner-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 100%;
}

/* Service Menu Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-teal);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.service-badge {
  background: rgba(0, 119, 182, 0.1);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-prices-list {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border-light);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .size-label {
  font-weight: 600;
  color: var(--text-dark);
}

.price-row .size-dim {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-row .price-val {
  font-weight: 800;
  color: var(--primary-blue);
  font-size: 1rem;
}

.checklist {
  margin: 20px 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.checklist-item i {
  color: var(--success-green);
  font-size: 1rem;
  margin-top: 3px;
}

/* Policy Card */
.policy-section {
  background: #FFFBEB;
  border-top: 1px solid #FDE68A;
  border-bottom: 1px solid #FDE68A;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid #F59E0B;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 28px;
  align-items: center;
}

.policy-icon {
  width: 72px;
  height: 72px;
  background: rgba(245, 158, 11, 0.15);
  color: #D97706;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.policy-text h3 {
  font-size: 1.5rem;
  color: #92400E;
  margin-bottom: 8px;
}

.policy-text p {
  font-size: 1rem;
  color: #78350F;
}

/* Modal Booking Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-header {
  padding: 24px 32px;
  background: var(--primary-navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.modal-header h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.15);
}

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

/* FAQ Accordion */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question i {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 80px 24px 32px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: #94A3B8;
  margin: 16px 0 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #64748B;
}

/* Responsive Media Queries */
@media (max-width: 1366px) {
  .hero {
    padding: 50px 24px 70px;
  }
  .services-banner {
    padding: 44px 24px 28px;
  }
  .services-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .services-banner-title {
    font-size: 2.35rem;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .services-banner-subtitle {
    font-size: 1.05rem;
    max-width: 680px;
  }
  .hero-container {
    gap: 40px;
  }
  .hero-title {
    font-size: 2.65rem;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  .hero-image-card img {
    height: 370px;
  }
  .hero-stats {
    gap: 28px;
    padding-top: 20px;
  }
  .stat-item h4 {
    font-size: 1.5rem;
  }
  .section {
    padding: 60px 24px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .estimator-box {
    padding: 32px;
    margin-bottom: 40px;
  }
  .estimator-grid {
    gap: 32px;
  }
  .price-display {
    font-size: 3rem;
  }
  .services-grid {
    gap: 24px;
  }
  .service-card {
    padding: 24px;
  }
  .footer {
    padding: 60px 24px 32px;
  }
  .footer-container {
    gap: 32px;
  }
}

@media (max-height: 768px) and (min-width: 1025px) {
  .hero {
    padding: 40px 24px 60px;
  }
  .hero-image-card img {
    height: 340px;
  }
  .section {
    padding: 50px 24px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .estimator-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .alacarte-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    top: 8px;
    padding: 0 12px;
  }
  .nav-container {
    padding: 4px 14px;
    border-radius: 12px;
  }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-cta .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .logo {
    margin-top: -14px;
    margin-bottom: -14px;
  }
  .logo-circle {
    width: 90px;
    height: 90px;
    padding: 2px;
    border-width: 3px;
  }
  .top-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--primary-navy);
    padding: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .mobile-toggle.active {
    color: var(--primary-blue);
    transform: rotate(90deg);
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 16px 36px rgba(11, 37, 69, 0.18);
    gap: 10px;
    z-index: 1001;
  }
  .nav-links.active .nav-link {
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--primary-navy);
    display: block;
    text-align: left;
    background: rgba(241, 245, 249, 0.7);
    font-weight: 600;
    transition: all 0.2s ease;
  }
  .nav-links.active .nav-link:hover,
  .nav-links.active .nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
  }
  .hero-title {
    font-size: 2.35rem;
  }

  /* Bus Tracker Mobile Layout */
  .bus-tabs {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }

  .bus-tab-btn {
    padding: 12px 10px;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .bus-tab-btn i {
    font-size: 1.05rem;
  }

  .bus-info-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }

  .bus-crew {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .bus-info-banner h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
  }

  .bus-info-banner p {
    font-size: 0.9rem;
    justify-content: center;
  }

  .bus-info-banner .btn {
    width: 100%;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    display: block;
  }

  .services-grid,
  .alacarte-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .size-selector {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .policy-card {
    flex-direction: column;
    text-align: center;
  }
}

