/* =======================================================================
   The Court Marriages Consultants — Custom Stylesheet
   Complements existing bootstrap.css / style.css
   ======================================================================= */

/* -----------------------------------------------------------------------
   Variables
   ----------------------------------------------------------------------- */
:root {
  --c-red:     #c0392b;
  --c-red-d:   #96281b;
  --c-dark:    #1a1a2e;
  --c-navy:    #2c3e50;
  --c-gold:    #f0a500;
  --c-white:   #ffffff;
  --c-light:   #f7f8fc;
  --c-cream:   #fdf6ee;
  --c-gray:    #6c757d;
  --c-border:  #e5e7eb;
  --c-body:    #444c5a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --r-sm:      8px;
  --r-md:      14px;
  --r-lg:      22px;
  --tr:        all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font:      'Poppins','Segoe UI',Arial,sans-serif;
}

/* -----------------------------------------------------------------------
   Base Overrides
   ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font) !important;
  color: #333;
  line-height: 1.7;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* -----------------------------------------------------------------------
   HEADER — override existing main-header
   ----------------------------------------------------------------------- */
.main-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  transition: var(--tr);
  box-shadow: var(--shadow-sm);
}

/* Top bar */
.main-header .header-top {
  background: var(--c-dark);
  padding: 7px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-family: var(--font);
}
.main-header .header-top ul.clearfix li {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
.main-header .header-top ul.clearfix li strong { color: var(--c-gold); }

/* Navbar box */
.main-header .main-box {
  background: var(--c-white);
  transition: var(--tr);
}
.main-header.fixed-header .main-box {
  background: var(--c-dark) !important;
  box-shadow: var(--shadow-md);
}
.main-header.fixed-header .main-box .navigation > li > a { color: rgba(255,255,255,0.88) !important; }
.main-header.fixed-header .main-box .navigation > li > a:hover { color: var(--c-gold) !important; }

/* Logo */
.main-header .logo a img { height: 50px; width: auto; }

/* Desktop Navigation */
.main-header .navigation > li > a {
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--c-navy) !important;
  padding: 18px 14px !important;
  letter-spacing: 0.2px;
  transition: var(--tr);
  position: relative;
}
.main-header .navigation > li > a::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 14px; right: 14px;
  height: 2px;
  background: var(--c-red);
  transform: scaleX(0);
  transition: var(--tr);
}
.main-header .navigation > li.current > a,
.main-header .navigation > li > a:hover { color: var(--c-red) !important; }
.main-header .navigation > li.current > a::after,
.main-header .navigation > li > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.main-header .navigation > li ul {
  border-top: 3px solid var(--c-red) !important;
  border-radius: 0 0 var(--r-sm) var(--r-sm) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 8px 0;
}
.main-header .navigation > li ul li a {
  font-family: var(--font) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--c-navy) !important;
  padding: 9px 20px !important;
  transition: var(--tr);
}
.main-header .navigation > li ul li a:hover {
  color: var(--c-red) !important;
  background: var(--c-light) !important;
  padding-left: 26px !important;
}

/* -----------------------------------------------------------------------
   HERO SECTION
   ----------------------------------------------------------------------- */
.tcm-hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(26,26,46,0.91) 0%, rgba(150,40,27,0.80) 100%),
    url('../img/court-marriage.jpg') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  position: relative;
}

.tcm-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 70px;
  background: var(--c-white);
  clip-path: ellipse(54% 100% at 50% 100%);
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold);
  color: var(--c-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-badge::before { content: '⚖'; font-size: 14px; }

.tcm-hero h1 {
  color: var(--c-white);
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  font-family: var(--font);
}
.tcm-hero h1 em {
  color: var(--c-gold);
  font-style: normal;
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary-red {
  background: var(--c-red);
  color: #fff !important;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--c-red);
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
  text-decoration: none;
}
.btn-primary-red:hover {
  background: transparent;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}

.btn-outline-white {
  background: transparent;
  color: #fff !important;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  border-color: rgba(255,255,255,0.85);
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
}
.tick {
  width: 20px; height: 20px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--c-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.hero-form-card .form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-dark);
  margin: 0 0 4px;
  font-family: var(--font);
}
.hero-form-card .form-sub {
  font-size: 13px;
  color: var(--c-gray);
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}
.tcm-field {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: var(--font);
  transition: var(--tr);
  outline: none;
  color: #333;
  margin-bottom: 14px;
  display: block;
  background: #fff;
}
.tcm-field:focus { border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(192,57,43,0.08); }
.tcm-field::placeholder { color: #bbb; }
textarea.tcm-field { resize: vertical; min-height: 80px; }
.btn-submit-full {
  width: 100%;
  background: var(--c-red);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 0.3px;
}
.btn-submit-full:hover {
  background: var(--c-red-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}

/* -----------------------------------------------------------------------
   TICKER (replaces marquee)
   ----------------------------------------------------------------------- */
.tcm-ticker {
  background: var(--c-red);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.tcm-ticker-inner {
  display: inline-block;
  animation: ticker-roll 35s linear infinite;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding-left: 100%;
}
@keyframes ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -----------------------------------------------------------------------
   STATS BAR
   ----------------------------------------------------------------------- */
.tcm-stats { padding: 70px 0 60px; background: var(--c-white); }

.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--r-md);
  background: var(--c-light);
  transition: var(--tr);
  border-bottom: 4px solid transparent;
}
.stat-card:hover {
  border-bottom-color: var(--c-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  background: var(--c-white);
}
.stat-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-d));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}
.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font);
}
.stat-num .suffix { color: var(--c-red); }
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font);
}

/* -----------------------------------------------------------------------
   SECTION SHARED STYLES
   ----------------------------------------------------------------------- */
.tcm-section   { padding: 80px 0; }
.tcm-section-light { background: var(--c-light); }
.tcm-section-dark  { background: var(--c-dark); color: rgba(255,255,255,0.82); }
.tcm-section-cream { background: var(--c-cream); }

.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--c-red);
  margin-bottom: 10px;
  font-family: var(--font);
}
.sec-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--c-dark);
  margin: 0 0 12px;
  font-family: var(--font);
  line-height: 1.25;
}
.sec-title span { color: var(--c-red); }
.sec-title-white { color: var(--c-white) !important; }
.sec-desc {
  font-size: 15.5px;
  color: var(--c-gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.sec-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--c-red), var(--c-gold));
  border-radius: 2px;
  margin: 14px 0 0;
}
.sec-divider-center { margin: 14px auto 0; }

/* -----------------------------------------------------------------------
   SERVICE CARDS
   ----------------------------------------------------------------------- */
.service-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
  display: block;
  height: 100%;
  margin-bottom: 24px;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  color: inherit;
  text-decoration: none;
}

.svc-img-wrap { overflow: hidden; position: relative; height: 185px; }
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr);
  display: block;
}
.service-card:hover .svc-img-wrap img { transform: scale(1.06); }
.svc-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--c-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font);
}
.svc-body { padding: 20px; }
.svc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 8px;
  transition: var(--tr);
  font-family: var(--font);
}
.service-card:hover .svc-title { color: var(--c-red); }
.svc-desc {
  font-size: 13.5px;
  color: var(--c-gray);
  margin: 0 0 14px;
  line-height: 1.6;
}
.svc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--tr);
}
.svc-link .arrow { transition: var(--tr); }
.service-card:hover .svc-link .arrow { transform: translateX(4px); }

/* -----------------------------------------------------------------------
   PROCESS STEPS
   ----------------------------------------------------------------------- */
.process-step { text-align: center; padding: 20px 16px; position: relative; }

.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--c-white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
  position: relative;
  z-index: 1;
  font-family: var(--font);
}
.step-icon { font-size: 30px; margin-bottom: 10px; }
.step-line {
  position: absolute;
  top: 56px; left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-red) 0%, rgba(192,57,43,0.15) 100%);
  z-index: 0;
}
.process-step:last-child .step-line { display: none; }
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 8px;
  font-family: var(--font);
}
.step-desc { font-size: 14px; color: var(--c-gray); line-height: 1.65; }

/* -----------------------------------------------------------------------
   WHY CHOOSE US
   ----------------------------------------------------------------------- */
.why-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.why-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(192,57,43,0.04));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border: 1.5px solid rgba(192,57,43,0.15);
  transition: var(--tr);
}
.why-feature:hover .why-icon {
  background: var(--c-red);
  border-color: var(--c-red);
}
.why-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 5px;
  font-family: var(--font);
}
.why-text p { font-size: 14px; color: var(--c-gray); margin: 0; line-height: 1.65; }

/* -----------------------------------------------------------------------
   DOCUMENT REQUIREMENTS CARDS
   ----------------------------------------------------------------------- */
.req-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border-top: 4px solid var(--c-red);
  transition: var(--tr);
  margin-bottom: 24px;
}
.req-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.req-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
}
.req-card-title span { font-size: 26px; }
.req-list { list-style: none; padding: 0; margin: 0; }
.req-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px dashed var(--c-border);
  display: flex;
  align-items: center;
  gap: 9px;
}
.req-list li:last-child { border-bottom: none; }
.req-list li::before { content: '✔'; color: var(--c-red); font-size: 12px; flex-shrink: 0; }

/* -----------------------------------------------------------------------
   AREAS WE SERVE
   ----------------------------------------------------------------------- */
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
  transition: var(--tr);
  text-decoration: none;
  margin: 5px;
  font-family: var(--font);
}
.area-tag::before { content: '📍'; font-size: 13px; }
.area-tag:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

/* -----------------------------------------------------------------------
   CTA BANNER
   ----------------------------------------------------------------------- */
.tcm-cta-banner {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-navy) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tcm-cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.tcm-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,165,0,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--c-white);
  margin: 0 0 14px;
  font-family: var(--font);
}
.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin: 0 0 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.tcm-cta-banner .cta-inner { position: relative; z-index: 1; }
.tcm-cta-banner .cta-text h2 { color: #fff; font-size: clamp(22px,3vw,38px); font-weight: 800; margin: 0 0 12px; font-family: var(--font); }
.tcm-cta-banner .cta-text p { color: rgba(255,255,255,0.82); font-size: 16px; margin: 0 0 32px; }

.btn-cta-call {
  background: var(--c-red);
  color: #fff !important;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(192,57,43,0.45);
  text-decoration: none;
}
.btn-cta-call:hover { background: var(--c-red-d); transform: translateY(-2px); color: #fff !important; }

.btn-cta-wa {
  background: #25D366;
  color: #fff !important;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  text-decoration: none;
}
.btn-cta-wa:hover { background: #1da851; transform: translateY(-2px); color: #fff !important; }

/* -----------------------------------------------------------------------
   TESTIMONIALS
   ----------------------------------------------------------------------- */
.review-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--tr);
  position: relative;
  margin-bottom: 24px;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.review-quote {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 64px;
  color: rgba(192,57,43,0.07);
  font-family: Georgia, serif;
  line-height: 1;
  user-select: none;
}
.review-stars { color: #fbbf24; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 14.5px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 18px;
  font-style: italic;
}
.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
}
.review-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font);
}
.review-location { font-size: 12px; color: var(--c-gray); font-weight: 400; }

/* -----------------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------------- */
.tcm-faq .panel-group { margin-bottom: 0; }
.tcm-faq .panel-default {
  border: 1.5px solid var(--c-border) !important;
  border-radius: var(--r-sm) !important;
  margin-bottom: 10px !important;
  box-shadow: none !important;
  overflow: hidden;
  transition: var(--tr);
}
.tcm-faq .panel-default.active-panel {
  border-color: var(--c-red) !important;
  box-shadow: var(--shadow-sm) !important;
}
.tcm-faq .panel-heading {
  background: var(--c-white) !important;
  border: none !important;
  padding: 0 !important;
}
.tcm-faq .panel-title a {
  display: block;
  padding: 16px 48px 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  position: relative;
  font-family: var(--font);
  transition: var(--tr);
}
.tcm-faq .panel-title a::after {
  content: '+';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--c-red);
  font-weight: 300;
  transition: var(--tr);
  line-height: 1;
}
.tcm-faq .panel-title a[aria-expanded="true"]::after { content: '−'; }
.tcm-faq .panel-title a:hover { color: var(--c-red); text-decoration: none; }
.tcm-faq .panel-body {
  padding: 0 20px 18px !important;
  font-size: 14.5px;
  color: var(--c-gray);
  line-height: 1.75;
  border-top: 1px solid var(--c-border) !important;
}

/* -----------------------------------------------------------------------
   SEO TEXT SECTION
   ----------------------------------------------------------------------- */
.seo-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 14px;
  font-family: var(--font);
}
.seo-section h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--c-navy);
  margin: 22px 0 10px;
  font-family: var(--font);
}
.seo-section p { font-size: 15px; color: #444; line-height: 1.75; margin: 0 0 14px; }
.seo-section ul li { font-size: 15px; color: #444; margin-bottom: 8px; }

/* -----------------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------------- */
.tcm-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
  font-family: var(--font);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 46px; filter: brightness(0) invert(1); }
.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin: 0 0 20px;
}
.footer-social { display: flex; gap: 10px; margin-bottom: 0; }
.fsoc-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.fsoc-btn:hover { background: var(--c-red); }
.fsoc-btn img { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.footer-heading {
  color: var(--c-white);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-red);
  display: inline-block;
  font-family: var(--font);
}

.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.60);
  font-size: 14px;
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-nav a::before { content: '›'; color: var(--c-red); font-size: 20px; line-height: 1; }
.footer-nav a:hover { color: var(--c-white); padding-left: 4px; text-decoration: none; }

.footer-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-icon {
  width: 36px; height: 36px;
  background: rgba(192,57,43,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.footer-contact-row a { color: rgba(255,255,255,0.65); transition: var(--tr); text-decoration: none; }
.footer-contact-row a:hover { color: var(--c-gold); text-decoration: none; }

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  text-align: center;
  line-height: 1.6;
}

/* -----------------------------------------------------------------------
   FLOATING BUTTONS
   ----------------------------------------------------------------------- */
.tcm-float-call {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--tr);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.3); }
.float-wa { background: #25D366; color: #fff !important; }
.float-phone { background: var(--c-red); color: #fff !important; }

/* Back to top — lives inside .tcm-float-wrap now */
.tcm-btt {
  width: 52px; height: 52px;
  background: var(--c-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-decoration: none;
  flex-shrink: 0;
}
.tcm-btt.show { opacity: 1; pointer-events: all; }
.tcm-btt:hover { background: var(--c-red); transform: translateY(-3px); }

/* Mobile sticky bottom bar */
.tcm-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--c-dark);
  z-index: 10000;
  padding: 10px 12px;
  gap: 10px;
}
.tcm-mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 11px 6px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff !important;
  text-decoration: none;
}
.mob-call-btn { background: var(--c-red); }
.mob-wa-btn   { background: #25D366; }

/* -----------------------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------------------- */
@media (max-width: 991px) {
  .tcm-hero { background-attachment: scroll; }
  .step-line { display: none; }
  .hero-form-card { padding: 24px 18px; }
  .form-card-title { font-size: 17px; }
}

@media (max-width: 767px) {
  .tcm-hero {
    padding: 120px 0 100px;
    min-height: auto;
  }
  .hero-form-card { margin-top: 36px; padding: 28px 22px; }
  .hero-actions { flex-direction: column; }
  .btn-primary-red, .btn-outline-white { text-align: center; justify-content: center; width: 100%; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .tcm-section { padding: 60px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-cta-call, .btn-cta-wa { width: 100%; max-width: 320px; justify-content: center; }
  .tcm-float-wrap { display: none !important; }
  .why-img-wrap { margin-bottom: 36px; }
  .process-step { padding: 20px 10px; }
}

/* =======================================================================
   INDEX PAGE ADDENDUM — fills class-name gaps between new HTML and CSS
   ======================================================================= */

/* Service card alias (.svc-card acts like .service-card) */
.svc-card {
  display: block;
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
  color: inherit;
  text-decoration: none !important;
  margin-bottom: 28px;
  height: calc(100% - 28px);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  color: inherit;
  text-decoration: none !important;
}
.svc-card .svc-img-wrap { overflow: hidden; height: 185px; position: relative; }
.svc-card .svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr); }
.svc-card:hover .svc-img-wrap img { transform: scale(1.06); }
.svc-card .svc-title { color: var(--c-dark); transition: var(--tr); }
.svc-card:hover .svc-title { color: var(--c-red); }
.svc-card .svc-link .arrow { transition: var(--tr); display: inline-block; }
.svc-card:hover .svc-link .arrow { transform: translateX(4px); }

/* Hero form card aliases */
.form-card-title { font-size: 20px; font-weight: 700; color: var(--c-dark); margin-bottom: 4px; font-family: var(--font); }
.form-card-sub   { font-size: 13px; color: var(--c-gray); margin-bottom: 20px; }

/* Stats suffix alias */
.stat-suf { color: var(--c-red); font-weight: 800; }

/* Form submit full-width button */
.btn-form-submit {
  display: block;
  width: 100%;
  background: var(--c-red);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 0.2px;
  margin-top: 4px;
}
.btn-form-submit:hover { background: var(--c-red-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,57,43,0.35); }

/* Background utilities */
.bg-light-gray { background: var(--c-light) !important; }
.bg-cream       { background: var(--c-cream) !important; }

/* Section intro block */
.sec-intro { margin-bottom: 48px; }
.sec-desc  { font-size: 15.5px; color: var(--c-gray); max-width: 600px; margin: 14px auto 0; line-height: 1.75; }
.mx-auto   { margin-left: auto !important; margin-right: auto !important; display: block; }

/* Process steps */
.process-step { text-align: center; padding: 24px 16px; position: relative; }
.process-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-d));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #fff;
  margin: 0 auto 12px;
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
}
.process-icon { font-size: 34px; margin-bottom: 10px; }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--c-dark); margin: 0 0 8px; font-family: var(--font); }
.process-step p  { font-size: 14px; color: var(--c-gray); margin: 0; line-height: 1.6; }

/* Why Choose Us image block */
.why-row { align-items: center; }
.why-img-wrap { position: relative; margin-bottom: 40px; }
.why-img-wrap img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; }
.why-img-badge {
  background: var(--c-red);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  margin-top: -36px; margin-right: 20px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 28px rgba(192,57,43,0.35);
}
.why-img-badge strong { color: #fff; font-size: 14.5px; font-family: var(--font); display: block; margin-bottom: 4px; }
.why-img-badge span   { color: rgba(255,255,255,0.82); font-size: 13px; }

/* Document requirements heading & gold variant */
.req-heading {
  font-size: 16px; font-weight: 700; color: var(--c-dark);
  margin: 0 0 14px; font-family: var(--font);
  display: flex; align-items: center; gap: 8px;
}
.req-heading span    { font-size: 24px; }
.req-heading small   { font-size: 12px; color: var(--c-gray); font-weight: 500; }
.req-card-gold       { border-top-color: var(--c-gold) !important; }

/* Areas grid */
.areas-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }

/* CTA aliases */
.cta-sub  { font-size: 17px; color: rgba(255,255,255,0.75); margin: 0 0 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-meta { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 24px; }

/* FAQ section helpers */
.faq-cta-text { margin-top: 20px; color: #555; font-size: 15px; line-height: 1.7; }
.faq-cta-text a { color: var(--c-red); font-weight: 700; }
.faq-img { border-radius: var(--r-md); box-shadow: var(--shadow-md); width: 100%; margin-top: 24px; }

/* SEO content section */
.seo-content { background: var(--c-white); }
.seo-content h2 { font-size: 26px; font-weight: 700; color: var(--c-dark); margin-bottom: 14px; font-family: var(--font); }
.seo-content h3 { font-size: 19px; font-weight: 700; color: var(--c-dark); margin: 22px 0 10px; font-family: var(--font); }
.seo-content p  { font-size: 15px; color: #444; line-height: 1.8; }
.seo-content a  { color: var(--c-red); }
.seo-img { border-radius: var(--r-md); width: 100%; max-height: 320px; object-fit: cover; object-position: center; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.address-box {
  background: var(--c-light);
  border-left: 4px solid var(--c-red);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  font-size: 14px; color: #333; line-height: 1.8;
}
.address-box a { color: var(--c-red); font-weight: 600; }

/* Footer brand block */
.footer-brand img { height: 46px; filter: brightness(0) invert(1); margin-bottom: 14px; display: block; }
.footer-brand p   { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 18px; }

/* Footer contact item aliases */
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--tr); }
.footer-contact-item a:hover { color: var(--c-gold); text-decoration: none; }
.fci-icon {
  width: 34px; height: 34px;
  background: rgba(192,57,43,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}

/* Float wrap — all floating buttons in one column */
.tcm-float-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
  z-index: 9998;
}

/* Mobile bar hidden on desktop, visible on mobile */
.d-none-desktop { display: none; }

@media (max-width: 991px) {
  .d-none-desktop { display: flex !important; }
  .svc-card { margin-bottom: 24px; }
  .why-img-wrap { margin-bottom: 32px; }
  .areas-grid .area-tag { font-size: 13px; padding: 7px 14px; }
  .process-step { margin-bottom: 20px; }
}

@media (max-width: 767px) {
  .sec-intro { margin-bottom: 32px; }
  .cta-sub { font-size: 15px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-cta-call, .btn-cta-wa { width: 100%; max-width: 300px; justify-content: center; }
  .why-img-badge { margin-right: 10px; padding: 14px 16px; }
  .req-card { margin-bottom: 16px; }
}

/* =======================================================================
   ALIGNMENT & DISPLAY FIXES (browser-tested corrections)
   ======================================================================= */

/* -----------------------------------------------------------------------
   FIX 1 — Restore desktop navigation hidden by responsive.css at ≤1023px
   ----------------------------------------------------------------------- */
@media (min-width: 768px) {
  .main-header .nav-outer,
  .nav-outer .main-menu { display: block !important; }
  .main-header .nav-toggler { display: none !important; }
  /* Ensure Bootstrap collapse shows on desktop */
  .main-menu .navbar-collapse {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }
  .main-menu .navbar-header { display: none; }
}

/* -----------------------------------------------------------------------
   FIX 2 — Header top bar: flex layout so items stay on one row
   ----------------------------------------------------------------------- */
.main-header .header-top .clearfix {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-header .header-top .top-left { flex: 0 0 auto; }
.main-header .header-top .top-right {
  float: none !important;
  position: static !important;
  flex: 0 0 auto;
}
.main-header .header-top .top-right ul {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0;
  padding: 0;
}
.main-header .header-top .top-right ul li {
  white-space: nowrap;
  font-size: 13.5px !important;
  padding: 8px 12px !important;
}

/* -----------------------------------------------------------------------
   FIX 3 — Hero H1 span italic — matches .tcm-hero h1 em rule
   ----------------------------------------------------------------------- */
.tcm-hero h1 span {
  display: block;
  font-style: italic;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.9em;
}

/* -----------------------------------------------------------------------
   FIX 4 — Hero button aliases: btn-hero-primary / btn-hero-secondary
   ----------------------------------------------------------------------- */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--c-red);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: var(--tr);
  font-family: var(--font);
  box-shadow: 0 4px 20px rgba(192,57,43,0.45);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: var(--c-red-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.55);
  color: #fff !important;
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none !important;
  transition: var(--tr);
  font-family: var(--font);
  white-space: nowrap;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-2px);
}

/* -----------------------------------------------------------------------
   FIX 5 — FAQ image: constrain height so it doesn't stretch the section
   ----------------------------------------------------------------------- */
.faq-img {
  max-height: 260px !important;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* -----------------------------------------------------------------------
   FIX 6 — Mobile sticky bar: only show on true mobile (≤767px)
   ----------------------------------------------------------------------- */
.tcm-mobile-bar { display: none !important; }
@media (max-width: 767px) {
  .tcm-mobile-bar { display: flex !important; }
  .tcm-float-wrap { display: none !important; }
}

/* -----------------------------------------------------------------------
   FIX 7 — Prevent horizontal overflow from hero / ticker
   ----------------------------------------------------------------------- */
body { overflow-x: hidden; }
.tcm-hero,
.tcm-ticker,
.tcm-stats,
.tcm-section { max-width: 100%; }

/* -----------------------------------------------------------------------
   FIX 8 — Stat card: ensure icons render correctly at xs (2-col)
   ----------------------------------------------------------------------- */
@media (max-width: 767px) {
  .stat-card { padding: 22px 12px; }
  .stat-num { font-size: 32px; }
  .stat-icon { width: 46px; height: 46px; font-size: 20px; border-radius: 10px; }
}

/* -----------------------------------------------------------------------
   FIX 9 — Process step: icons visible on all sizes
   ----------------------------------------------------------------------- */
@media (max-width: 767px) {
  .process-step { padding: 18px 8px; }
  .process-num { width: 44px; height: 44px; font-size: 18px; }
  .process-icon { font-size: 26px; }
}

/* -----------------------------------------------------------------------
   FIX 10 — Why choose us section: columns correct at sm
   ----------------------------------------------------------------------- */
.why-img-wrap img { max-height: 380px; object-fit: cover; }
@media (max-width: 991px) {
  .why-img-wrap { margin-bottom: 32px; }
  .why-img-wrap img { max-height: 300px; }
}

/* -----------------------------------------------------------------------
   FIX 11 — Main box logo: keep it visible and sized properly
   ----------------------------------------------------------------------- */
.main-header .main-box .logo img {
  max-height: 56px;
  width: auto;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .main-header .main-box .logo img { max-height: 44px; padding: 3px 6px; }
}

/* -----------------------------------------------------------------------
   FIX 12 — Ticker: remove margin-top that causes gap
   ----------------------------------------------------------------------- */
.tcm-ticker { margin-top: 0 !important; }

/* -----------------------------------------------------------------------
   FIX 13 — Hero section: ensure minimum height and proper padding for header
   ----------------------------------------------------------------------- */
.tcm-hero { padding-top: 170px; }
@media (max-width: 767px) { .tcm-hero { padding-top: 120px; } }

/* -----------------------------------------------------------------------
   FIX 14 — Review cards: equal height in a row
   ----------------------------------------------------------------------- */
.review-card {
  height: calc(100% - 28px);
  margin-bottom: 28px;
}

/* -----------------------------------------------------------------------
   FIX 15 — Service cards: fix 2-column bottom row gap at lg showing 9 items
   ----------------------------------------------------------------------- */
.svc-card,
.service-card {
  margin-bottom: 28px;
}

/* =======================================================================
   GRID FLEXBOX FIX — equal-height card rows across all sections
   Bootstrap 3 uses floats which break when cards have unequal content.
   CSS flexbox on the row + stretch columns ensures all cards in a row
   are the same height and the grid never collapses to odd alignment.
   ======================================================================= */

/* Service cards: flex row + force 3-col at ≥768px */
#services .row {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
#services .row > [class*="col-"] {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  float: none;          /* override Bootstrap float */
}
@media (min-width: 768px) {
  /* Force 3 columns from 768px up (override col-sm-6 = 2-col) */
  #services .row > [class*="col-"] {
    width: 33.333% !important;
  }
}
@media (max-width: 767px) {
  #services .row > [class*="col-"] {
    width: 100% !important;
  }
}
/* Card stretches to fill its column */
.svc-card {
  flex: 1 0 auto;
  height: auto !important;
  display: flex;
  flex-direction: column;
}
/* Body flex so "Know More" always anchors to bottom */
.svc-card .svc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card .svc-link {
  margin-top: auto;
  padding-top: 12px;
}

/* Testimonial cards: equal height */
#reviews .row {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
#reviews .row > [class*="col-"] {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  float: none;
}
@media (min-width: 768px) {
  #reviews .row > [class*="col-"] {
    width: 33.333% !important;
  }
}
@media (max-width: 767px) {
  #reviews .row > [class*="col-"] {
    width: 100% !important;
  }
}
.review-card {
  flex: 1 0 auto;
  height: auto !important;
  margin-bottom: 0;
}

/* Document requirement cards: equal height */
#documents .row {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
#documents .row > [class*="col-"] {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  float: none;
}
@media (min-width: 768px) {
  #documents .row > [class*="col-"] {
    width: 25% !important;      /* 4 per row */
  }
}
@media (max-width: 767px) {
  #documents .row > [class*="col-"] {
    width: 50% !important;      /* 2 per row on mobile */
  }
}
.req-card {
  flex: 1 0 auto;
  height: auto !important;
  margin-bottom: 0;
}

/* Process steps: equal height */
#process .row {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
#process .row > [class*="col-"] {
  float: none;
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 768px) {
  #process .row > [class*="col-"] {
    width: 25% !important;
  }
}
@media (max-width: 767px) {
  #process .row > [class*="col-"] {
    width: 50% !important;
  }
}
.process-step {
  flex: 1;
}

/* Stats: always 4-col on all tablet+ sizes */
#stats .row {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
#stats .row > [class*="col-"] {
  float: none;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #stats .row > [class*="col-"] {
    width: 25% !important;
  }
}
@media (max-width: 767px) {
  #stats .row > [class*="col-"] {
    width: 50% !important;
  }
}
.stat-card { flex: 1; }

/* =======================================================================
   INNER PAGE LAYOUT — service pages, about, contact
   ======================================================================= */

/* Inner page hero / banner */
.tcm-inner-hero {
  background:
    linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(150,40,27,0.82) 100%),
    url('../img/court-marriage.jpg') center/cover no-repeat;
  padding: 165px 0 56px;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}
.tcm-inner-hero .auto-container { width: 100%; }
.tcm-inner-hero h1 {
  color: #fff;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  margin: 0 0 12px;
  font-family: var(--font);
}
.tcm-inner-hero .breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}
.tcm-inner-hero .breadcrumb-wrap a {
  color: var(--c-gold);
  text-decoration: none;
}
.tcm-inner-hero .breadcrumb-wrap a:hover { text-decoration: underline; }
.tcm-inner-hero .breadcrumb-wrap span { color: rgba(255,255,255,0.5); }

/* Inner page body */
.tcm-inner-body {
  background: #f6f7fb;
  padding: 60px 0;
}

/* Sidebar */
.tcm-sidebar {
  position: sticky;
  top: 100px;
}
.tcm-sw {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  margin-bottom: 24px;
}
.tcm-sw-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-red);
  font-family: var(--font);
}
.tcm-sw ul {
  list-style: none;
  padding: 0; margin: 0;
}
.tcm-sw ul li {
  border-bottom: 1px solid var(--c-border);
}
.tcm-sw ul li:last-child { border-bottom: none; }
.tcm-sw ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  color: var(--c-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--tr);
  font-family: var(--font);
}
.tcm-sw ul li a::before {
  content: '›';
  color: var(--c-red);
  font-size: 18px;
  line-height: 1;
}
.tcm-sw ul li a:hover, .tcm-sw ul li.active a {
  color: var(--c-red);
  padding-left: 8px;
}

/* Sidebar enquiry form — dark themed */
.tcm-sw-enq {
  background: linear-gradient(135deg, var(--c-dark) 0%, #3d1a16 100%) !important;
}
.tcm-sw-enq .tcm-sw-title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.18);
}
.tcm-sw-enq .tcm-field {
  font-size: 13px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.tcm-sw-enq .tcm-field::placeholder { color: rgba(255,255,255,0.55); }
.tcm-sw-enq .tcm-field option { background: #1a1a2e; color: #fff; }
.tcm-sw-enq .btn-form-submit {
  font-size: 14px;
  padding: 12px;
  background: var(--c-gold);
  color: var(--c-dark);
}

/* Sidebar contact box */
.tcm-sw-contact ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tcm-sw-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-body);
  border-bottom: none !important;
}
.tcm-sw-contact li .ico {
  color: var(--c-red);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.tcm-sw-contact a { color: var(--c-red); text-decoration: none; }
.tcm-sw-contact a:hover { text-decoration: underline; }

/* Main content area */
.tcm-inner-content {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 36px 32px;
}
.tcm-inner-content .page-img {
  width: 100%;
  max-height: 340px !important;
  height: 340px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-md);
  margin-bottom: 28px;
  display: block;
}
.tcm-inner-content h1 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--c-dark);
  margin: 0 0 20px;
  font-family: var(--font);
  line-height: 1.3;
}
.tcm-inner-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 28px 0 12px;
  font-family: var(--font);
  position: relative;
  padding-left: 14px;
}
.tcm-inner-content h2::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: var(--c-red);
  border-radius: 2px;
}
.tcm-inner-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 22px 0 10px;
  font-family: var(--font);
}
.tcm-inner-content p {
  color: var(--c-body);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.tcm-inner-content ul, .tcm-inner-content ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}
.tcm-inner-content ul li, .tcm-inner-content ol li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 14.5px;
  color: var(--c-body);
  line-height: 1.7;
}
.tcm-inner-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-weight: 700;
}
.tcm-inner-content ol {
  counter-reset: ol-counter;
}
.tcm-inner-content ol li {
  counter-increment: ol-counter;
}
.tcm-inner-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-weight: 700;
  font-size: 13px;
}
.tcm-inner-content a { color: var(--c-red); }

/* Inner page FAQ */
.tcm-inner-faq {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 2px solid var(--c-border);
}
.tcm-inner-faq .sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 8px;
}
.tcm-inner-faq h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-dark);
  margin: 0 0 24px;
  font-family: var(--font);
  padding-left: 0;
}
.tcm-inner-faq h2::before { display: none; }

/* Inner FAQ accordion panels */
.tcm-inner-faq .panel-group { border-radius: var(--r-md); overflow: hidden; }
.tcm-inner-faq .panel {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none;
  border-bottom: 1px solid var(--c-border) !important;
  margin-bottom: 0 !important;
}
.tcm-inner-faq .panel:last-child { border-bottom: none !important; }
.tcm-inner-faq .panel-heading {
  background: #f8f9fb !important;
  padding: 0;
  border-radius: 0 !important;
}
.tcm-inner-faq .panel-heading a {
  display: block;
  padding: 16px 48px 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-dark) !important;
  text-decoration: none;
  font-family: var(--font);
  position: relative;
  transition: var(--tr);
}
.tcm-inner-faq .panel-heading a:not(.collapsed) {
  color: var(--c-red) !important;
  background: rgba(192,57,43,0.05);
}
.tcm-inner-faq .panel-heading a::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--c-red);
  line-height: 1;
}
.tcm-inner-faq .panel-heading a:not(.collapsed)::after { content: '−'; }
.tcm-inner-faq .panel-body {
  padding: 14px 18px 18px;
  font-size: 14.5px;
  color: var(--c-body);
  line-height: 1.8;
  border-top: 1px solid var(--c-border) !important;
  background: #fff;
}
.tcm-inner-faq > .panel-group {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
}

/* Inner CTA strip */
.tcm-inner-cta {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-red) 100%);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.tcm-inner-cta p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  font-family: var(--font);
}
.tcm-inner-cta span {
  color: var(--c-gold);
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-top: 3px;
}
.tcm-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.tcm-cta-btns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
  white-space: nowrap;
  font-family: var(--font);
}
.tcm-cta-call { background: #fff; color: var(--c-dark) !important; }
.tcm-cta-wa { background: #25D366; color: #fff !important; }
.tcm-cta-btns a:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }

/* Responsive inner pages */
@media (max-width: 767px) {
  .tcm-inner-hero { padding: 130px 0 36px; min-height: 200px; }
  .tcm-inner-content { padding: 24px 18px; }
  .tcm-inner-cta { flex-direction: column; align-items: flex-start; }
  .tcm-cta-btns { width: 100%; }
  .tcm-cta-btns a { width: 100%; justify-content: center; }
  .tcm-sidebar { position: static; }
  .tcm-inner-body { padding: 36px 0; }
}
@media (max-width: 991px) {
  .tcm-sidebar { margin-bottom: 32px; }
}


/* ====================================================================
   About Page Styles
   ==================================================================== */
.tcm-about-section {
  padding: 70px 0;
  background: #fff;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.abt-stat {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-red);
  font-family: var(--font);
  line-height: 1;
}
.abt-stat > div {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-gray);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tcm-mission-section {
  padding: 70px 0;
  background: var(--c-light);
}
.tcm-mission-section .row { display: flex; flex-wrap: wrap; }
.tcm-mission-section .row > [class*="col-"] { display: flex; }
.mission-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--tr);
}
.mission-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mc-icon { font-size: 32px; margin-bottom: 14px; }
.mission-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 10px;
  font-family: var(--font);
}
.mission-card p { font-size: 14px; color: var(--c-gray); margin: 0; line-height: 1.7; }
.tcm-about-services {
  padding: 70px 0;
  background: #fff;
}
.tcm-about-services .row { display: flex; flex-wrap: wrap; }
.tcm-about-services .row > [class*="col-"] { display: flex; }
.tcm-about-services h2, .tcm-mission-section h2 {
  font-size: clamp(22px,2.8vw,32px);
  font-weight: 800;
  color: var(--c-dark);
  margin: 8px 0 12px;
  font-family: var(--font);
}
.about-svc-card {
  display: block;
  background: var(--c-light);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 20px 22px;
  text-decoration: none !important;
  transition: var(--tr);
  height: 100%;
}
.about-svc-card:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-svc-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 8px;
  font-family: var(--font);
  transition: var(--tr);
}
.about-svc-card:hover h3 { color: #fff; }
.about-svc-card p { font-size: 13px; color: var(--c-gray); margin: 0; line-height: 1.6; transition: var(--tr); }
.about-svc-card:hover p { color: rgba(255,255,255,0.85); }

/* ====================================================================
   Contact Page Styles
   ==================================================================== */
.contact-info-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--c-red);
  height: 100%;
}
.cic-icon { font-size: 32px; margin-bottom: 14px; }
.contact-info-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 10px;
  font-family: var(--font);
}
.contact-info-card p { font-size: 14px; color: var(--c-gray); margin: 0; line-height: 1.8; }
.contact-info-card a { color: var(--c-red); font-weight: 600; text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
.tcm-contact-form-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.tcm-contact-form-wrap h2 {
  font-size: clamp(20px,2.4vw,28px);
  font-weight: 800;
  color: var(--c-dark);
  margin: 8px 0 10px;
  font-family: var(--font);
}
.tcm-contact-form-wrap p { font-size: 14px; color: var(--c-gray); margin-bottom: 24px; }
.tcm-map-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.tcm-map-wrap h2 {
  font-size: clamp(20px,2.4vw,28px);
  font-weight: 800;
  color: var(--c-dark);
  margin: 8px 0 10px;
  font-family: var(--font);
}
.tcm-map-wrap p { font-size: 14px; color: var(--c-gray); margin-bottom: 0; }
.contact-quick-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* About & Contact responsive */
@media (max-width: 767px) {
  .tcm-about-section, .tcm-mission-section, .tcm-about-services { padding: 40px 0; }
  .tcm-contact-form-wrap, .tcm-map-wrap { padding: 24px 18px; }
  .about-stats { gap: 20px; }
}
