@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto+Condensed:wght@400;700;900&display=swap');

:root {
  /* Colors */
  --primary-navy: #0A192F;
  --secondary-navy: #112240;
  --navy-light: #1D3557;
  --accent-gold: #F5A623;
  --accent-gold-hover: #E09612;
  --accent-gold-light: rgba(245, 166, 35, 0.15);
  --accent-orange: #E86F2C;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --border-color: #E2E8F0;
  --border-subtle: rgba(255,255,255,0.08);
  --success: #10B981;
  --error: #EF4444;

  /* Typography */
  --font-heading: 'Roboto Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --top-bar-height: 36px;

  /* Effects */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(245, 166, 35, 0.4);
  --shadow-glow-strong: 0 0 30px rgba(245, 166, 35, 0.6);
  --shadow-card: 0 2px 8px rgba(10, 25, 47, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--top-bar-height) + 20px);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--accent-gold);
  color: var(--primary-navy);
}

/* =========================================
   Utilities
   ========================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-light { background-color: var(--bg-white); }
.section-dark {
  background-color: var(--primary-navy);
  color: var(--text-light);
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-navy { color: var(--primary-navy); }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Section divider - subtle gold accent line */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  border-radius: 2px;
  margin: 0 auto 2rem;
}

/* Subheading style */
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-navy);
  border-color: var(--bg-white);
}

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

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

/* =========================================
   Top Bar
   ========================================= */
.top-bar {
  background: linear-gradient(90deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001;
}

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

.top-bar-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-links span {
  opacity: 0.85;
}

.top-bar-links a {
  opacity: 0.85;
}

.top-bar-links a:hover {
  color: var(--accent-gold);
  opacity: 1;
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

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

.logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

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

.nav-cta {
  margin-left: 0.5rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 50%, var(--navy-light) 100%);
  color: var(--text-light);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg-white) 0%, transparent 100%);
  z-index: 1;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(248, 250, 252, 0.8);
  max-width: 640px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
}

.trust-badge svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* =========================================
   About Strip
   ========================================= */
.about-strip {
  background-color: var(--bg-white);
  padding: 5rem 0;
}

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

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}

/* =========================================
   Bento Grid (Services)
   ========================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.2);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.bento-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.bento-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.bento-link {
  font-weight: 600;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.bento-link:hover {
  color: var(--accent-gold);
  gap: 0.75rem;
}

/* =========================================
   Social Proof & Trust Pillars
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--accent-gold-light);
  pointer-events: none;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--primary-navy);
  font-size: 0.9rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-pillar {
  padding: 1.5rem 1rem;
  transition: var(--transition);
}

.trust-pillar:hover {
  transform: translateY(-4px);
}

.trust-pillar .icon {
  width: 72px;
  height: 72px;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  transition: var(--transition);
}

.trust-pillar:hover .icon {
  box-shadow: var(--shadow-glow);
}

.trust-pillar h4 {
  color: var(--text-light);
}

.trust-pillar p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* =========================================
   Carriers Strip (Marquee)
   ========================================= */
.carriers-strip {
  background-color: var(--bg-white);
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.carrier-logos {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.carrier-logos:hover {
  animation-play-state: paused;
}

.carrier-logo-item {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.7;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.carrier-logo-item:hover {
  opacity: 1;
  color: var(--primary-navy);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   Accordions (FAQ & Coverage)
   ========================================= */
.accordion {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--bg-white);
  overflow: hidden;
  transition: var(--transition);
}

.accordion:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.accordion.active {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-light);
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  transition: var(--transition);
  user-select: none;
}

.accordion-header:hover {
  background: var(--bg-light);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion.active .accordion-content {
  padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.accordion-icon {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
  color: var(--accent-gold);
}

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

/* Dark variant */
.accordion-dark {
  background: rgba(255,255,255,0.04);
  color: white;
  border-color: rgba(255,255,255,0.1);
}

.accordion-dark .accordion-header {
  background: transparent;
  color: white;
}

.accordion-dark:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(255,255,255,0.06);
}

.accordion-dark.active {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.accordion-dark .accordion-content p {
  color: rgba(255,255,255,0.7);
}

/* =========================================
   Forms
   ========================================= */
.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px var(--accent-gold-light);
}

.form-control.valid {
  border-color: var(--success);
}

.form-control.invalid {
  border-color: var(--error);
}

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

.form-response-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: linear-gradient(180deg, var(--primary-navy) 0%, #06101F 100%);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange), var(--accent-gold));
}

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

.footer h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand p {
  color: rgba(248, 250, 252, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-logo {
  height: 44px;
  margin-bottom: 1.5rem;
  filter: invert(1);
  mix-blend-mode: screen;
}

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

.footer-links a {
  color: rgba(248, 250, 252, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-links strong {
  color: rgba(248, 250, 252, 0.8);
}

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

/* =========================================
   Page Header (Internal pages)
   ========================================= */
.page-header {
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 50%, var(--navy-light) 100%);
  color: var(--text-light);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  opacity: 0.08;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: 0.75rem;
  font-weight: 900;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Content blocks */
.content-block {
  margin-bottom: 4rem;
}

.content-block h2 {
  color: var(--primary-navy);
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.content-block h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  border-radius: 2px;
}

.coverage-list li {
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.7;
}

.coverage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  background: var(--accent-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-list li::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 0.15em;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 0.8rem;
}

/* Callout box */
.callout-box {
  background: var(--bg-light);
  padding: 2.5rem;
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-card);
}

/* Carrier pill badges */
.carrier-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.carrier-pill {
  background: rgba(255,255,255,0.08);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.carrier-pill:hover {
  background: rgba(245, 166, 35, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Light variant carrier pill */
.carrier-pill-light {
  background: var(--bg-light);
  color: var(--primary-navy);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.carrier-img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
  background-color: white;
}
.carrier-logo-item .carrier-img {
  width: 28px;
  height: 28px;
}

.carrier-pill-light:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold);
}

/* =========================================
   Scroll Animations
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-left {
  transform: translateX(-30px);
}

.animate-on-scroll.animate-right {
  transform: translateX(30px);
}

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

/* Stagger children animations */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }

/* =========================================
   Contact Page Specifics
   ========================================= */
.contact-info-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent-gold);
}

.phone-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--accent-gold) !important;
}

.phone-primary {
  font-size: 2.25rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.phone-secondary {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

/* Oregon Map SVG */
.oregon-map-container {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.oregon-map-container svg {
  max-width: 300px;
  margin: 0 auto;
}

/* =========================================
   CHIPS Values Grid
   ========================================= */
.chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.chip-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}

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

.chip-letter {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.chip-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.chip-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   CTA Sections
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.cta-section-dark {
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--text-light);
}

.cta-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.cta-contact-row a {
  color: var(--accent-gold);
  font-weight: 700;
}

/* =========================================
   Emotional quote block
   ========================================= */
.quote-block {
  background: var(--primary-navy);
  color: var(--text-light);
  padding: 5rem 0;
  text-align: center;
}

.quote-block .container {
  max-width: 800px;
}

.quote-block h2 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.quote-block p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.9;
  color: rgba(248, 250, 252, 0.85);
}

.quote-block strong {
  color: var(--text-light);
}

/* Gold value highlight for dollar amounts */
.value-highlight {
  color: var(--accent-gold);
  font-weight: 700;
}

/* =========================================
   Success message (form)
   ========================================= */
.success-message {
  background: linear-gradient(135deg, var(--accent-gold-light), rgba(16, 185, 129, 0.1));
  border: 2px solid var(--success);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .top-bar {
    display: none;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero::after {
    height: 60px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.active {
    pointer-events: all;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    z-index: 1001;
    gap: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1.5rem;
    text-align: center;
  }

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

  .about-img-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-badges {
    gap: 1rem;
  }

  .trust-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

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

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

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

  .page-header {
    padding: 4rem 0 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .phone-primary {
    font-size: 1.75rem;
  }

  .phone-secondary {
    font-size: 1.25rem;
  }

  .cta-contact-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .callout-box {
    padding: 1.5rem;
  }

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

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

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

/* =========================================
   Print Styles (basic)
   ========================================= */
@media print {
  .header, .top-bar, .mobile-menu-btn, .nav-overlay {
    display: none !important;
  }
  .hero, .page-header {
    padding: 2rem 0;
  }
  .section {
    padding: 1.5rem 0;
  }
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
