/* ============================================
   MAINE COURIERS - Modern White & Red Glowy Theme
   ============================================ */

/* CSS Variables */
:root {
  --primary: #ffffff;
  --primary-dark: #f8f9fa;
  --secondary: #f0f2f5;
  --accent: #e63232;
  --accent-light: #ff4d4d;
  --accent-dark: #c62828;
  --accent-glow: rgba(230, 50, 50, 0.35);
  --accent-glow-strong: rgba(230, 50, 50, 0.6);
  --accent-glow-subtle: rgba(230, 50, 50, 0.08);
  --text-primary: #1a1a2e;
  --text-secondary: #555570;
  --text-muted: #8e8ea0;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-hover: rgba(255, 255, 255, 1);
  --border-glow: rgba(230, 50, 50, 0.2);
  --border-light: rgba(0, 0, 0, 0.08);
  --dark-bg: #1a1a2e;
  --dark-surface: rgba(26, 26, 46, 0.95);
  --gradient-card: linear-gradient(145deg, #ffffff, #f8f9fa);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 50%, #1a1a2e 100%);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --shadow-glow: 0 0 20px var(--accent-glow), 0 0 60px rgba(230, 50, 50, 0.08);
  --shadow-glow-sm: 0 0 10px var(--accent-glow), 0 0 30px rgba(230, 50, 50, 0.04);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 20px var(--accent-glow);
}

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

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

body {
  font-family: var(--font-primary);
  background: var(--primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Subtle ambient background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230, 50, 50, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(230, 50, 50, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(230, 50, 50, 0.015) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

a:hover {
  color: var(--accent-light);
}

/* ============================================
   GLOW UTILITY CLASSES
   ============================================ */
.glow-border {
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.glow-border:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.glow-text {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow), 0 0 60px rgba(230, 50, 50, 0.1);
}

.glow-line {
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-glow), 0 0 30px rgba(230, 50, 50, 0.15);
  margin: 0 auto 2rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 0 1px var(--border-glow);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-logo-text span {
  color: var(--accent);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  padding: 0.45rem 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-glow-subtle);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--accent-glow);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-phone svg {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 15px var(--accent-glow), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: #ffffff;
  box-shadow: 0 0 25px var(--accent-glow-strong), 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.btn-outline:hover {
  background: var(--accent-glow-subtle);
  border-color: var(--accent);
  color: var(--accent-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-white {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #f8f9fa;
  color: var(--accent-dark);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* CSS-Only Mobile Menu Toggle — use opacity+position, NOT display:none */
/* display:none breaks label-for toggling on mobile Safari */
.mobile-menu-checkbox {
  position: absolute;
  top: -9999px;
  left: -9999px;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 12px;
  z-index: 1001;
  min-width: 48px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  pointer-events: none;
}

/* ============================================
   HERO SECTION (Dark background)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: var(--gradient-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.5);
  animation: heroKenBurns 25s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  33% {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
  66% {
    transform: scale(1.12) translate(1%, -0.5%);
  }
  100% {
    transform: scale(1.05) translate(-0.5%, 1%);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(26, 26, 46, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(230, 50, 50, 0.12);
  border: 1px solid rgba(230, 50, 50, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s both;
  color: #ffffff;
}

.hero h1 .highlight {
  color: var(--accent-light);
  text-shadow: 0 0 30px var(--accent-glow);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 550px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

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

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
  text-shadow: 0 0 15px var(--accent-glow);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* Floating glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 250px;
  height: 250px;
  background: #cc2222;
  bottom: 10%;
  right: 20%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 180px;
  height: 180px;
  background: var(--accent-light);
  top: 40%;
  right: 35%;
  animation-delay: -5s;
  opacity: 0.12;
}

/* ============================================
   CARDS (White theme)
   ============================================ */
/* Animated Gradient Border Keyframes */
@keyframes borderGradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card {
  background: var(--gradient-card);
  border: none;
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Animated gradient border using pseudo-element behind */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 1.5px;
  background: linear-gradient(270deg, rgba(230,50,50,0.05), rgba(230,50,50,0.25), rgba(255,77,77,0.4), rgba(230,50,50,0.25), rgba(230,50,50,0.05));
  background-size: 300% 300%;
  animation: borderGradientRotate 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  transition: var(--transition);
}

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

.card:hover::before {
  padding: 2px;
  background: linear-gradient(270deg, rgba(230,50,50,0.15), rgba(230,50,50,0.6), rgba(255,77,77,0.8), rgba(230,50,50,0.6), rgba(230,50,50,0.15));
  background-size: 300% 300%;
  animation: borderGradientRotate 3s ease infinite;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-glow-subtle);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: rgba(230, 50, 50, 0.15);
  box-shadow: 0 0 20px var(--accent-glow);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-section {
  background: var(--secondary);
  position: relative;
}

/* Testimonials van background image */
.testimonials-bg-img {
  position: absolute;
  inset: 0;
  background: url('images/van-testimonials-bg.png') center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
  animation: heroKenBurns 25s ease-in-out infinite alternate;
  transform-origin: center center;
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

/* Services highlights section */
.services-highlights-section {
  position: relative;
}

/* Testimonials Grid (4-column desktop, carousel mobile) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
}

.testimonial-card-static {
  position: relative;
}

@media (max-width: 600px) {
  .testimonial-card-static {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* Carousel dots for mobile testimonials */
.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .testimonial-dots {
    display: flex;
  }
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transform: scale(1.2);
}

.testimonial-inner {
  background: #ffffff;
  border: none;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  padding: 1.5px;
  background: linear-gradient(270deg, rgba(230,50,50,0.05), rgba(230,50,50,0.25), rgba(255,77,77,0.4), rgba(230,50,50,0.25), rgba(230,50,50,0.05));
  background-size: 300% 300%;
  animation: borderGradientRotate 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  transition: var(--transition);
}

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

.testimonial-inner:hover::before {
  padding: 2px;
  background: linear-gradient(270deg, rgba(230,50,50,0.15), rgba(230,50,50,0.6), rgba(255,77,77,0.8), rgba(230,50,50,0.6), rgba(230,50,50,0.15));
  background-size: 300% 300%;
  animation: borderGradientRotate 3s ease infinite;
}

.testimonial-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 1.5rem;
}

.testimonial-logo {
  max-width: 160px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: none;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-company {
  font-size: 0.85rem;
  color: var(--accent);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.carousel-btn:hover {
  background: var(--accent-glow-subtle);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-sm);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transform: scale(1.2);
}

/* ============================================
   STATS COUNTER (Dark section)
   ============================================ */
.stats-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(230, 50, 50, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(230, 50, 50, 0.05) 0%, transparent 50%);
}

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

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 1.5px;
  background: linear-gradient(270deg, rgba(230,50,50,0.1), rgba(230,50,50,0.4), rgba(255,77,77,0.6), rgba(230,50,50,0.4), rgba(230,50,50,0.1));
  background-size: 300% 300%;
  animation: borderGradientRotate 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}

.stat-item:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-item:hover::before {
  padding: 2px;
  background: linear-gradient(270deg, rgba(230,50,50,0.2), rgba(230,50,50,0.7), rgba(255,77,77,0.9), rgba(230,50,50,0.7), rgba(230,50,50,0.2));
  background-size: 300% 300%;
  animation: borderGradientRotate 3s ease infinite;
}

.stat-icon {
  margin-bottom: 1rem;
  color: var(--accent-light);
}

.stat-icon svg {
  width: 36px;
  height: 36px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  text-shadow: 0 0 20px var(--accent-glow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
}

.service-card .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card .card p {
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.service-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--accent-glow);
  z-index: 2;
}

/* ============================================
   SECTORS TAGS
   ============================================ */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.sector-tag {
  padding: 0.5rem 1.25rem;
  background: var(--accent-glow-subtle);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.sector-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-glow-sm);
  background: rgba(230, 50, 50, 0.12);
}

/* City tags (dark bg version) */
.city-tag {
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(230, 50, 50, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.city-tag:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(230, 50, 50, 0.15);
  box-shadow: var(--shadow-glow-sm);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: var(--gradient-card);
  border: none;
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Animated gradient border for CTA box */
.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  padding: 2px;
  background: linear-gradient(270deg, rgba(230,50,50,0.08), rgba(230,50,50,0.35), rgba(255,77,77,0.5), rgba(230,50,50,0.35), rgba(230,50,50,0.08));
  background-size: 300% 300%;
  animation: borderGradientRotate 5s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  pointer-events: none;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(230, 50, 50, 0.03) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

.cta-box h2 {
  position: relative;
  margin-bottom: 1rem;
}

.cta-box p {
  position: relative;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-box .btn {
  position: relative;
}

/* Dark CTA variant */
.cta-box-dark {
  background: var(--gradient-dark);
  border-color: rgba(230, 50, 50, 0.2);
}

.cta-box-dark h2,
.cta-box-dark h3 {
  color: #ffffff;
}

.cta-box-dark p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ANIMATED GRADIENT BORDER - Blog & Region Cards
   ============================================ */
.blog-card,
.region-card {
  position: relative;
  overflow: hidden;
}

.blog-card::before,
.region-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  padding: 1.5px;
  background: linear-gradient(270deg, rgba(230,50,50,0.05), rgba(230,50,50,0.25), rgba(255,77,77,0.4), rgba(230,50,50,0.25), rgba(230,50,50,0.05));
  background-size: 300% 300%;
  animation: borderGradientRotate 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  transition: var(--transition);
}

.blog-card:hover::before,
.region-card:hover::before {
  padding: 2px;
  background: linear-gradient(270deg, rgba(230,50,50,0.15), rgba(230,50,50,0.6), rgba(255,77,77,0.8), rgba(230,50,50,0.6), rgba(230,50,50,0.15));
  background-size: 300% 300%;
  animation: borderGradientRotate 3s ease infinite;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.location-item {
  padding: 1rem 1.25rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-card);
}

.location-item:hover {
  border-color: var(--border-glow);
  color: var(--accent);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-2px);
}

.location-item svg {
  display: block;
  margin: 0 auto 0.5rem;
  color: var(--accent);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-glow-subtle);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-weight: 600;
  color: var(--text-primary);
}

.form-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 50, 50, 0.08), var(--shadow-glow-sm);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   FOOTER (Dark)
   ============================================ */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(230, 50, 50, 0.15);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

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

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer .nav-logo-text {
  color: #ffffff;
}

.footer .nav-logo-text span {
  color: var(--accent-light);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(230, 50, 50, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(230, 50, 50, 0.1);
  box-shadow: var(--shadow-glow-sm);
}

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

.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-payment-icons {
  display: flex;
  gap: 0.5rem;
}

.payment-icon {
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PAGE HERO (inner pages - dark)
   ============================================ */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.5);
  animation: heroKenBurns 25s ease-in-out infinite alternate;
  transform-origin: center center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(230, 50, 50, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  position: relative;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-hero p {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PARTNERSHIP FEATURES
   ============================================ */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.partnership-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.partnership-item:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.partnership-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--accent-glow);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Intersection observer animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============================================
   PARTICLE BACKGROUND
   ============================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   LIVE CHAT WIDGET
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: 1.25rem;
  right: 1rem;
  z-index: 998;
}

.chat-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  animation: none;
}

.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 35px var(--accent-glow-strong);
}

/* WhatsApp green override */
.whatsapp-btn {
  background: #25D366;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
  animation: none;
  text-decoration: none;
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

.whatsapp-btn:hover {
  background: #20bd5a;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.chat-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 0.75rem;
  padding: 0.6rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-card);
}

.chat-btn:hover + .chat-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LOADING / PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
  /* CSS-only auto-hide: fade out after 1s, then become invisible */
  animation: preloaderAutoHide 0.5s ease 1s forwards;
}

@keyframes preloaderAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
  }
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: -1;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(230, 50, 50, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .nav-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* CSS-only toggle: when checkbox is checked, show nav-links */
  #mobileMenuToggle:checked + .navbar .nav-links,
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 0;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: mobileMenuSlide 0.25s ease forwards;
  }

  @keyframes mobileMenuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  #mobileMenuToggle:checked + .navbar .nav-links li,
  .nav-links.mobile-open li {
    list-style: none;
    border-bottom: 1px solid #f0f0f0;
  }

  #mobileMenuToggle:checked + .navbar .nav-links li:last-child,
  .nav-links.mobile-open li:last-child {
    border-bottom: none;
  }

  #mobileMenuToggle:checked + .navbar .nav-links a,
  .nav-links.mobile-open a {
    padding: 1.15rem 1.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
  }

  #mobileMenuToggle:checked + .navbar .nav-links a:hover,
  .nav-links.mobile-open a:hover {
    color: var(--accent);
    background: #fafafa;
  }

  #mobileMenuToggle:checked + .navbar .nav-links a.active,
  .nav-links.mobile-open a.active {
    color: var(--accent);
    background: #fff5f5;
    border-left: 3px solid var(--accent);
  }

  #mobileMenuToggle:checked + .navbar .nav-links a.active::after,
  .nav-links.mobile-open a.active::after {
    display: none;
  }

  /* Phone number at bottom of mobile menu */
  #mobileMenuToggle:checked + .navbar .nav-links::after,
  .nav-links.mobile-open::after {
    content: '0330 113 2825';
    display: block;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
    padding: 1.5rem;
    border-top: 1px solid #f0f0f0;
    letter-spacing: 0.05em;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .stat-value {
    font-size: 2rem;
  }

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

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

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

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .section {
    padding: 4rem 0;
  }

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

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

  .stat-value {
    font-size: 1.8rem;
  }

  .stat-item {
    padding: 1.5rem 0.75rem;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }

  .hero-stats {
    justify-content: center;
    margin-bottom: 2.5rem;
  }

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

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 2rem;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-banner .btn {
  flex-shrink: 0;
}

/* Account Form */
.account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .account-form-grid {
    grid-template-columns: 1fr;
  }
}

.account-form-grid .form-group.full-width {
  grid-column: 1 / -1;
}

/* ============================================
   UK MAP (locations page)
   ============================================ */
.uk-map-section {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .uk-map-section {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   QUOTE WIDGET
   ============================================ */
.quote-section {
  background: var(--primary-dark);
  padding: 5rem 0;
}

.quote-widget {
  position: relative;
}

.quote-widget-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.quote-form {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.quote-form:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-glow);
}

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

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

.quote-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e8e8ee;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: #fafbfc;
  transition: var(--transition);
  outline: none;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 50, 50, 0.1);
  background: #ffffff;
}

.quote-field input::placeholder {
  color: var(--text-muted);
}

.quote-field.full-width {
  grid-column: 1 / -1;
}

.postcode-input-wrap {
  position: relative;
}

.postcode-input-wrap .field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
}

.postcode-input-wrap input,
.postcode-input-wrap select {
  padding-left: 2.4rem;
}

.postcode-input-wrap.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555570' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.quote-form-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
  margin: 1.5rem 0;
}

.quote-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 50, 50, 0.35);
}

/* Quote Info Panel */
.quote-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.quote-info-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow-sm);
}

.quote-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 50, 50, 0.06);
  border-radius: 12px;
}

.quote-info-card h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quote-phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-heading);
}

.quote-phone:hover {
  color: var(--accent-dark);
}

.quote-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}

.quote-info-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.quote-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Success state */
.quote-success {
  text-align: center;
  padding: 3rem 2rem;
}

.quote-success-inner {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-glow);
  max-width: 500px;
  margin: 0 auto;
}

.quote-success h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.quote-success p {
  color: var(--text-secondary);
}

/* Quote widget mobile */
@media (max-width: 968px) {
  .quote-widget-inner {
    grid-template-columns: 1fr;
  }
  .quote-info-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .quote-trust-badges {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .quote-form {
    padding: 1.5rem;
  }
  .quote-form-row {
    grid-template-columns: 1fr;
  }
  .quote-form-row.three-col {
    grid-template-columns: 1fr;
  }
  .quote-info-panel {
    grid-template-columns: 1fr;
  }
  .quote-trust-badges {
    flex-direction: column;
  }
  .quote-section {
    padding: 3rem 0;
  }
}
