:root {
  --navy:           #0B1C2C;
  --navy-light:     #162840;
  --navy-dark:      #071318;
  --amber:          #E8960C;
  --amber-dark:     #C47D08;
  --amber-light:    #FBB731;
  --warm-white:     #FAF8F5;
  --gray-100:       #F3F1EE;
  --gray-200:       #E8E5E0;
  --gray-300:       #D4D0CA;
  --gray-500:       #8A8680;
  --gray-700:       #4A4844;
  --text-primary:   #1A1816;
  --text-secondary: #5A5855;
  --radius:         8px;
  --radius-lg:      14px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.10);
  --transition:     0.2s ease;
  --max-width:      1160px;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--amber);
}

ul, ol {
  list-style: none;
}

/* ----- Typography ----- */
h1, h2, h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: 2.75rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.prose p {
  width: 100%;
}

.intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-white {
  padding: 4rem 0;
  background-color: var(--warm-white);
}

.intro-text-section {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.intro-text-section p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.intro-text-section p:last-child {
  margin-bottom: 0;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.section-gray {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.section-navy {
  padding: 4rem 0;
  background-color: var(--navy);
  color: #fff;
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-navy p {
  color: rgba(255,255,255,0.8);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
  gap: 0.5rem;
}

.btn-amber {
  background-color: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.btn-amber:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
  color: #fff;
}

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

.btn-outline:hover {
  background-color: var(--navy);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-full {
  width: 100%;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--navy);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover {
  color: #fff;
}

.site-logo span {
  color: var(--amber);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--amber);
  transition: width var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Hero (Homepage) ----- */
.hero {
  position: relative;
  background-color: var(--navy);
  padding: 6rem 0 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 22px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h1 {
  color: #fff;
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.loaded .hero h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

body.loaded .hero .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

body.loaded .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s;
}

body.loaded .trust-badges {
  opacity: 1;
  transform: translateY(0);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ----- Hero Stats Bar ----- */
.hero-stats-bar {
  margin-top: 4rem;
  background-color: var(--navy-dark);
  border-top: 3px solid var(--amber);
  padding: 1.25rem 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.75rem;
  min-width: 0;
}

.hero-stat-number {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  color: var(--amber);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.hero-stat-label {
  font-size: clamp(0.65rem, 2vw, 0.82rem);
  color: rgba(255,255,255,0.65);
  margin-top: 0.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255,255,255,0.15);
  flex-shrink: 0;
}


.breadcrumb-bar {
  background-color: var(--navy-dark);
  padding: 0.75rem 0;
}

.breadcrumb-bar nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.breadcrumb-bar a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-bar a:hover {
  color: var(--amber);
}

.breadcrumb-bar span {
  color: rgba(255,255,255,0.4);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3) !important;
}

.page-hero {
  background-color: var(--navy);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 22px
  );
  pointer-events: none;
}

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

.page-hero h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--amber);
  display: inline-block;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ----- Services Grid ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  border: 1px solid var(--gray-200);
}

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

.service-card .card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--amber);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.service-card .card-link {
  color: var(--amber-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card:hover .card-link {
  color: var(--amber);
}

/* Full grid (20 cards — services index) */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ----- Why Choose Us (Stacked Editorial) ----- */
.why-list {
  margin-top: 2.5rem;
}

.why-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 2.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.why-list-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.why-list-left {
  padding-right: 1rem;
}

.why-num {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-list-left h3 {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.3;
}

.why-list-right p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
}

.why-list-right p:last-child {
  margin-bottom: 0;
}

/* ----- About Snippet (Homepage) ----- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-text .text-link {
  color: var(--amber-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.about-text .text-link:hover {
  color: var(--amber);
}

.stats-card {
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 0;
}

.stat-item + .stat-item {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  color: var(--amber);
  display: block;
}

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

/* ----- Reviews ----- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.65;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Aggregate rating */
.aggregate-rating {
  text-align: center;
  padding: 3rem 0;
}

.agg-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 5rem;
  color: var(--text-primary);
  line-height: 1;
}

.agg-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 1rem 0 0.5rem;
}

.agg-stars svg {
  width: 28px;
  height: 28px;
  fill: var(--amber);
}

.agg-count {
  color: var(--text-secondary);
  font-size: 1rem;
}



.sidebar-cta-box {
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.sidebar-cta-box p {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.sidebar-cta-box .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.sidebar-cta-box .btn:last-child {
  margin-bottom: 0;
}

.sidebar-related {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}

.sidebar-related h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-related a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-related a:last-child {
  border-bottom: none;
}

.sidebar-related a:hover {
  color: var(--amber);
}

/* ----- Check Lists ----- */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2.25rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-secondary);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--amber);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.warning-list li::before {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8960C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
}

/* ----- Steps Grid ----- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--navy-light);
  border-radius: var(--radius-lg);
}

.step-num {
  width: 48px;
  height: 48px;
  background-color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}

.step-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ----- Related Services ----- */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: all var(--transition);
}

.related-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-sm);
}

.related-card strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.related-arrow {
  color: var(--amber);
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.related-card:hover .related-arrow {
  transform: translateX(4px);
}

/* ----- FAQ Accordion ----- */
.faq-accordion {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--amber-dark);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
}

.faq-answer {
  padding: 0 0 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* FAQ Filter Buttons */
.faq-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.faq-filter-btn {
  padding: 0.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 100px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.faq-filter-btn:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
}

.faq-filter-btn.active {
  background-color: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

/* ----- Contact Form ----- */
.contact-form-section {
  padding: 4rem 0;
}

.contact-form {
  max-width: 640px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background-color: #fff;
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,150,12,0.12);
}

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

.form-success {
  background-color: #e8f5e8;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-error {
  background-color: #fde8e8;
  border: 1px solid #e53e3e;
  color: #c53030;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Contact page 2-column */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}

.contact-info-block h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

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

.contact-info-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}

.contact-info-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: #fff;
  font-size: 1.05rem;
}

.contact-info-value a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-info-value a:hover {
  color: var(--amber);
}

/* ----- CTA Band ----- */
.cta-band {
  background-color: var(--navy);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 22px
  );
  pointer-events: none;
}

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

.cta-band h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Footer ----- */
.site-footer {
  background-color: var(--navy-dark);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand .site-logo {
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-links-group + .footer-links-group {
  margin-top: 1.25rem;
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ----- About Page ----- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.team-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--navy);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card .team-role {
  color: var(--amber-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Certifications */
.cert-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cert-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cert-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--amber);
}



/* ----- Section Link ----- */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--amber-dark);
  font-weight: 600;
  margin-top: 1rem;
}

.section-link:hover {
  color: var(--amber);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .services-grid,
  .services-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-list-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .why-num {
    font-size: 2rem;
  }

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }

  .section-white,
  .section-gray,
  .section-navy {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* Prevent horizontal overflow everywhere */
  body {
    overflow-x: hidden;
  }

  /* Lock body when mobile nav is open */
  body.nav-locked {
    overflow: hidden;
  }

  /* --- Header --- */
  .header-inner {
    height: 64px;
  }

  .site-logo {
    font-size: 1.15rem;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
  }

  .main-nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav a {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }

  .main-nav a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  /* --- Hero --- */
  .hero {
    padding: 3rem 0 0;
  }

  .hero h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-badge {
    font-size: 0.85rem;
  }

  /* Hero stats bar */
  .hero-stats-bar {
    margin-top: 2.5rem;
    padding: 1rem 0;
  }

  .hero-stat {
    padding: 0.25rem 0.5rem;
  }

  .hero-stat-number {
    font-size: 1.25rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.01em;
  }

  .hero-stat-divider {
    height: 28px;
  }

  /* --- Page Hero (inner pages) --- */
  .page-hero {
    padding: 2.5rem 0 2rem;
  }

  .page-hero h1 {
    font-size: 1.65rem;
    padding-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* Breadcrumbs */
  .breadcrumb-bar nav {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  /* --- Grids --- */
  .services-grid,
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .service-card {
    padding: 1.25rem 1rem;
  }

  .service-card .card-icon {
    width: 36px;
    height: 36px;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

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

  .review-card {
    padding: 1.5rem;
  }

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

  .step-card {
    padding: 1.5rem 1.25rem;
  }

  .related-services-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    padding: 1rem 1.25rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-card {
    padding: 2rem 1.5rem;
  }

  .cert-list {
    grid-template-columns: 1fr;
  }

  /* --- Why Choose Us --- */
  .why-list-item {
    gap: 0.75rem;
    padding: 1.75rem 0;
  }

  .why-num {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
  }

  .why-list-left h3 {
    font-size: 1.1rem;
  }

  .why-list-right p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  /* --- FAQ --- */
  .faq-filters {
    gap: 0.375rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .faq-filter-btn {
    flex-shrink: 0;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 0;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  /* --- Contact Form --- */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-section .contact-form {
    max-width: 100%;
  }

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

  .contact-info-block {
    padding: 1.75rem;
  }

  .contact-info-value {
    font-size: 0.95rem;
    word-break: break-word;
  }

  /* Intro text section */
  .intro-text-section {
    padding: 2rem 0 1.5rem;
  }

  .intro-text-section p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .section-intro {
    font-size: 0.95rem;
  }

  /* Aggregate rating */
  .agg-number {
    font-size: 3.5rem;
  }

  .agg-stars svg {
    width: 22px;
    height: 22px;
  }

  .aggregate-rating {
    padding: 2rem 0;
  }

  /* --- CTA Band --- */
  .cta-band {
    padding: 3rem 0;
  }

  .cta-band h2 {
    font-size: 1.35rem;
  }

  .cta-band p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 3rem 0 0;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    padding: 1.25rem 0;
    font-size: 0.78rem;
  }

  .footer-bottom p {
    font-size: 0.78rem;
  }

  /* Buttons — touch-friendly minimum size */
  .btn {
    min-height: 48px;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

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

  .hero .hero-subtitle {
    font-size: 0.92rem;
  }

  .services-grid,
  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
  }

  .service-card .card-icon {
    margin: 0;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .service-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .service-card p {
    display: none;
  }

  .service-card .card-link {
    font-size: 0.82rem;
  }

  .hero-stats-bar {
    margin-top: 2rem;
  }

  .hero-stat-number {
    font-size: 1.1rem;
  }

  .hero-stat-label {
    font-size: 0.55rem;
  }

  .hero-stat-divider {
    height: 24px;
  }

  .page-hero h1 {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 0.875rem;
  }

  .contact-info-block {
    padding: 1.25rem;
  }

  .cta-band h2 {
    font-size: 1.2rem;
  }

  .check-list li {
    font-size: 0.88rem;
    padding: 0.625rem 0 0.625rem 2rem;
  }

  .check-list li::before {
    width: 18px;
    height: 18px;
    background-size: 10px;
  }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .team-initials {
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
  }
}