:root {
    --primary: #e07b39;
    --primary-dark: #c4621a;
    --secondary: #2e1e13;
    --gold: #EFBB20;
    --gold-light: #f7d06a;
    --bg-dark: #1a0f09;
    --bg-mid: #2e1e13;
    --bg-light: #f9f5f0;
    --text-body: #767676;
    --text-dark: #2e1e13;
    --white: #ffffff;
    /* --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif; */
    --radius: 6px;
    --shadow: 0 8px 40px rgba(46,30,19,0.15);
    --shadow-card: 0 4px 24px rgba(46,30,19,0.10);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    /* font-family: var(--font-body); */
    font-size: 15px;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }

  img { max-width: 100%; height: auto; display: block; }
  a { color: var(--primary); text-decoration: none; }

  /* ---- HERO ---- */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
  }
  .hero-bg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    position: absolute;
    inset: 0;
    gap: 3px;
    z-index: 0;
  }
  .hero-bg-grid .img-cell {
    overflow: hidden;
    position: relative;
  }
  .hero-bg-grid .img-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.28;
    transition: opacity 0.4s;
    filter: saturate(0.6);
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,15,9,0.92) 0%, rgba(46,30,19,0.75) 50%, rgba(224,123,57,0.18) 100%);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 30px 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,187,32,0.15);
    border: 1px solid rgba(239,187,32,0.4);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
  }
  .hero-badge i { font-size: 10px; }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 22px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
  .btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(224,123,57,0.4); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }
  .stat { text-align: left; }
  .stat-num { font-size: 28px; font-weight: 800; color: var(--gold); font-family: var(--font-head); line-height: 1; }
  .stat-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

  /* Hero Card */
  .hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    overflow: hidden;
  }
  .hero-card-img { position: relative; height: 280px; overflow: hidden; }
  .hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
  .hero-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26,15,9,0.8));
  }
  .hero-card-body { padding: 24px; }
  .hero-card-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .hero-card-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .hero-card-text { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
  .hero-card-meta { display: flex; gap: 16px; }
  .hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.6); }
  .hero-meta-item i { color: var(--gold); }

  /* ---- SECTION COMMON ---- */
  .section { padding: 90px 0; }
  .section-bg { background: var(--bg-light); }
  .section-dark { background: var(--bg-mid); }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,187,32,0.12);
    border: 1px solid rgba(239,187,32,0.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
  }
  .section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .section-title em { font-style: italic; color: var(--primary); }
  .section-title.white { color: var(--white); }
  .section-desc { font-size: 15px; color: var(--text-body); max-width: 640px; line-height: 1.7; }
  .section-head { margin-bottom: 55px; }
  .section-head.center { text-align: center; }
  .section-head.center .section-desc { margin: 0 auto; }
  .sep-line {
    width: 55px; height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 16px 0;
    position: relative;
  }
  .sep-line::after {
    content: '';
    position: absolute;
    left: 62px; top: 0;
    width: 12px; height: 4px;
    background: var(--gold);
    border-radius: 2px;
  }
  .center .sep-line { margin: 16px auto; }

  /* ---- WHY SECTION ---- */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .why-img-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
  }
  .why-img-mosaic .img-wrap {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
  }
  .why-img-mosaic .img-wrap.tall {
    grid-row: span 2;
  }
  .why-img-mosaic .img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .why-img-mosaic .img-wrap:hover img { transform: scale(1.06); }
  .why-img-mosaic .img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(46,30,19,0.85), transparent);
    padding: 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .why-points { margin-top: 28px; }
  .why-point {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
  }
  .why-point-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px;
  }
  .why-point-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
  .why-point-desc { font-size: 13px; color: var(--text-body); }

  /* ---- SERVICES ---- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(46,30,19,0.07);
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(46,30,19,0.14); }
  .service-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
  }
  .service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .service-card:hover .service-card-img img { transform: scale(1.07); }
  .service-card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .service-card-body { padding: 22px 24px 26px; }
  .service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: var(--font-head);
  }
  .service-card-desc { font-size: 13px; color: var(--text-body); margin-bottom: 20px; line-height: 1.65; }
  .service-meta { display: flex; justify-content: space-between; align-items: center; }
  .service-duration { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--primary); font-weight: 600; }

  /* ---- GALLERY SECTION ---- */
  .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
  }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: saturate(0.9);
  }
  .gallery-item:hover img { transform: scale(1.08); filter: saturate(1.1); }
  .gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(46,30,19,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex; align-items: flex-end;
    padding: 16px;
  }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }
  .gallery-label { color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

  /* ---- PROCESS ---- */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    z-index: 0;
  }
  .process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 24px;
    font-family: var(--font-head);
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(224,123,57,0.4);
  }
  .step-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
  .step-desc { font-size: 13px; color: var(--text-body); }

  /* ---- BENEFITS DARK SECTION ---- */
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .benefits-img-col { position: relative; }
  .benefits-main-img {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    position: relative;
  }
  .benefits-main-img img { width: 100%; height: 100%; object-fit: cover; }
  .benefits-float-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary);
    border-radius: 16px;
    padding: 22px 24px;
    width: 200px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(224,123,57,0.45);
  }
  .float-num { font-family: var(--font-head); font-size: 44px; font-weight: 800; line-height: 1; }
  .float-label { font-size: 12px; opacity: 0.85; margin-top: 6px; font-weight: 500; line-height: 1.4; }
  .benefits-small-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
  }
  .benefit-small {
    border-radius: 12px;
    overflow: hidden;
    height: 130px;
  }
  .benefit-small img { width: 100%; height: 100%; object-fit: cover; }
  .benefits-list { list-style: none; }
  .benefits-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .benefits-list li:last-child { border-bottom: none; }
  .benefit-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(239,187,32,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 16px;
  }
  .benefit-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
  .benefit-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; }

  /* ---- PROGRAMS CARDS ---- */
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .program-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    border: 1px solid rgba(46,30,19,0.07);
  }
  .program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(46,30,19,0.14); }
  .program-img-wrap { position: relative; height: 220px; overflow: hidden; }
  .program-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .program-card:hover .program-img-wrap img { transform: scale(1.06); }
  .program-badge {
    position: absolute; bottom: 14px; left: 14px;
    background: rgba(26,15,9,0.82);
    color: var(--gold);
    font-size: 10px; font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1.5px;
    backdrop-filter: blur(4px);
  }
  .program-body { padding: 22px; }
  .program-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; font-family: var(--font-head); }
  .program-desc { font-size: 13px; color: var(--text-body); margin-bottom: 18px; line-height: 1.6; }
  .program-features { list-style: none; margin-bottom: 22px; }
  .program-features li {
    font-size: 12px;
    color: var(--text-body);
    padding: 5px 0;
    display: flex; align-items: center; gap: 8px;
  }
  .program-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 11px;
  }

  .program-icon-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 20px;
  background: linear-gradient(135deg, #f9f5f0 0%, #fdf0e3 100%);
}
.program-icon-wrap.featured {
  background: linear-gradient(135deg, #fff4ea 0%, #ffe8d0 100%);
}
.program-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(224,123,57,0.18);
  border: 3px solid rgba(224,123,57,0.15);
  transition: all 0.3s;
}
.program-icon-circle.featured {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 30px rgba(224,123,57,0.4);
  border-color: var(--primary);
}
.program-card:hover .program-icon-circle {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 36px rgba(224,123,57,0.28);
}
.program-card:hover .program-icon-circle.featured {
  box-shadow: 0 12px 36px rgba(224,123,57,0.55);
}
.program-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(46,30,19,0.08);
  color: #2e1e13;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

  /* ---- TESTIMONIALS ---- */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s;
  }
  .testimonial-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
  .quote-icon {
    font-size: 40px;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
  }
  .testimonial-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
  }
  .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .author-name { font-size: 14px; font-weight: 700; color: #fff; }
  .author-title { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
  .star-rating { color: var(--gold); font-size: 11px; margin-bottom: 10px; letter-spacing: 2px; }

  /* ---- COMPANIES / CLIENTS ---- */
  .clients-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0.6;
  }
  .client-logo-box {
    background: rgba(46,30,19,0.06);
    border: 1px solid rgba(46,30,19,0.1);
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .client-logo-box:hover { opacity: 1; background: var(--primary); color: #fff; }

  /* ---- CONTACT / CTA ---- */
  .cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(239,187,32,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cta-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: start;
  }
  .cta-content .section-title { color: var(--white); }
  .cta-bullets { list-style: none; margin: 24px 0 32px; }
  .cta-bullets li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
  }
  .cta-bullets li i { color: var(--gold); }
  .contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(12px);
  }
  .form-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .form-subtitle { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-control {
    width: 100%;
    padding: 13px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s;
  }
  .form-control::placeholder { color: rgba(255,255,255,0.4); }
  .form-control:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  select.form-control option { background: var(--bg-mid); color: #fff; }
  textarea.form-control { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 6px;
  }
  .form-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(224,123,57,0.45); }

  /* ---- FAQ ---- */
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(46,30,19,0.09);
    overflow: hidden;
    transition: box-shadow 0.3s;
  }
  .faq-item:hover { box-shadow: var(--shadow-card); }
  .faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
  }
  .faq-q i { color: var(--primary); font-size: 14px; transition: transform 0.3s; flex-shrink: 0; }
  .faq-a {
    padding: 0 24px 20px;
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.7;
  }

  /* ---- LOCATIONS ---- */
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .location-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    border: 1px solid rgba(46,30,19,0.09);
    transition: all 0.3s;
    text-align: center;
  }
  .location-card:hover { box-shadow: var(--shadow-card); border-color: var(--primary); transform: translateY(-4px); }
  .location-icon { font-size: 28px; color: var(--primary); margin-bottom: 12px; }
  .location-name { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
  .location-detail { font-size: 12px; color: var(--text-body); }

  /* ---- BREADCRUMB ---- */
  .breadcrumb-bar {
    background: var(--bg-mid);
    padding: 14px 0;
  }
  .breadcrumb-inner {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.6);
  }
  .breadcrumb-inner a { color: rgba(255,255,255,0.6); }
  .breadcrumb-inner a:hover { color: var(--gold); }
  .breadcrumb-inner .sep { color: rgba(255,255,255,0.3); }
  .breadcrumb-inner .current { color: var(--gold); font-weight: 600; }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 1024px) {
    .services-grid, .programs-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .process-steps::before { display: none; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-card { max-width: 400px; }
  }
  @media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero-content { padding: 100px 20px 60px; }
    .why-grid, .benefits-grid, .cta-inner { grid-template-columns: 1fr; }
    .services-grid, .programs-grid, .testimonials-grid, .faq-grid { grid-template-columns: 1fr; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .benefits-float-card { right: 0; bottom: -10px; }
    .form-row { grid-template-columns: 1fr; }
    .why-img-mosaic { grid-template-rows: 160px 160px; }
  }
  @media (max-width: 480px) {
    .gallery-masonry { grid-template-columns: 1fr; }
    .gallery-item.tall { grid-row: span 1; }
    .locations-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 30px; }
    .process-steps { grid-template-columns: 1fr; }
  }
  .page-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero-img {
  position: absolute;
  inset: 0;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 25, 15, 0.92) 0%,
    rgba(10, 25, 15, 0.55) 55%,
    rgba(10, 25, 15, 0.18) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 5%;
  width: 100%;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: rgba(255, 255, 255, 0.9); }
.breadcrumb .sep   { color: rgba(255, 255, 255, 0.28); }
.breadcrumb .current {
  color: #c9a84c;
  font-weight: 500;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: #c9a84c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}

/* H1 */
.page-hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
}

.page-hero-content h1 em {
  color: #c9a84c;
  font-style: italic;
}

/* Mobile */
@media (max-width: 600px) {
  .page-hero { height: 280px; }
  .page-hero-content { padding: 24px 4%; }
}

/* === STATS SECTION === */
:root {
  --yp: #E8620A;
  --ypl: #FFF3EC;
  --ypd: #C24E00;
  --yb: #f0e0d6;
  --yt: #1a1a1a;
  --ym: #666;
}
.stats-section { background: #FFF8F4; padding: 70px 30px; text-align: center; border-top: 4px solid var(--yp); }
.sec-tag { font-size: 12px; color: var(--yp); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.sec-title { font-size: 30px; font-weight: 800; color: var(--yt); margin-bottom: 8px; }
.sec-sub { font-size: 15px; color: var(--ym); margin-bottom: 48px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 960px; margin: 0 auto; }
.scard { background: #fff; border-radius: 18px; border: 1.5px solid var(--yb); padding: 28px 16px 24px; position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.scard:hover { transform: translateY(-5px); border-color: var(--yp); }
.scard::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--yp); border-radius: 0 0 18px 18px; }
.scard-illo { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.scard-illo svg { width: 72px; height: 72px; }
.scard-num { font-size: 38px; font-weight: 900; color: var(--yp); line-height: 1; margin-bottom: 10px; }
.scard-num sup { font-size: 20px; }
.scard-desc { font-size: 13px; color: var(--ym); line-height: 1.6; }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* === UNIQUE SECTION === */
.unique-section { background: #fff; padding: 70px 30px; text-align: center; }
.unique-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.ucard { border: 1.5px solid var(--yb); border-radius: 16px; padding: 26px 12px 22px; background: #fff; transition: border-color 0.2s, transform 0.2s; }
.ucard:hover { border-color: var(--yp); transform: translateY(-4px); }
.ucard-illo { height: 90px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ucard-illo svg { width: 80px; height: 80px; }
.ucard-title { font-size: 15px; font-weight: 800; color: var(--yt); margin-bottom: 8px; }
.ucard-desc { font-size: 12.5px; color: var(--ym); line-height: 1.6; }
@media (max-width: 900px) { .unique-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .unique-row { grid-template-columns: repeat(2, 1fr); } }