/*
Theme Name: Call Courier
Description: Custom theme for Call Courier — courier, delivery and house removal services across the UK.
Author: Call Courier
Version: 2.0.0
Text Domain: call-courier
*/

/* ==========================================================================
   Call Courier UK - Stylesheet
   Design Tokens & Modern CSS Layouts
   ========================================================================== */

:root {
  /* Brand Colors */
  --color-primary: #F36035;
  --color-primary-hover: #d94e25;
  --color-primary-light: #FDEFEB;
  --color-navy: #2E2A4F;
  --color-navy-dark: #201d38;
  --color-navy-light: #3d3865;
  --color-green: #10B981;
  
  /* Neutral Colors */
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-text-main: #1E293B;
  --color-text-muted: #64748B;
  --color-text-white: #FFFFFF;
  --color-border: #E2E8F0;
  
  /* Typography & Spacing */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(46,42,79,0.12);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: 0 4px 14px rgba(243, 96, 53, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 96, 53, 0.45);
}

.btn-hero-primary {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(243, 96, 53, 0.4);
}

.btn-hero-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-3px);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text-white);
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

.btn-form-submit {
  width: 100%;
  background-color: var(--color-primary);
  color: white;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.btn-form-submit:hover {
  background-color: var(--color-primary-hover);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.dropdown-item {
  position: relative;
}

.chevron {
  font-size: 0.75rem;
  margin-left: 4px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.dropdown-item:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
  border-radius: var(--radius-sm);
}

.dropdown-menu li a:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone-link {
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-phone-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  transition: var(--transition);
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-banner {
  position: relative;
  background-color: var(--color-navy);
  color: var(--color-text-white);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.35;
  filter: brightness(0.85) contrast(1.1);
  animation: heroCinematicPan 16s ease-in-out infinite alternate;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(32, 29, 56, 0.88) 0%, rgba(46, 42, 79, 0.72) 50%, rgba(32, 29, 56, 0.94) 100%);
  pointer-events: none;
}

@keyframes heroCinematicPan {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.05) translate(-1%, -1%);
  }
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(243, 96, 53, 0.25) 0%, rgba(46, 42, 79, 0) 70%);
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(243, 96, 53, 0.18) 0%, rgba(46, 42, 79, 0) 70%);
}

.hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-supporting {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

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

.hero-trust-bar {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.trust-icon {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
}

/* Quick Quote Form Card */
.hero-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--color-text-main);
  box-shadow: var(--shadow-lg);
}

.form-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);

}

.form-header p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.quick-quote-form .form-group,
.contact-page-form .form-group {
  margin-bottom: 12px;
}

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

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group textarea {
  height: 70px;
  resize: vertical;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(243, 96, 53, 0.15);
}

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

/* ==========================================================================
   SECTIONS & LAYOUT COMMON
   ========================================================================== */
.section {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.section-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.heading-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin-top: 12px;
}

.section-header.center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works-section {
  background-color: var(--color-bg-alt);
}

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

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(243, 96, 53, 0.3);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.5rem;
  font-weight: 800;
  color: #F1F5F9;
  line-height: 1;
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.step-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: var(--color-navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.service-image-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-bg-alt);
  color: var(--color-navy);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
}

.service-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   WHERE WE OPERATE SECTION
   ========================================================================== */
.operate-section {
  background-color: var(--color-bg-alt);
}

.operate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.operate-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.operate-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.operate-icon {
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.operate-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.3;
}

.operate-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 4px 10px;
  border-radius: 12px;
  margin-top: 4px;
}

.operate-badge.badge-green {
  background: #E6F4EA;
  color: var(--color-green);
}

.operate-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.location-pill {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.highlight-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

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

.operate-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  padding: 16px 24px;
  border-radius: 50px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.operate-footer-note svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

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

.fleet-card.highlight-card {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-primary-light) 100%);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
}

.fleet-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.fleet-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.fleet-payload {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-bg-alt);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.fleet-payload .label {
  color: var(--color-text-muted);
}

.fleet-payload .value {
  font-weight: 800;
  color: var(--color-primary);
}

.fleet-use {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-section {
  background-color: var(--color-bg-alt);
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.why-choose-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visual-card-stat {
  background: var(--color-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
}

.stat-big {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.visual-card-info {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.visual-card-info h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.visual-card-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-navy-dark);
  color: white;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
}

.footer-strapline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: white;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-contact-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-item a {
  color: var(--color-primary);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom-links a:hover {
  color: white;
}

/* ==========================================================================
   FORM SUBMIT SUCCESS MESSAGE (no popup modal per SRS Zero Popup Policy —
   quote/contact forms are inline, this styles the CF7 success state)
   ========================================================================== */
.success-message {
  background: #E6F4EA;
  color: #137333;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-top: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .banner-visual-box {
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .hero-banner {
    padding: 50px 0 70px;
  }

  .hero-headline {
    font-size: 2.1rem;
    line-height: 1.25;
  }
  
  .hero-subheading {
    font-size: 1.05rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .steps-grid, .services-grid, .operate-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-wrapper {
    grid-template-columns: 1fr;
  }

  .banner-visual-box {
    flex-direction: column;
    gap: 20px;
  }

  .hero-banner-visual {
    padding: 24px 16px;
    margin-top: 28px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    border-bottom: 2px solid var(--color-primary);
  }
  
  .nav-menu.active {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  
  .nav-phone-link {
    display: none;
  }

  .navbar-actions {
    gap: 10px;
  }

  .navbar-actions .btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    font-size: 1.85rem;
  }

  .hero-form-card, .contact-form-card, .contact-info-card {
    padding: 24px 18px;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ==========================================================================
   SERVICE PAGES SPECIFIC STYLES
   ========================================================================== */
.hero-container.single-col {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.center-text {
  text-align: center;
}

.center-flex {
  justify-content: center;
}

.heading-line.left {
  margin: 16px 0 0 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--color-navy);
  font-weight: 500;
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 40px;
}

.content-block {
  margin-bottom: 48px;
}

.block-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.block-intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* Brand Partners Grid */
.brand-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.partner-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 20px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-navy);
  transition: var(--transition);
}

.partner-card:hover {
  background: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

.sub-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Ideal For Grid */
.ideal-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ideal-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Offer List Grid */
.offer-list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.offer-icon {
  font-size: 2rem;
  background: var(--color-bg-alt);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 4px;
}

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

/* Why Move Grid */
.why-move-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.move-reason-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  position: relative;
}

.reason-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.move-reason-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.move-reason-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.highlight-box {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: white;
  padding: 36px;
  border-radius: var(--radius-lg);
}

.highlight-box .block-title {
  color: var(--color-primary);
}

.highlight-box p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Sidebar Quote Card */
.sidebar-quote-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.sidebar-quote-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.sidebar-quote-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.sidebar-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* CTA Banner Section */
.cta-banner-section {
  background: var(--color-navy-dark);
  color: white;
  padding: 70px 0;
  position: relative;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-subheading {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar-quote-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .brand-partners-grid, .ideal-for-grid, .why-move-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-heading {
    font-size: 1.75rem;
  }
}

/* Student Moving Integrated Sub-Block */
.student-moving-block {
  background: var(--color-primary-light);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  scroll-margin-top: 100px;
}

.student-block-header .block-title {
  margin-top: 8px;
  margin-bottom: 4px;
}

.student-block-header .block-subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.student-info-card p {
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 24px;
  line-height: 1.6;
}

.student-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.student-feature {
  display: flex;
  gap: 16px;
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(243, 96, 53, 0.2);
}

.sf-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.student-feature h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.student-feature p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.student-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  color: var(--color-navy);
}

/* Estimator Widget */
.estimator-box {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.estimator-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.est-btn {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-navy);
  cursor: pointer;
  transition: var(--transition);
}

.est-btn:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
}

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

.estimator-result-card {
  background: var(--color-navy);
  color: white;
  padding: 24px;
  border-radius: var(--radius-md);
}

.est-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.est-vehicle-icon {
  font-size: 2.2rem;
}

.est-header h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.est-payload-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(243, 96, 53, 0.2);
  padding: 2px 8px;
  border-radius: 6px;
}

.estimator-result-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Checklist Steps */
.checklist-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chk-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.chk-num {
  width: 40px;
  height: 40px;
  background: var(--color-navy);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chk-step h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.chk-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* FAQs */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  padding: 20px 24px;
  border-radius: var(--radius-md);
}

.faq-q {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .student-features-list, .estimator-controls {
    grid-template-columns: 1fr;
  }
  .student-cta-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  background-color: var(--color-bg);
}

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

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

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

.review-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--color-navy);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.reviewer-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.reviewer-type {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.verified-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: #E6F4EA;
  color: var(--color-green);
  padding: 4px 8px;
  border-radius: 12px;
}

/* ==========================================================================
   INTERACTIVE FAQ ACCORDIONS
   ========================================================================== */
.accordion-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.accordion-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 24px 20px;
  display: none;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--color-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.contact-detail-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.contact-detail-item p, .contact-detail-item a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-detail-item a:hover {
  color: var(--color-primary);
}

.contact-form-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.story-content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.story-visual-card {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
}

.story-visual-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

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

.value-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.industry-pill {
  background: white;
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .reviews-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid, .about-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reviews-grid, .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UPDATED FULL-WIDTH & BANNER VISUAL STYLES
   ========================================================================== */
.service-detail-grid.full-width {
  grid-template-columns: 1fr;
  max-width: 960px;
  margin: 0 auto;
}

.hero-banner-visual {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(243, 96, 53, 0.2) 0%, rgba(46, 42, 79, 0.8) 100%);
  padding: 40px;
  text-align: center;
}

.banner-visual-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: white;
}

.banner-visual-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.banner-icon-badge {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.banner-icon-badge svg {
  width: 30px;
  height: 30px;
  fill: var(--color-primary);
}

.banner-visual-item span {
  font-size: 1.1rem;
  font-weight: 800;
}

/* SVG Vector Icon Styling */
.svg-icon {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
  display: inline-block;
  vertical-align: middle;
}

.fleet-icon-badge {
  width: 64px;
  height: 64px;
  background-color: var(--color-primary-light);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.fleet-card:hover .fleet-icon-badge {
  background-color: rgba(243, 96, 53, 0.18);
  transform: scale(1.06);
}

.fleet-svg-icon {
  width: 36px;
  height: 36px;
  fill: var(--color-primary);
  margin-bottom: 0;
  transition: var(--transition);
}

.value-svg-icon {
  width: 44px;
  height: 44px;
  fill: var(--color-primary);
  margin-bottom: 16px;
}

.quote-svg-icon {
  width: 32px;
  height: 32px;
  fill: rgba(243, 96, 53, 0.3);
  margin-bottom: 12px;
}

/* Dynamic Form Field Groups */
.field-multidrop-only, .field-removals-only {
  transition: var(--transition);
}

/* Upgraded Review Card Design */
.review-card-modern {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

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

.review-stars-svg {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars-svg svg {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
}

/* ==========================================================================
   PREMIUM INTERACTIVE FAQ ACCORDION STYLES
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(46, 42, 79, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(243, 96, 53, 0.1);
  transform: translateY(-2px);
}

.accordion-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(46, 42, 79, 0.08);
}

.accordion-item.active::before {
  opacity: 1;
}

.accordion-header, .accordion-header-svg {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.accordion-title-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.faq-q-badge {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
}

.accordion-item.active .faq-question-text {
  color: var(--color-primary);
}

.accordion-toggle-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-toggle-circle {
  background: var(--color-primary);
}

.accordion-chevron, .accordion-chevron-svg {
  width: 20px;
  height: 20px;
  fill: var(--color-navy);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), fill 0.3s ease;
}

.accordion-item.active .accordion-chevron,
.accordion-item.active .accordion-chevron-svg {
  transform: rotate(180deg);
  fill: #FFFFFF;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  opacity: 1;
}

.accordion-answer {
  padding: 0 28px 24px 78px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .accordion-header, .accordion-header-svg {
    padding: 16px 20px;
  }
  .accordion-answer {
    padding: 0 20px 20px 20px;
  }
  .faq-q-badge {
    display: none;
  }
}






/* ==========================================================================
   CONTACT FORM 7 — response/validation styling (CF7 renders real <input>
   elements inside our .form-group/.form-row wrappers above, so they already
   inherit that styling; this just covers CF7's own status elements)
   ========================================================================== */
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.wpcf7-submit:hover {
  background-color: var(--color-primary-hover);
}
.wpcf7-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.wpcf7-response-output {
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  margin: 16px 0 0 !important;
  font-size: 0.9rem;
}
.wpcf7-not-valid-tip {
  color: #D0491B;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}
.wpcf7-spinner {
  margin-left: 8px;
}
form.sent .wpcf7-response-output {
  background: #E6F4EA;
  border-color: var(--color-green) !important;
  color: #137333;
}
form.invalid .wpcf7-response-output,
form.failed .wpcf7-response-output {
  background: #FDEFEB;
  border-color: var(--color-primary) !important;
  color: var(--color-primary-hover);
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}
.cookie-banner-text a {
  color: var(--color-primary);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-cookie-reject:hover {
  background: white;
  color: var(--color-navy);
  border-color: white;
}
@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   LEGAL / GENERIC CONTENT PAGES (Privacy Policy, Terms & Conditions)
   ========================================================================== */
.legal-page-header {
  background: var(--color-navy);
  padding: 56px 0;
}
.legal-page-header h1 {
  color: white;
  margin: 0;
}
.entry-content {
  max-width: 780px;
  margin: 0 auto;
}
.entry-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
}
.entry-content h2:first-child {
  margin-top: 0;
}
.entry-content h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
}
.entry-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
}
.entry-content ul,
.entry-content ol {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content li {
  margin-bottom: 0.5rem;
}
.entry-content a {
  color: var(--color-primary);
  text-decoration: underline;
}
.entry-content strong {
  color: var(--color-navy);
}
