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

/* --- DESIGN SYSTEM --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette */
  --primary-dark: #003b95;
  --primary-light: #00224f;
  --accent-teal: #FF8A25;
  --accent-blue: #006CFF;
  --accent-blue-light: #F0F4fc;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #F8FAFC;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #003b95 0%, #00224f 100%);
  --grad-accent: linear-gradient(135deg, #FF8A25 0%, #d86810 100%);
  --grad-bg: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Spacing & Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

/* --- BASE STYLES & RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- TOP ANNOUNCEMENT BANNER --- */
.top-banner {
  background: var(--primary-light);
  color: var(--text-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 2px solid var(--accent-teal);
  position: relative;
  z-index: 1001;
}
.top-banner a {
  color: var(--accent-teal);
  text-decoration: underline;
  font-weight: 700;
}
.top-banner a:hover {
  color: #FFFFFF;
}

@media (max-width: 480px) {
  .top-banner {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-teal);
  color: var(--text-light);
  padding: 12px 24px;
  z-index: 10000;
  transition: top var(--transition-fast);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent-blue);
  outline-offset: 2px;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.section {
  padding: 80px 0;
}
.section-bg {
  background: var(--grad-bg);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-teal); }
.text-muted { color: var(--text-muted); }

/* --- ACCESSIBLE FOCUS STATES --- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent-teal);
  outline-offset: 2px;
}

/* --- SITE HEADER --- */
.site-header {
  height: var(--header-height);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--grad-accent);
  border-radius: 50%;
  display: inline-block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}
.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transition: width var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-dark);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  gap: 8px;
}
.btn-primary {
  background: var(--grad-accent);
  color: var(--text-light);
  box-shadow: 0 4px 14px 0 rgba(13, 148, 136, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(13, 148, 136, 0.5);
  filter: brightness(1.1);
}
.btn-secondary {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
}
.btn-secondary:hover {
  background: #bae6fd;
  color: #0369a1;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  background: rgba(13, 148, 136, 0.05);
}
.btn-phone {
  font-family: var(--font-heading);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  margin: 6px auto;
  transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero {
  background: var(--grad-hero);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-disclaimer {
  font-size: 13px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent-teal);
  padding: 12px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
  text-align: left;
}

/* --- SERVICE CARD GRID --- */
.section-title {
  font-size: 36px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 800;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}
.card-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-blue);
  font-size: 24px;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
}
.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.card-link {
  font-weight: 600;
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}
.card-link:hover {
  color: var(--accent-blue);
}

/* --- HOW IT WORKS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.step-item {
  text-align: center;
  position: relative;
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
}
.step-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.step-item p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}

/* --- TRANSPARENCY BANNER --- */
.transparency-banner {
  background: var(--accent-blue-light);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 60px;
}
.transparency-banner h3 {
  font-size: 22px;
  color: #0369a1;
  margin-bottom: 14px;
}
.transparency-banner p {
  color: #0c4a6e;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* --- CONTACT SECTION / FORM --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.contact-detail-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 20px;
}
.contact-detail-text h4 {
  font-size: 15px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-detail-text a {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
}
.contact-detail-text a:hover {
  color: var(--accent-teal);
}

.contact-form-container {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition-fast);
}
.form-control:focus {
  border-color: var(--accent-teal);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.form-privacy-notice {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* --- FAQ ACCORDION --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.faq-question {
  width: 100%;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
}
.faq-icon {
  transition: transform var(--transition-normal);
  font-size: 20px;
  color: var(--text-muted);
  display: inline-block;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  background: #fafafa;
}
.faq-answer-inner {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-teal);
}
.faq-item.active {
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: var(--shadow-md);
}

/* --- NOTICE BANNER --- */
.notice-box {
  background: #FFFBEB;
  border: 1px solid #FEF3C7;
  border-left: 4px solid #D97706;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 40px;
}
.notice-box h4 {
  color: #92400E;
  margin-bottom: 8px;
  font-size: 16px;
}
.notice-box p {
  color: #B45309;
  font-size: 14px;
  line-height: 1.6;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--primary-dark);
  color: #94a3b8;
  padding: 80px 0 40px;
  border-top: 4px solid var(--accent-teal);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h3, .footer-col h4 {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-about-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--accent-teal);
  padding-left: 4px;
}
.footer-disclaimer-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}
.footer-phone-cta {
  font-weight: 700;
  color: var(--text-light);
  font-size: 16px;
}
.footer-phone-cta:hover {
  color: var(--accent-teal);
}

/* --- FLOATING STICKY CTA CARD (ALWAYS FIXED) --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  max-width: calc(100% - 40px);
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1998;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 1;
  transform: none;
}

.sticky-cta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.sticky-cta-status {
  width: 32px;
  height: 32px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sticky-cta-dot {
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.sticky-cta-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulse-ring 1.8s infinite;
  opacity: 0;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.sticky-cta-text-block {
  display: flex;
  flex-direction: column;
}

.sticky-cta-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  transition: opacity 0.3s ease;
}

.sticky-cta-statement {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

.sticky-cta-btn {
  background: #FF8A25;
  color: #FFFFFF;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(255, 138, 37, 0.3);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.sticky-cta-btn:hover {
  background: #e67513;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 138, 37, 0.45);
}

.sticky-cta-phone-icon {
  font-size: 20px;
}


/* --- INTERSTITIAL / EXIT-INTENT POPUP --- */
/* --- INTERSTITIAL / EXIT-INTENT POPUP --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 59, 149, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.popup-card {
  background: #FFFFFF;
  max-width: 480px;
  width: 90%;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  border: 1px solid rgba(226, 232, 240, 0.8);
}
.popup-overlay.show .popup-card {
  transform: scale(1);
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  color: #CBD5E1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.popup-close:hover {
  color: #94A3B8;
}
.popup-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 138, 37, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #FF8A25;
  font-size: 36px;
}
.popup-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
}
.popup-card p {
  color: #64748B;
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.popup-cta {
  background: #FF8A25;
  color: #FFFFFF;
  width: 100%;
  padding: 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 138, 37, 0.35);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  margin-bottom: 16px;
}
.popup-cta:hover {
  background: #e67513;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 138, 37, 0.45);
}
.popup-disclaimer {
  font-size: 11px;
  color: #94A3B8;
  margin-bottom: 0;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  width: calc(100% - 48px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  z-index: 1999;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity var(--transition-normal);
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--accent-teal);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  flex: 1;
  padding: 8px 16px;
  font-size: 13px;
}

/* --- SUB-PAGES / STATIC PAGE LAYOUTS --- */
.page-hero {
  background: var(--grad-hero);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 40px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.page-breadcrumbs {
  font-size: 14px;
  color: #94a3b8;
}
.page-breadcrumbs a {
  color: var(--accent-teal);
}
.page-content-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 50px;
  align-items: start;
}
.main-content {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.sidebar-cta {
  background: var(--grad-hero);
  color: var(--text-light);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.sidebar-cta h3 {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 22px;
}
.sidebar-cta p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 24px;
}
.sidebar-cta .btn {
  width: 100%;
}
.sidebar-cta-disclaimer {
  font-size: 11px;
  color: #64748b;
  margin-top: 16px;
  line-height: 1.4;
}

/* Rich Text Formatting */
.rich-text h2 {
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 16px;
}
.rich-text h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.rich-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.rich-text ul, .rich-text ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 15px;
}
.rich-text li {
  margin-bottom: 8px;
}
.rich-text-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-style: italic;
}

/* --- 404 PAGE --- */
.error-page-content {
  text-align: center;
  padding: 100px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.error-code {
  font-size: 120px;
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: 20px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-page-content h1 {
  font-size: 32px;
  margin-bottom: 16px;
}
.error-page-content p {
  color: var(--text-muted);
  margin-bottom: 36px;
}
.error-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .site-header {
    height: 70px;
  }

  /* Navigation collapse to mobile hamburger drawer */
  .hamburger {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-card);
    flex-direction: column;
    align-items: stretch;
    padding: 40px;
    gap: 40px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .nav-link {
    font-size: 20px;
    display: block;
  }
  .header-cta {
    width: 100%;
  }

  /* Hamburger transform when menu is open */
  .hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero responsive */
  .hero {
    padding: 60px 0 80px;
    text-align: center;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-disclaimer {
    font-size: 12px;
  }

  /* Service components responsive */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-layout, .page-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta-bar {
    bottom: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px;
    opacity: 1;
  }
  .sticky-cta-statement {
    font-size: 11px;
    color: #64748B;
    margin-top: 2px;
    display: block;
  }
  .sticky-cta-title {
    font-size: 15px;
    font-weight: 800;
    color: #0F172A;
  }
  .sticky-cta-btn {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    background: #FF8A25;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(255, 138, 37, 0.3);
  }

  body {
    padding-bottom: 120px; /* Space for mobile sticky footer CTA */
  }

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

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 15px;
  }

  .sticky-cta-bar {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 8px 12px;
    gap: 6px;
    border-radius: 12px;
  }
  .sticky-cta-title {
    font-size: 14px;
  }
  .sticky-cta-statement {
    font-size: 10px;
  }
  .sticky-cta-btn {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 8px;
  }
  
  body {
    padding-bottom: 105px;
  }
  
  .cookie-banner {
    left: 12px;
    bottom: 94px; /* Floating above the sticky mobile CTA */
    width: calc(100% - 24px);
    padding: 16px;
  }
  
  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-form-container {
    padding: 24px;
  }
  
  .popup-card {
    padding: 24px;
  }
}
