﻿:root {
  --navy: #0b1f3a;
  --navy2: #102649;
  --navy3: #153058;
  --gold: #b8953f;
  --gold-light: #d4ab55;
  --gold-pale: #faf4e6;
  --gold-border: #c9a84c;
  --red: #c0392b;
  --red-hover: #d44235;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray: #f0f2f5;
  --gray2: #e4e8ee;
  --text: #12202e;
  --text-mid: #3a4a5c;
  --text-light: #6b7a8d;
  --border: #dde3ec;
  --border-strong: #c8d0dc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
}

.logo-main span {
  color: var(--red-hover);
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 6px;
  transition: all 0.18s;
  letter-spacing: 0.1px;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  background: #cc0000 !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 7px !important;
  letter-spacing: 0.2px !important;
}

.nav-cta:hover {
  background: #e00000 !important;
  color: var(--white) !important;
}

.nav-cta-gold {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta-gold:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 16px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 11px 14px;
  border-radius: 7px;
  transition: all 0.18s;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.mobile-menu .mobile-cta-gold {
  color: var(--gold-light) !important;
  font-weight: 700;
}

/* SHARED */
section {
  padding: 96px 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: rgba(201, 168, 76, 0.75);
}

.h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.h2-white {
  color: var(--white);
}

.body-large {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 580px;
}

.body-large-white {
  color: rgba(255, 255, 255, 0.58);
}

.center {
  text-align: center;
}

.center .body-large {
  margin: 0 auto;
}

/* BUTTONS */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  letter-spacing: 0.2px;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-navy:hover {
  background: var(--navy2);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

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

/* HERO */
.hero {
  min-height: auto;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.11;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 31, 58, 0.97) 42%, rgba(11, 31, 58, 0.7) 100%);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 28px 20px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(184, 149, 63, 0.12);
  border: 1px solid rgba(184, 149, 63, 0.3);
  color: rgba(212, 171, 85, 0.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-kicker i {
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.09;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.trust-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding-right: 20px;
}

.trust-item i {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 14px;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 14px;
  text-align: center;
}

.stat-num {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.3px;
}

.stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* SERVICE CARDS */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 24px;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}

.svc-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: 0 16px 48px rgba(11, 31, 58, 0.09);
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.18);
}

.svc-icon-wrap i {
  font-size: 22px;
  color: var(--gold-light);
}

.svc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}

.svc-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.svc-link {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.18s;
  letter-spacing: 0.2px;
}

.svc-link i {
  font-size: 14px;
  transition: transform 0.18s;
}

.svc-card:hover .svc-link i {
  transform: translateX(3px);
}

/* JOURNEY */
.journey {
  background: var(--navy);
}

.journey-steps {
  display: flex;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(184, 149, 63, 0.4),
      rgba(184, 149, 63, 0.4),
      transparent);
  z-index: 0;
}

.j-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.j-num {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.1);
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.06);
}

.j-num i {
  font-size: 24px;
  color: var(--gold-light);
}

.j-step h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.1px;
}

.j-step p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  padding: 0 12px;
}

/* WHY GRID */
.why-bg {
  background: #f5f0e8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.why-card {
  border: 1px solid rgba(184, 149, 63, 0.2);
  border-radius: 12px;
  padding: 26px 22px;
  background: var(--white);
  transition: all 0.25s;
}

.why-card:hover {
  background: var(--white);
  border-color: var(--gold-border);
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.08);
}

.why-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.15);
}

.why-card-icon i {
  font-size: 21px;
  color: var(--gold-light);
}

.why-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.25s;
}

.testi:hover {
  border-color: var(--gold-border);
  box-shadow: 0 10px 36px rgba(11, 31, 58, 0.07);
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testi-stars i {
  font-size: 14px;
  color: var(--gold);
}

.testi blockquote {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 20px;
  font-style: normal;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testi-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.84rem;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* FORM SECTION */
.form-sec {
  background: var(--navy);
}

.form-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.ftab {
  padding: 9px 20px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.2px;
}

.ftab.active,
.ftab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.form-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 40px;
  margin-top: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.fg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fg.full {
  grid-column: 1/-1;
}

.fg label {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fg input,
.fg select,
.fg textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white);
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.18s;
  font-family: inherit;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(184, 149, 63, 0.6);
}

.fg select option {
  background: #0b1f3a;
  color: var(--white);
}

.fg textarea {
  resize: vertical;
  min-height: 88px;
}

.form-submit {
  margin-top: 24px;
  text-align: center;
}

/* CTA BANNER */
.cta-band {
  background: var(--gold-pale);
  border-top: 1px solid rgba(184, 149, 63, 0.2);
  border-bottom: 1px solid rgba(184, 149, 63, 0.2);
  padding: 72px 0;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-band p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 30px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.ft-brand .ft-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}

.ft-brand .ft-logo span {
  color: var(--red-hover);
}

.ft-brand p {
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 22px;
}

.ft-socials {
  display: flex;
  gap: 8px;
}

.ft-soc {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.18s;
}

.ft-soc:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ft-soc i {
  font-size: 15px;
}

.ft-col h4 {
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ft-col a {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.18s;
}

.ft-col a:hover {
  color: var(--gold-light);
}

.ft-col .ft-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.ft-col .ft-contact-row i {
  font-size: 15px;
  color: var(--white);
  margin-top: 1px;
  flex-shrink: 0;
}

.ft-col .ft-contact-row a,
.ft-col .ft-contact-row p {
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.6;
}

.ft-col .ft-contact-row a:hover {
  color: var(--gold-light);
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-bottom p {
  color: var(--white);
  font-weight: 600;
  font-size: 0.76rem;
}

/* PAGE HEROES */
.page-hero {
  background: var(--navy);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.09;
}

.page-hero .eyebrow {
  color: rgba(184, 149, 63, 0.75);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.4px;
  line-height: 1.12;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.52);
  max-width: 560px;
  line-height: 1.8;
}

.page-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

/* TWO-COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}

.photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-wrap img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.points-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.pt {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pt-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.15);
}

.pt-icon i {
  font-size: 18px;
  color: var(--gold-light);
}

.pt h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pt p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* AUDIENCE GRID */
.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.aud-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 26px 22px;
  transition: all 0.22s;
}

.aud-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.07);
}

.aud-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.15);
}

.aud-card-icon i {
  font-size: 19px;
  color: var(--gold-light);
}

.aud-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.aud-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* PROCESS STEPS */
.proc-steps {
  display: flex;
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.proc-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), var(--gold-border), transparent);
  z-index: 0;
}

.ps {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ps-num {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 18px;
  letter-spacing: 0.3px;
}

.ps h3 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.ps p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  padding: 0 10px;
}

/* RENO PAGE */
.reno-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.reno-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
}

.reno-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(11, 31, 58, 0.09);
}

.reno-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.reno-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.reno-card:hover .reno-img img {
  transform: scale(1.04);
}

.reno-body {
  padding: 22px;
}

.reno-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.reno-icon-row i {
  font-size: 18px;
  color: var(--gold);
}

.reno-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.reno-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 14px;
}

.reno-link {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.2px;
}

.reno-link i {
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.reno-link:hover i {
  transform: translateX(4px);
}

/* RENO STRATEGY STRIP */
.reno-strat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* RENOVATION SHOWCASE */
.showcase-section {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.showcase-singles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.showcase-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 2px 14px rgba(11, 31, 58, 0.05);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.showcase-card:hover {
  box-shadow: 0 10px 36px rgba(11, 31, 58, 0.1);
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.showcase-compare {
  position: relative;
  display: flex;
  height: 230px;
  overflow: hidden;
}

.showcase-half {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.showcase-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-half img,
.showcase-card:hover .showcase-single-img img {
  transform: scale(1.05);
}

.sc-split {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(184, 149, 63, 0) 0%,
    rgba(184, 149, 63, 0.85) 20%,
    rgba(184, 149, 63, 0.85) 80%,
    rgba(184, 149, 63, 0) 100%
  );
  z-index: 3;
}

.sc-split-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 2px 12px rgba(184, 149, 63, 0.5);
}

.sc-tag {
  position: absolute;
  bottom: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
}

.sc-before {
  left: 10px;
  background: rgba(11, 31, 58, 0.82);
  color: rgba(255, 255, 255, 0.95);
}

.sc-after {
  right: 10px;
  background: rgba(184, 149, 63, 0.9);
  color: #fff;
}

.showcase-single-img {
  height: 230px;
  overflow: hidden;
}

.showcase-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}

.showcase-body {
  padding: 10px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.showcase-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0 0 14px;
  line-height: 1.65;
}

.sc-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1px;
}

.sc-type-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(16, 38, 73, 0.07);
  color: var(--navy);
}

.sc-type-result {
  background: rgba(184, 149, 63, 0.12);
  color: var(--gold);
}

/* SERVICE DETAIL PAGE */
.svc-detail-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px;
  align-items: start;
}

.svc-main h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
  letter-spacing: -0.2px;
}

.svc-main h2:first-child {
  margin-top: 0;
}

.svc-main p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 14px;
}

.svc-main ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

.svc-main ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.svc-main ul li i {
  font-size: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  position: sticky;
  top: 90px;
}

.sidebar-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-input {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.84rem;
  margin-bottom: 10px;
  outline: none;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s;
}

.sidebar-input:focus {
  border-color: var(--gold);
}

.faq-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-top: 16px;
}

.faq-wrap h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.faq-q i {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-a {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 9px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  margin-top: 50px;
}

.contact-info-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.c-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.c-ico {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.15);
}

.c-ico i {
  font-size: 19px;
  color: var(--gold-light);
}

.c-item h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.c-item p,
.c-item a {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.65;
}

.c-item a:hover {
  color: var(--gold);
}

.str-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 6px;
}

.str-card:hover {
  background: var(--navy2);
}

.str-card-icon i {
  font-size: 22px;
  color: var(--gold-light);
}

.str-card-text .str-title {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.88rem;
}

.str-card-text .str-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.76rem;
  margin-top: 2px;
}

.contact-form-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.contact-form-box .form-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.cf-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.18s;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  margin-bottom: 14px;
}

.cf-input:focus {
  border-color: var(--gold);
}

textarea.cf-input {
  resize: vertical;
  min-height: 110px;
}

/* MOBILE */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .svc-grid,
  .why-grid,
  .reno-strat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col,
  .svc-detail-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .reno-grid,
  .testi-grid,
  .aud-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-grid,
  .showcase-singles {
    grid-template-columns: 1fr 1fr;
  }

  .journey-steps,
  .proc-steps {
    flex-direction: column;
    gap: 24px;
  }

  .journey-steps::before,
  .proc-steps::before {
    display: none;
  }

  .sidebar-box {
    position: relative;
    top: 0;
  }
}

@media (max-width: 600px) {

  .svc-grid,
  .why-grid,
  .reno-strat-grid,
  .reno-grid,
  .testi-grid,
  .aud-grid,
  .showcase-grid,
  .showcase-singles {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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