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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #F7F3ED;
  color: #2C2418;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --cream: #F7F3ED;
  --cream-2: #EFE9DF;
  --cream-3: #E5DDD0;
  --cream-4: #D9CEBD;
  --sand: #C9B99A;
  --gold: #A8895A;
  --gold-dark: #8A6D3F;
  --gold-glow: rgba(168, 137, 90, 0.2);
  --brown: #5C3D1E;
  --text-dark: #2C2418;
  --text-mid: #5C4D38;
  --text-muted: #9A8672;
  --white: #FDFAF7;
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
}

.italic-text {
  font-style: italic;
  color: var(--gold);
}

em {
  font-style: italic;
  color: var(--gold);
}

.section-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Outfit', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--text-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

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

/* ===========================
   ANIMATIONS
=========================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(2),
.benefit-card:nth-child(2),
.testi-card:nth-child(2),
.step-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3),
.benefit-card:nth-child(3),
.testi-card:nth-child(3),
.step-card:nth-child(3) {
  transition-delay: 0.2s;
}

.service-card:nth-child(4),
.benefit-card:nth-child(4),
.step-card:nth-child(4) {
  transition-delay: 0.3s;
}

.benefit-card:nth-child(5),
.step-card:nth-child(5) {
  transition-delay: 0.4s;
}

.benefit-card:nth-child(6) {
  transition-delay: 0.5s;
}

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 243, 237, 0.5);
  backdrop-filter: blur(12px);
  transition: background 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(247, 243, 237, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--cream-3);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.logo .dot {
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
  font-family: 'Outfit', sans-serif;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 14px var(--gold-glow) !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px) !important;
}

.nav-cta::after {
  display: none !important;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  background: rgba(247, 243, 237, 0.97);
  border-top: 1px solid var(--cream-3);
}

.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-3);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

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

/* ===========================
   HERO
=========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #F4EFE6;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.11);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 252, 247, 0.9) 0%, rgba(255, 252, 247, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3.5rem 2.5rem;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(176, 141, 87, 0.08);
}

.hero-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(168, 137, 90, 0.45);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(247, 243, 237, 0.7);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.7s ease both;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s 0.15s ease both;
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-mid);
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.7s 0.3s ease both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.7s 0.45s ease both;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: fadeInUp 0.7s 0.6s ease both;
  background: rgba(247, 243, 237, 0.75);
  border: 1px solid rgba(168, 137, 90, 0.25);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
  display: block;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--cream-4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   ABOUT / WHAT IS EMS
=========================== */
#about {
  padding: 7rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-grid--reverse .about-text {
  order: 2;
}

.about-grid--reverse .about-img-wrap {
  order: 1;
}

.about-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(92, 61, 30, 0.15);
}

.about-img-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

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

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(168, 137, 90, 0.3);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.badge-icon {
  font-size: 1.1rem;
}

.about-desc {
  font-family: 'Outfit', sans-serif;
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-desc--lg {
  font-size: 1.15rem;
}

.about-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem;
}

.about-certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.75rem 0 2rem;
}

.cert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.cert-icon {
  color: var(--gold);
  font-weight: 700;
}

/* ===========================
   BENEFITS
=========================== */
#benefits {
  padding: 7rem 0;
  background: var(--cream);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.benefit-item {
  text-align: left;
}

.benefit-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.benefit-item p {
  font-family: 'Outfit', sans-serif;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===========================
   WHO IS IT FOR
 =========================== */
#who-is-it-for {
  padding: 7rem 0;
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.who-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-3);
  transition: var(--transition);
}

.who-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(168, 137, 90, 0.1);
}

.who-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.who-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.who-text p {
  font-family: 'Outfit', sans-serif;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   SERVICES
=========================== */
#services {
  padding: 7rem 0;
  background: var(--white);
}

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

.service-card {
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 137, 90, 0.4);
  box-shadow: 0 20px 50px rgba(92, 61, 30, 0.1);
}

.service-card--featured {
  background: linear-gradient(160deg, #F0E8D8, var(--cream));
  border-color: rgba(168, 137, 90, 0.5);
  box-shadow: 0 0 40px rgba(168, 137, 90, 0.08);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.service-price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem !important;
}

.service-card>p:not(.service-price) {
  font-family: 'Outfit', sans-serif;
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--cream-3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li::before {
  content: '–';
  color: var(--gold);
  font-weight: 700;
}

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials {
  padding: 7rem 0;
  background: var(--cream);
}

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(92, 61, 30, 0.1);
}

.testi-card--highlight {
  background: linear-gradient(160deg, #F0E8D8, var(--white));
  border-color: rgba(168, 137, 90, 0.4);
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author strong {
  font-family: 'Outfit', sans-serif;
  display: block;
  font-size: 0.93rem;
  color: var(--text-dark);
}

.testi-author span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}

#training-process {
  padding: 6rem 0;
  background: var(--white);
}

#training-process .section-header {
  margin-bottom: 2rem;
}

.training-steps {
  margin-top: 1rem;
}

/* About Steps (O EMS section) */
.about-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.about-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-3);
}

.about-step:last-child {
  border-bottom: none;
}

.about-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
}

.about-step-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.about-step-body p,
.about-step-body li {
  font-family: 'Outfit', sans-serif;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
}

.about-step-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-step-list li::before {
  content: '\2014\00a0';
  color: var(--gold);
  font-weight: 600;
}

/* Vertical Steps (training-process section) */
.vertical-steps {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto;
}

.vstep {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.vstep-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.vstep-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.vstep-line {
  width: 2px;
  flex: 1;
  min-height: 2.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: 0.4rem;
  opacity: 0.4;
}

.vstep-content {
  padding-bottom: 2.5rem;
}

.vstep--last .vstep-content {
  padding-bottom: 0;
}

.vstep-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  margin-top: 0.5rem;
}

.vstep-content p {
  font-family: 'Outfit', sans-serif;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
}

.vstep-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vstep-list li {
  font-family: 'Outfit', sans-serif;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.7;
  padding-left: 1.1rem;
  position: relative;
}

.vstep-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}




/* ===========================
   CONTACT
=========================== */
#contact {
  padding: 7rem 0;
  background: var(--cream);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc {
  font-family: 'Outfit', sans-serif;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.contact-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(92, 61, 30, 0.06);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: 10px;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 137, 90, 0.12);
  background: var(--white);
}

.form-group select option {
  background: var(--white);
}

.form-success {
  font-family: 'Outfit', sans-serif;
  color: #6B8F5E;
  font-weight: 600;
  font-size: 0.93rem;
  text-align: center;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.form-success.show {
  opacity: 1;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--text-dark);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .logo {
  color: var(--cream);
}

footer .logo .dot {
  color: var(--gold);
}

footer p {
  font-family: 'Outfit', sans-serif;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-card img {
    height: 400px;
  }

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

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

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

  .about-grid--reverse .about-text {
    order: 1;
  }

  .about-grid--reverse .about-img-wrap {
    order: 2;
  }

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

  .testi-card:last-child {
    grid-column: span 2;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-grid {
    gap: 0.5rem;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid,
  .benefits-list,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .testi-card:last-child {
    grid-column: span 1;
  }

  .about-certs {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 100%;
  }
}