/* ============================================================
   CLICKTECS THEME - Main Stylesheet
   Brand: Red #8d181b | Black #231f20 | Font: Bebas + DM Sans
   ============================================================ */
/* ===== CSS VARIABLES ===== */ :root {
  --red: #8d181b;
  --red-dark: #701214;
  --black: #231f20;
  --gray-light: #f8f8f8;
  --gray-mid: #e5e5e5;
  --white: #ffffff;
  --hero-grad: linear-gradient(135deg, #1a1618 0%, #3d1215 45%, #8d181b 100%);
  --font-body: "DM Sans", sans-serif;
  --font-head: "Bebas Neue", sans-serif;
  --transition: 0.2s ease;
}
/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.ctform-row {
  margin-bottom: 14px !important;
}
.cta-band .cta-phone-pill {
  padding: 16px 32px;
  border-radius: 4px;
  display: block;
}
.cta-band .cta-phone-pill:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
}
.wrapper{
    position: relative;
  margin: 0 auto;
  width: 1280px;
  max-width: 1280px;
}
.sec-thanks-one {
  background: #911813;
  z-index: 1;
  margin-bottom: 40px;
    position: relative;
}
.thanks-message {
  width: 300px;
  height: 300px;
  background: #9b231e;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  position: relative;
}
.thanks-message::before {
  content: "";
  width: 370px;
  height: 370px;
  background: #911813;
  border-radius: 100%;
  position: absolute;
  left: -35px;
  top: -35px;
  z-index: -1;
  box-shadow: 0 0 0px 30px #861b16;
}
.thanks-message .fa-circle-check {
  font-size: 2em;
}
.thanks-message h4 {
 margin: 0 0 5px;
  line-height: normal;
  font-size: 30px;
}

.thankyou-content-area{
    padding-top: 70px;
    padding-bottom: 70px;
}
.thankyou-content-area h2{
   text-align: center;
    font-size: 46px;
}

.thankyou-content-area h2 + p{
   text-align: center;
}
.thankyou-content-area iframe{
   margin-top: 40px;
    width: 100%;
}
























html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
/* ===== HEADINGS ===== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 2px;
  line-height: 1.12;
  font-weight: 400;
}
h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
}
/* ===== UTILITY CLASSES ===== */
.pg-cta-block{
background: #f8f8f8;
  padding: 25px 40px;
  margin: 20px 0;
  border-left: solid 4px var(--red);
  border-radius: 30px;
}
.red {
  color: var(--red);
}
/* .red spans on dark/red section backgrounds should appear white */
.cta-band h2 .red, .stats-band h2 .red, .hero h2 .red {
  color: var(--white);
}
/* results-stats now light background - keep .red as red */
section.results-stats h2 .red {
  color: var(--red);
}
.white {
  color: var(--white);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 40px;
  color: var(--black);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 15px;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
}
.sec-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
/* ===== BUTTONS ===== */
.btn-red {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--red);
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--red);
  display: inline-block;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid var(--white);
  display: inline-block;
  transition: background var(--transition);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
}
/* Hero-specific button overrides (dark background) */
.hero .btn-outline, .inner-hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero .btn-outline:hover, .inner-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}
/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
}
.nav-menu-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  padding: 8px 13px;
  border-radius: 4px;
  display: block;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item.active > a {
  color: var(--red);
}
.nav-item .nav-arrow {
  font-size: 10px;
  margin-left: 2px;
}
/* Phone Pill in Navbar */
.nav-phone-pill {
  background: transparent;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.nav-phone-pill:hover {
  background: var(--red);
  color: var(--white);
}
/* ===== DROPDOWNS ===== */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 230px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 500;
  padding: 6px 0;
}
.nav-item:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-item {
  position: relative;
}
.nav-dropdown-item > a {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-item > a:hover {
  background: var(--gray-light);
  color: var(--red);
}
.nav-dropdown-item.has-sub > a {
  padding-right: 12px;
}
/* 3rd level sub-dropdown */
.nav-sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--red);
  border-radius: 0 6px 6px 6px;
  min-width: 220px;
  box-shadow: 8px 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 600;
  padding: 6px 0;
}
.nav-dropdown-item.has-sub:hover > .nav-sub-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-sub-item > a {
  font-size: 13px;
  color: var(--black);
  padding: 10px 18px;
  display: block;
  transition: background var(--transition), color var(--transition);
}
.nav-sub-item > a:hover {
  background: var(--gray-light);
  color: var(--red);
}
/* ===== MOBILE NAV TOGGLE ===== */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar.nav-open .nav-mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.nav-open .nav-mobile-toggle span:nth-child(2) {
  opacity: 0;
}
.navbar.nav-open .nav-mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ===== HERO - HOMEPAGE ===== */
.hero {
  background: var(--hero-grad);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 24, 27, 0.2) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.hero-left, .hero-right {
  min-width: 0;
}
.hero-left {
  position: relative;
  z-index: 1;
}
.hero-brand-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-left h1 {
  font-size: 64px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.06;
}
.hero-left h1 .red {
  color: var(--white);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat {
  text-align: center;
  padding: 0 24px;
}
.hero-stat:first-child {
  padding-left: 0;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
/* Hero Right - Form Card */
.hero-right {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 56px rgba(0, 0, 0, 0.18);
  padding: 36px 32px;
  overflow: hidden;
}
.hero-form-title {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--black);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.hero-form-title .red {
  color: var(--red);
}
.hero-form-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 22px;
}
/* ===== FORMS ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-row .form-group {
  margin-bottom: 0;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
}
.form-group input, .form-group textarea, .form-group select, .sidebar-form-body input, .sidebar-form-body textarea {
  border: 1.5px solid #ddd;
  border-radius: 4px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--black);
  background: #fafafa;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 6px;
}
.form-submit:hover {
  background: var(--red-dark);
}
.form-trust {
  text-align: center;
  font-size: 11.5px;
  color: #aaa;
  margin-top: 10px;
}
/* CF7 overrides */
.wpcf7-form .wpcf7-text, .wpcf7-form .wpcf7-email, .wpcf7-form .wpcf7-tel, .wpcf7-form .wpcf7-url, .wpcf7-form .wpcf7-textarea {
  border: 1.5px solid #ddd;
  border-radius: 4px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  width: 100%;
  background: #fafafa;
  transition: border-color var(--transition);
}
.wpcf7-form .wpcf7-text:focus, .wpcf7-form .wpcf7-email:focus {
  border-color: var(--red);
  background: var(--white);
}
.wpcf7-form .wpcf7-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background var(--transition);
}
.wpcf7-form .wpcf7-submit:hover {
  background: var(--red-dark);
}
.wpcf7-not-valid-tip {
  color: var(--red);
  font-size: 11px;
  margin-top: 3px;
}
.wpcf7-response-output {
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  margin-top: 10px !important;
}
/* ===== INNER HERO (service pages) ===== */
.inner-hero {
  background: var(--hero-grad);
  padding: 64px 0 52px;
}
.inner-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}
/*.inner-hero-left {
  padding-left: 20px;
  border-left: 4px solid rgba(255, 255, 255, 0.25);
}*/
.inner-breadcrumb-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
}
.inner-hero-left h1 {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.06;
}
.inner-hero-left h1 .red {
  color: #f8a0a0;
}
.inner-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 520px;
}
.inner-hero-right {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.inner-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 24px;
}
.inner-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
}
.inner-hero .inner-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.inner-stat-num {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.inner-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 500;
}
.inner-trust-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inner-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}
.inner-trust-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  flex-wrap: wrap;
}
.breadcrumb-inner a {
  color: var(--red);
  transition: color var(--transition);
}
.breadcrumb-inner a:hover {
  color: var(--red-dark);
}
.bc-sep {
  color: #ccc;
}
/* ===== MAIN CONTENT + SIDEBAR LAYOUT ===== */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-area .sec-label {
  margin-bottom: 10px;
}
.content-area h2 {
  font-size: 38px;
  color: var(--black);
  margin-bottom: 18px;
}
.content-area h2 .red {
  color: var(--red);
}
.content-area p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.feature-box {
  background: var(--gray-light);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 18px 16px;
}
.feature-box h4 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 1.5px;
}
.feature-box p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}
/* Process Steps */
.process-steps {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  background: var(--gray-light);
  border-radius: 8px;
  transition: box-shadow var(--transition);
}
.process-step:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.step-num {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.step-content h4 {
  font-size: 19px;
  color: var(--black);
  margin-bottom: 5px;
  letter-spacing: 1.5px;
}
.step-content p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0;
}
/* Results Box */
.results-box {
  background: var(--gray-light);
  border: 1.5px solid var(--gray-mid);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  padding: 32px 28px;
  margin: 32px 0;
}
.results-box h3 {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 22px;
  letter-spacing: 2px;
}
.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.result-stat {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-top: 3px solid var(--red);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
}
.result-stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}
.result-stat-label {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  line-height: 1.4;
}
/* Included List */
.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 32px;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.included-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
/* ===== SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-form-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  position: sticky;
  top: 110px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  border: 1px solid var(--gray-mid);
}
@media (max-width: 768px) {
  .sidebar-form-card {
    position: static;
    margin-top: 40px;
  }
  .sidebar {
    display: block !important;
  }
  .sidebar-related {
    display: none;
  }
}
.sidebar-form-header {
  background: var(--red);
  padding: 20px 24px 18px;
}
.sidebar-form-header h3 {
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 4px;
  font-family: var(--font-head);
}
.sidebar-form-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
/* sf-title / sf-sub - used in single.php and service page sidebar */
.sf-title {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 4px;
  line-height: 1.2;
}
.sf-title strong {
 color: rgb(255, 255, 255);
  font-family: inherit;
  font-weight: 400;
}
.sf-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.sidebar-form-body {
  padding: 22px;
  background: var(--white);
}
.sidebar-form-body label {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
}
.sidebar-form-body input, .sidebar-form-body textarea {
  border: 1.5px solid #ddd;
  background: var(--gray-light);
  color: var(--black);
}
.sidebar-form-body input::placeholder, .sidebar-form-body textarea::placeholder {
  color: #aaa;
}
.sidebar-form-body input:focus, .sidebar-form-body textarea:focus {
  border-color: var(--red);
  background: var(--white);
  outline: none;
}
.sidebar-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background var(--transition);
}
.sidebar-submit:hover {
  background: var(--red-dark);
}
.sidebar-related {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 22px;
}
.sidebar-related h4 {
  font-size: 19px;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 1.5px;
}
.related-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 13.5px;
  color: var(--black);
  transition: color var(--transition);
}
.related-links li:last-child a {
  border-bottom: none;
}
.related-links li a:hover {
  color: var(--red);
}
.related-links li a::after {
  content: '→';
  color: var(--red);
  font-size: 12px;
}
/* ===== FAQ SECTION (AEO) ===== */
.aeo-faq-section {
  background: var(--white);
  padding: 80px 0;
}
.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-header {
  margin-bottom: 40px;
  text-align: center;
}
.faq-header h2 {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 10px;
}
.faq-header p {
  font-size: 14px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}
details {
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}
details summary {
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 1px;
  background: var(--gray-light);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--black);
  transition: background var(--transition), color var(--transition);
  line-height: 1.2;
}
details summary::-webkit-details-marker {
  display: none;
}
details[open] summary {
  background: var(--white);
  color: var(--red);
  border-bottom: 2px solid var(--red);
  border-radius: 4px 4px 0 0;
}
details summary::after {
  content: '+';
  color: var(--red);
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
}
details[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 16px 20px;
  font-size: 14.5px;
  color: #555;
  line-height: 1.85;
  background: var(--white);
  border-top: none;
}
/* ===== CLIENT GRID SLIDER ===== */
.client-grid-section {
  background: var(--white);
  padding: 60px 0;
}
.client-grid-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.client-grid-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.client-grid-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.client-grid-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.client-logo-card {
  flex: 0 0 calc(20% - 15px);
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  min-height: 100px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.client-logo-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.client-logo-card img {
  max-height: 62px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.client-logo-text {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--black);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cg-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-mid);
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2;
}
.cg-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.cg-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
/* ===== MARQUEE / TICKER ===== */
.marquee-section {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: marquee-label-pulse 3s ease-in-out infinite;
}
@keyframes marquee-label-pulse {
  0%, 100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}
.marquee-track {
  overflow: hidden;
  width: 100%;
}
.marquee-list {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover .marquee-list {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
}
.marquee-item img {
  height: 44px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
  filter: none;
}
.marquee-item img:hover {
  opacity: 1;
}
.marquee-text-placeholder span {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  text-transform: uppercase;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--gray-light);
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 24px;
  border-top: 3px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-top-color: var(--red);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 30px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
.service-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  transition: color var(--transition);
}
.service-link:hover {
  color: var(--red-dark);
}
/* ===== STATS / ABOUT SECTION ===== */
.stats-section {
  background: var(--white);
  padding: 72px 0;
}
.stats-section h2{
    font-size: 40px;
}
.stats-inner {
max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid var(--red);
}
.stat-number {
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  font-weight: 500;
}
/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
  padding: 60px 0;
  border-bottom: solid var(--gray-light) 2px;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  text-align: center;
}
.about-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-top: 4px solid var(--red);
  border-radius: 14px;
  padding: 48px 40px 52px;
  position: relative;
  min-height: 400px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.about-card-title {
  font-family: var(--font-head);
  font-size: 34px;
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 18px;
}
.about-card-title span {
  color: var(--red);
}
.about-card-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.about-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.about-chip {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  padding: 10px 16px;
  text-align: center;
}
.about-chip-num {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}
.about-chip-label {
  font-size: 10px;
  color: #666;
  display: block;
  margin-top: 2px;
}
.about-badge-top {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  text-align: center;
  line-height: 1.35;
  box-shadow: 0 4px 16px rgba(141, 24, 27, 0.4);
}
.about-badge-bottom {
  position: absolute;
  bottom: -14px;
  left: 20px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.about-right h2 {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 20px;
}
.about-right p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-stat-box {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 20px 18px;
  border-left: 3px solid var(--red);
}
.about-stat-box-num {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}
.about-stat-box-label {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}
/* ===== STATS BAND ===== */
.stats-band {
  background: var(--red);
  padding: 48px 0;
}
.stats-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-band-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.stats-band-num {
  font-family: var(--font-head);
  font-size: 54px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.stats-band-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  font-weight: 500;
}
.stats-band-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}
/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--gray-light);
  padding: 88px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.testi-stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}
.testi-role {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
/* ===== RELATED SERVICES ===== */
.related-services {
  background: var(--gray-light);
  padding: 64px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--white);
  border-radius: 8px;
  padding: 26px 22px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.related-card:hover {
  border-top-color: var(--red);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}
.related-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.related-card h3 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 1.5px;
}
.related-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}
.related-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}
/* ===== CTA BAND ===== */
.cta-band {
  background: var(--red);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 70px solid rgba(255, 255, 255, 0.07);
  top: -160px;
  left: -100px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 55px solid rgba(255, 255, 255, 0.07);
  bottom: -120px;
  right: -80px;
  pointer-events: none;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-left h2 {
  font-size: 46px;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  line-height: 1.7;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
    text-align: center;
}
.cta-phone-pill {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 20px;
  border: 2px solid var(--white);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
/* ===== BLOG SECTION ===== */
.blog-section {
  background: var(--white);
  padding: 80px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.blog-thumb {
  background: var(--gray-light);
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-body {
  padding: 22px;
}
.blog-date {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-body h3 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  line-height: 1.25;
}
.blog-body p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}
.blog-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  transition: color var(--transition);
}
.blog-link:hover {
  color: var(--red-dark);
}
/* Blog Archive / Single */
.blog-archive-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}
.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.blog-single-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.blog-single-content h1 {
  font-size: 48px;
  color: var(--black);
  margin-bottom: 16px;
}
.blog-single-content h2 {
  font-size: 32px;
  color: var(--black);
  margin: 32px 0 14px;
}
.blog-single-content h3 {
  font-size: 26px;
  color: var(--black);
  margin: 24px 0 10px;
}
.blog-single-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 18px;
}
.blog-single-content ul, .blog-single-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.blog-single-content li {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 6px;
}
/*.blog-single-content a {
  color: var(--red);
}*/
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  flex-wrap: wrap;
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.blog-tag {
  background: var(--gray-light);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}
.blog-tag:hover {
  background: var(--red);
  color: var(--white);
}
.author-box {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 24px;
  margin-top: 40px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.author-bio {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
}
/* ===== PORTFOLIO PAGE ===== */
.portfolio-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.ct-filter-btn {
  background: var(--gray-light);
  color: var(--black);
  border: 1.5px solid var(--gray-mid);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.ct-filter-btn:hover, .ct-filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ct-portfolio-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}
.ct-portfolio-item:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}
.portfolio-thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--gray-light);
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ct-portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.04);
}
.portfolio-cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.portfolio-body {
  padding: 20px;
}
.portfolio-body h3 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 1.5px;
}
.portfolio-result {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
}
/* ===== CASE STUDIES ===== */
.case-studies-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.case-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.case-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}
.case-thumb {
  height: 220px;
  background: var(--gray-light);
  overflow: hidden;
}
.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-body {
  padding: 28px;
}
.case-body h3 {
  font-size: 24px;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
.case-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 18px;
}
.case-stats {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-mid);
}
.case-stat-num {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}
.case-stat-label {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}
/* ===== CONTACT PAGE ===== */
.contact-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-form-wrap p {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-info h3 {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: #555;
}
.contact-info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-map {
  margin-top: 28px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}
.contact-map iframe {
  width: 100%;
  height: 240px;
  border: none;
}
/* ===== CLIENTS LOGO GRID ===== */
.clients-logo-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.client-logo-box {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: box-shadow var(--transition);
}
.client-logo-box:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.client-logo-box img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all var(--transition);
}
.client-logo-box:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}
/* ===== ABOUT / CAREERS ===== */
.about-hero {
  background: var(--hero-grad);
  padding: 64px 0;
}
.about-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.about-intro h2 {
  font-size: 40px;
  color: var(--black);
  margin-bottom: 16px;
}
.about-intro p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 28px 22px;
  border-top: 3px solid var(--red);
}
.value-card h3 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
.value-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
}
.careers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.career-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.career-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--red);
}
.career-info h3 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 5px;
  letter-spacing: 1.5px;
}
.career-meta {
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 14px;
}
.career-type-badge {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
}
/* ===== FOOTER ===== */
.footer {
  background: #2d2d2d;
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: auto;
  display: block;
}
.footer-about {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}
.footer-contact-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.footer-contact-item a:hover {
  color: var(--white);
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.footer-social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-social-circle:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--red);
}
.footer-bottom {
  background: #232323;
  margin-top: 52px;
  padding: 18px 0;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}
/* ===== PAGINATION ===== */
.ct-pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.ct-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
}
.ct-pagination ul li a, .ct-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--gray-mid);
  color: var(--black);
  transition: all var(--transition);
}
.ct-pagination ul li a:hover, .ct-pagination ul li .current {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.ct-pagination ul li .prev, .ct-pagination ul li .next {
  width: auto;
  padding: 0 16px;
  font-size: 13px;
}
/* ===== SERVICE PAGE CONTENT SECTIONS ===== */
/* Feature grid - 2×2 matching HTML design */
.grid-4, .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.feature-box h3, .feature-box h4 {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 1.5px;
}
.features-grid {
  margin: 24px 0 40px;
}
.features-grid > h2, .process-steps > h2, .results-stats > h2, .includes-list > h2, .service-intro > h2 {
  font-size: 32px;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.service-intro {
  margin-bottom: 40px;
}
/* Stats row: 4-column stat boxes on service pages - dark card style matching inner-page.html */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
section.results-stats {
  background: var(--gray-light);
  border: 1.5px solid var(--gray-mid);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  padding: 32px 28px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
section.results-stats h2 {
  color: var(--black);
  font-size: 24px;
  margin-bottom: 0;
  min-width: 130px;
  max-width: 150px;
  flex-shrink: 0;
  line-height: 1.15;
}
section.results-stats .stats-row {
  flex: 1;
}
section.results-stats .stat-box {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-top: 3px solid var(--red);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}
section.results-stats .stat-label {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  line-height: 1.4;
  display: block;
}
/* Process steps - ol.steps-list styled to match inner-page .process-step design */
.steps-list {
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px;
  padding: 0;
}
.steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding: 20px 20px 20px 74px;
  background: var(--gray-light);
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  transition: box-shadow var(--transition);
}
.steps-list li:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.steps-list li::before {
  content: counter(step-counter, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
}
.steps-list li strong {
  display: block;
  font-family: var(--font-head);
  font-size: 19px;
  letter-spacing: 1.5px;
  color: var(--black);
  margin-bottom: 6px;
  font-weight:400;
}
/* Includes list (ul inside .includes-list) */
.includes-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 32px;
  padding: 0;
}
.includes-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.includes-list ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
/* FAQ section inside content-area - matches HTML design .content-faq */
.content-area .faq-section, .faq-section {
  margin: 32px 0;
}
.content-area .faq-section h2, .faq-section h2 {
  font-size: 32px;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.content-area details, .faq-section details {
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}
.content-area details summary, .faq-section details summary {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 1.5px;
  cursor: pointer;
  color: var(--black);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-light);
  border-radius: 4px;
  line-height: 1.2;
  transition: background var(--transition), color var(--transition);
}
.content-area details summary::-webkit-details-marker, .faq-section details summary::-webkit-details-marker {
  display: none;
}
.content-area details summary::after, .faq-section details summary::after {
  content: '+';
  font-size: 20px;
  color: var(--red);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
  font-family: var(--font-body);
}
.content-area details[open] summary::after, .faq-section details[open] summary::after {
  content: '−';
}
.content-area details[open] summary, .faq-section details[open] summary {
  background: var(--white);
  color: var(--red);
  border-bottom: 2px solid var(--red);
  border-radius: 4px 4px 0 0;
}
.content-area .faq-answer, .faq-section .faq-answer {
  padding: 16px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  background: white;
  border: 1px solid var(--gray-mid);
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.content-area .faq-answer p, .faq-section .faq-answer p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}
/* ===== CLIENT GRID RESPONSIVE ===== */
@media (max-width: 1024px) {
  .client-logo-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media (max-width: 640px) {
  .client-logo-card {
    flex: 0 0 calc(50% - 12px);
  }
  .cg-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .client-logo-card {
    flex: 0 0 calc(100% - 0px);
  }
}
@media (max-width: 1440px) {
    .wrapper{
     width: 96%;
    }
}
/* ===== RESPONSIVE - 1024px ===== */
@media (max-width: 1024px) {
  .nav-menu-wrap {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--red);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    padding: 16px 0;
    z-index: 999;
  }
  .navbar {
    position: sticky;
  }
  .navbar.nav-open .nav-menu-wrap {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item > a {
    width: 100%;
    padding: 12px 24px;
    border-radius: 0;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--gray-mid);
    border-radius: 0;
    padding: 0;
    display: none;
  }
  .nav-item.mobile-open > .nav-dropdown {
    display: block;
  }
  .nav-dropdown-item > a {
    padding: 10px 24px 10px 36px;
    font-size: 13px;
  }
  .nav-sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: none;
  }
  .nav-dropdown-item.mobile-open > .nav-sub-dropdown {
    display: block;
  }
  .nav-sub-item > a {
    padding: 9px 24px 9px 52px;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .nav-phone-pill {
    display: none;
  }
  /* Hero - stack vertically, show form below text */
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: block;
    margin-top: 32px;
  }
  /* Inner hero - stack vertically */
  .inner-hero-inner {
    grid-template-columns: 1fr;
  }
  .inner-hero-right {
    display: block;
    margin-top: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .about-intro {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  /* About section */
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-card {
    min-height: auto;
  }
  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Stats band */
  .stats-band-inner {
    flex-wrap: wrap;
    gap: 24px;
  }
  .stats-band-divider {
    display: none;
  }
  .stats-band-item {
    flex: 0 0 calc(50% - 24px);
  }
}
@media screen and (max-width: 991px) {
  .thanks-message {
    width: auto;
    height: auto;
    background: #911813;
    border-radius: inherit;
    padding: 30px 0;
  }
    .thanks-message::before {
    display: none;
    }
}
/* ===== RESPONSIVE - 768px ===== */
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 38px;
  }
  .hero-left {
    border-left: none;
    padding-left: 0;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-stat {
    padding: 0 16px;
  }
  .hero-right {
    padding: 28px 20px;
  }
  /* Inner pages - show sidebar form below content on mobile */
  .main-content {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: block;
  }
  .sidebar-form-card {
    position: static;
  }
  .inner-hero-left h1 {
    font-size: 34px;
  }
  .inner-hero-left {
    border-left: none;
    padding-left: 0;
  }
  .inner-hero-right {
    padding: 24px 18px;
  }
  .inner-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  section.results-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  section.results-stats h2 {
    max-width: 100%;
    min-width: unset;
    margin-bottom: 16px;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .included-list {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-archive-grid {
    grid-template-columns: 1fr;
  }
  .blog-single-wrap {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .contact-page {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-right {
    align-items: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    gap: 48px;
  }
  .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-badge-top {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 6px 10px;
  }
  .about-badge-bottom {
    bottom: 10px;
  }
  .stats-band-item {
    flex: 0 0 100%;
  }
  .stats-band-num {
    font-size: 40px;
  }
  .section-header h2 {
    font-size: 30px;
  }
  .cta-left h2 {
    font-size: 30px;
  }
  .faq-header h2 {
    font-size: 28px;
  }
  .stats-copy h2 {
    font-size: 32px;
  }
  .stats-inner {
    gap: 36px;
  }
  .stat-box {
    padding: 20px 14px;
  }
  .stat-number {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
    .hero-stats .hero-stat-divider{
        display: none;
    }
  .hero-left h1 {
    font-size: 32px;
  }
  .inner-hero-left h1 {
    font-size: 28px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .inner-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-stat:first-child {
    padding-left: 16px;
  }
  .about-chips {
    justify-content: center;
  }
  .stats-band-item {
    text-align: center;
  }
}