/* =============================================
   uzladesstacijas.lv — Global Stylesheet
   Brand colours: navy #1a2d4a | gold #f5c518
   ============================================= */

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

:root {
  --navy:        #1a2d4a;
  --navy-med:    #1e3a5f;
  --navy-light:  #2a4a70;
  --gold:        #f5c518;
  --gold-dark:   #d4a900;
  --bg:          #f4f6f9;
  --white:       #ffffff;
  --text:        #0d1b2a;
  --text-med:    #4a5568;
  --border:      #dde3ed;
  --green:       #2d7a4f;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(26,45,74,0.10);
  --shadow-lg:   0 6px 30px rgba(26,45,74,0.15);
  --transition:  0.2s ease;
  --max-w:       1200px;
  --font:        'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* =============================================
   NOTIFICATION BAR
   ============================================= */
.notif-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  line-height: 1.5;
}
.notif-bar strong { font-weight: 800; }
.notif-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--navy);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  background: var(--white);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(26,45,74,0.12);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 68px;
  gap: 16px;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  height: 46px;
  width: auto;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.nav-list > li > a:hover {
  background: var(--bg);
  color: var(--navy-light);
}

/* Nav CTA button */
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--navy) !important;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 8px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.lang-switcher a {
  display: block;
  padding: 6px 9px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border-right: 1.5px solid var(--border);
  line-height: 1;
}
.lang-switcher a:last-child { border-right: none; }
.lang-switcher a:hover { background: var(--bg); color: var(--navy); }
.lang-switcher a.active {
  background: var(--navy);
  color: #fff;
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.18s ease;
  border: 1px solid var(--border);
  list-style: none;
  z-index: 200;
}

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

.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
  background: var(--bg);
  color: var(--navy);
}

/* Hamburger toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Mobile nav */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open { display: flex; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }

  .nav-list > li > a {
    padding: 12px 16px;
    color: rgba(255,255,255,0.88);
  }
  .nav-list > li > a:hover {
    background: rgba(255,255,255,0.10);
    color: #fff;
  }

  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.06);
    border: none;
    border-radius: 6px;
    display: none;
    padding: 4px 0;
  }

  .has-dropdown.open .dropdown { display: block; }

  .dropdown li a {
    color: rgba(255,255,255,0.8);
    padding: 9px 20px;
    font-size: 0.88rem;
  }
  .dropdown li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  /* Lang switcher: move into mobile menu as a row */
  .lang-switcher {
    margin: 10px 0 0;
    border-color: rgba(255,255,255,0.25);
    align-self: center;
  }
  .lang-switcher a {
    color: rgba(255,255,255,0.7);
    border-right-color: rgba(255,255,255,0.25);
  }
  .lang-switcher a:hover { background: rgba(255,255,255,0.1); color: #fff; }
  .lang-switcher a.active { background: var(--gold); color: var(--navy); }
}

/* =============================================
   HERO SECTION — split layout with bg image
   ============================================= */
.hero {
  background: url('../../images/hero_bg.jpg') center center / cover no-repeat;
  position: relative;
  padding: 80px 0 72px;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.78) 0%,
    rgba(26,45,74,0.68) 55%,
    rgba(26,45,74,0.52) 100%
  );
  z-index: 0;
}

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

/* Split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 60px; }
}

/* Left text */
.hero-text {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.18);
  border: 1px solid rgba(245,197,24,0.45);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}

.hero-lead {
  font-size: clamp(0.97rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 28px;
}
.hero-trust span {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Response highlight box in hero */
.hero-response-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 8px;
}
.hrb-icon { font-size: 1.8rem; flex-shrink: 0; }
.hero-response-box strong { color: var(--gold); font-size: 1rem; display: block; margin-bottom: 4px; }
.hero-response-box p { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.5; margin: 0; }

/* Right — hero form box */
.hero-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.hfb-header {
  background: var(--navy);
  padding: 22px 28px 18px;
  color: #fff;
}
.hfb-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hfb-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}
.hfb-header p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
}
.hfb-header strong { color: var(--gold); }

.hero-contact-form {
  padding: 24px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
}

/* Override form fields for light bg */
.hero-contact-form .form-group label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-contact-form .form-group input,
.hero-contact-form .form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border var(--transition);
}
.hero-contact-form .form-group input::placeholder,
.hero-contact-form .form-group textarea::placeholder { color: #aab; }
.hero-contact-form .form-group input:focus,
.hero-contact-form .form-group textarea:focus {
  border-color: var(--navy);
  background: #fff;
}
.hero-contact-form .form-group textarea { min-height: 80px; resize: vertical; }
.hero-contact-form .form-note {
  color: var(--text-med);
  font-size: 0.73rem;
  text-align: center;
  margin-top: -6px;
}
.hero-contact-form .form-success {
  background: rgba(45,122,79,0.12);
  border: 1px solid rgba(45,122,79,0.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--green);
  text-align: center;
  font-size: 0.92rem;
}
.hero-contact-form .form-success strong { color: var(--green); }
.hero-contact-form .form-error-msg {
  background: rgba(200,50,50,0.08);
  border: 1px solid rgba(200,50,50,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #c0392b;
  text-align: center;
  font-size: 0.88rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(245,197,24,0.30);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.40);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-med);
  font-size: 1rem;
  line-height: 1.6;
}

/* =============================================
   CARDS & GRIDS
   ============================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.card h3 a { color: var(--navy); }
.card h3 a:hover { color: var(--navy-light); text-decoration: underline; }

.card p { color: var(--text-med); font-size: 0.93rem; line-height: 1.6; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 14px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.card-link:hover { color: var(--navy-light); }

/* Feature cards (why us section) */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-med);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =============================================
   HOW IT WORKS — STEPS
   ============================================= */
.steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 42px;
  font-size: 1.4rem;
  color: var(--gold);
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-med); }
@media (max-width: 700px) { .step::after { display: none; } }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-family: inherit;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg); }
.faq-arrow {
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-med);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-a a { color: var(--navy); text-decoration: underline; }
.faq-item.open .faq-a { display: block; }

/* =============================================
   CONTACT FORM
   ============================================= */
.form-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 0;
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 900px) {
  .form-inner { grid-template-columns: 1fr; gap: 36px; }
}

.form-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.form-text p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  line-height: 1.7;
}

.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.form-benefits li {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-info p { color: rgba(255,255,255,0.8); font-size: 0.97rem; }
.contact-info a { color: var(--gold); font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }

.form-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.97rem;
  font-family: inherit;
  transition: border var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.14);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { font-size: 1.05rem; padding: 15px; justify-content: center; }

.form-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: -4px;
}

.form-success {
  background: rgba(45,122,79,0.25);
  border: 1px solid rgba(45,122,79,0.5);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: #fff;
  text-align: center;
  margin-top: 8px;
}
.form-error-msg {
  background: rgba(200,50,50,0.2);
  border: 1px solid rgba(200,50,50,0.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #ffaaaa;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--text-med);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-med); }

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-med) 60%, var(--navy-light) 100%);
  color: #fff;
  padding: 64px 24px 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3.8vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero .hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 28px;
  border: none;
  padding: 0;
}

/* =============================================
   CONTENT INNER (sidebar layout for inner pages)
   ============================================= */
.content-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .content-inner { grid-template-columns: 1fr; }
}

.content-main h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.content-main h2:first-child { margin-top: 0; }

.content-main p {
  color: var(--text-med);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.97rem;
}
.content-main a { color: var(--navy); text-decoration: underline; }
.content-main a:hover { color: var(--navy-light); }

.content-main ul, .content-main ol {
  margin: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-main ul li, .content-main ol li {
  color: var(--text-med);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 4px;
}
.content-main ul { list-style: disc; padding-left: 20px; }
.content-main ol { list-style: decimal; padding-left: 20px; }
.content-main ul li strong, .content-main ol li strong { color: var(--navy); }

/* Sidebar */
.content-sidebar { display: flex; flex-direction: column; gap: 0; }

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.sidebar-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-box ul li {
  color: var(--text-med);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-box ul li a {
  color: var(--navy);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.sidebar-box ul li a:hover { color: var(--navy-light); text-decoration: underline; }
.sidebar-box p { color: var(--text-med); font-size: 0.9rem; line-height: 1.6; margin-bottom: 8px; }
.sidebar-box strong { color: var(--navy); }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.93rem;
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
}
.comparison-table th:first-child { border-radius: 10px 0 0 0; }
.comparison-table th:last-child { border-radius: 0 10px 0 0; }
.comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.comparison-table tr:hover td { background: var(--bg); }
.comparison-table tr:last-child td:first-child { border-radius: 0 0 0 10px; }
.comparison-table tr:last-child td:last-child { border-radius: 0 0 10px 0; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.70);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col { display: flex; flex-direction: column; gap: 0; }

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

.footer-col p {
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer-col p a { color: rgba(255,255,255,0.70); transition: color var(--transition); }
.footer-col p a:hover { color: var(--gold); }

.footer-col h4 {
  color: #fff;
  font-size: 0.87rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}

/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-med);
  padding: 10px 16px;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.25);
  z-index: 999;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 680px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* =============================================
   RESPONSE BAR (below hero)
   ============================================= */
.response-bar {
  background: var(--navy);
  padding: 16px 0;
}
.rb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.rb-item {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  padding: 6px 28px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rb-item strong { color: #fff; }
.rb-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .rb-inner { flex-direction: column; gap: 6px; }
  .rb-divider { display: none; }
}

/* =============================================
   MINI CTA BLOCK (after FAQ)
   ============================================= */
.mini-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  flex-wrap: wrap;
}
.mcb-text strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.mcb-text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin: 0;
}
.gold-highlight { color: var(--gold); font-weight: 700; }
@media (max-width: 580px) {
  .mini-cta-block { flex-direction: column; text-align: center; padding: 24px 20px; }
}

/* Footer response badge */
.footer-response {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
}
.footer-response strong { color: var(--gold); }
.fr-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}

/* Footer logo link */
.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo img { height: 44px; width: auto; }

/* =============================================
   UNIFIED FORM — two-column layout & radio group
   ============================================= */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Radio group row */
.form-radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  transition: border var(--transition), background var(--transition);
  flex: 1;
  min-width: 120px;
  justify-content: center;
}
.form-radio-group label:hover {
  border-color: var(--gold);
  background: rgba(245,197,24,0.12);
}
.form-radio-group input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.form-radio-group input[type="radio"]:checked + span {
  color: var(--gold);
}
.form-radio-group label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(245,197,24,0.15);
}

/* Light-bg (hero) radio overrides */
.hero-contact-form .form-radio-group label {
  border-color: var(--border);
  background: var(--bg);
  color: var(--text);
}
.hero-contact-form .form-radio-group label:hover {
  border-color: var(--navy);
  background: rgba(26,45,74,0.06);
}
.hero-contact-form .form-radio-group label:has(input:checked) {
  border-color: var(--navy);
  background: rgba(26,45,74,0.08);
}
.hero-contact-form .form-radio-group input[type="radio"]:checked + span {
  color: var(--navy);
}

/* =============================================
   UTILITIES
   ============================================= */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
