/* =================================================================
   SAFROZ COACHING — style.css
   Author: Agency build
   NOTE: All colours are CSS variables below — change them here only.
================================================================= */

/* =================================================================
   1. THEME VARIABLES  (★ EDIT YOUR COLOUR THEME HERE ★)
================================================================= */
:root {
  /* --- Brand colours --- */
  --brand-orange: #FF7D25;
  /* primary accent (the torch flame) */
  --brand-blue: #1D81BF;
  /* primary brand colour */

  /* --- Derived / supporting shades --- */
  --orange-dark: #e96a14;
  --blue-dark: #166a9e;
  --ink: #0d3b5c;
  /* deep navy for headings / dark sections */
  --ink-soft: #2c4a5e;

  /* --- Neutrals --- */
  --text: #34434c;
  --muted: #6b7a83;
  --white: #ffffff;
  --line: #e6ecf1;

  /* --- Subtle section tints (kept clean, not flashy) --- */
  --tint-cool: #eef6fc;
  /* light blue wash */
  --tint-warm: #fff4ec;
  /* light orange wash */
  --tint-grey: #f6f9fb;

  /* --- Gradients --- */
  --grad-brand: linear-gradient(135deg, var(--brand-orange) 0%, var(--orange-dark) 100%);
  --grad-blue: linear-gradient(135deg, var(--brand-blue) 0%, var(--ink) 100%);

  /* --- Effects --- */
  --shadow-sm: 0 4px 14px rgba(13, 59, 92, .08);
  --shadow-md: 0 12px 30px rgba(13, 59, 92, .12);
  --shadow-lg: 0 24px 55px rgba(13, 59, 92, .18);
  --radius: 16px;
  --radius-lg: 24px;

  /* --- Type --- */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* --- Layout --- */
  --header-h: 76px;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* =================================================================
   2. BASE / RESET
================================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  transition: all .3s ease;
}

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

p {
  margin-bottom: 1rem;
}

::selection {
  background: var(--brand-orange);
  color: #fff;
}

/* Highlighted "flame" text accent */
.txt-flame {
  color: var(--brand-orange);
  position: relative;
  white-space: nowrap;
}

.section-title .txt-flame::after,
.hero-title .txt-flame::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -6px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q 12 0, 25 8 T 50 8 T 75 8 T 100 8' fill='none' stroke='%23FF7D25' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: .55;
}

/* Section rhythm */
.section {
  padding: 92px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: .6rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--tint-cool);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.eyebrow i {
  color: var(--brand-orange);
}

.eyebrow--light {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.eyebrow--light i {
  color: var(--brand-orange);
}

.lead-text {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.muted-text {
  color: var(--muted);
}

/* =================================================================
   3. BUTTONS
================================================================= */
.btn-brand-solid {
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  box-shadow: 0 10px 22px rgba(255, 125, 37, .32);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.btn-brand-solid:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(255, 125, 37, .45);
  filter: brightness(1.04);
}

.btn-brand-solid i {
  transition: transform .3s ease;
}

.btn-brand-solid:hover i {
  transform: translateX(4px);
}

.btn-brand-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 50px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

.btn-brand-ghost:hover {
  background: #fff;
  color: var(--brand-blue);
  border-color: #fff;
  transform: translateY(-3px);
}

/* =================================================================
   4. TOP BAR
================================================================= */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, .85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--brand-orange);
}

.topbar i {
  color: var(--brand-orange);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .25);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-social {
  display: flex;
  gap: 10px;
}

.topbar-social a {
  font-size: .95rem;
}

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

  .topbar-inner {
    justify-content: center;
  }

  .topbar-contact span:not(.topbar-divider) {
    display: none;
  }
}

/* =================================================================
   5. STICKY HEADER
================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 0;
  min-height: var(--header-h);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.brand-logo {
  width: 100%;
  height: 94px;
  object-fit: contain;
  transition: transform .4s ease;
}

.navbar-brand:hover .brand-logo {
  transform: rotate(-6deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: .02em;
}

.brand-text small {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  color: var(--brand-orange);
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink);
  padding: 8px 14px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand-blue);
}

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

.navbar-toggler {
  border: none;
  font-size: 1.7rem;
  color: var(--brand-blue);
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .btn-brand-solid {
    margin-top: 8px;
  }
}

/* =================================================================
   6. HERO CAROUSEL
================================================================= */
.hero {
  position: relative;
}

.hero .carousel-item {
  height: clamp(540px, 78vh, 720px);
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  /* fallback when image missing */
  position: relative;
}

/* Hero slide background images — swap the file names with your own */
.hero-slide-1 {
  background-image: url('../images/b1.webp');
}

.hero-slide-2 {
  background-image: url('../images/b2.jpg');
}

.hero-slide-3 {
  background-image: url('../images/hero-3.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.3) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 640px;
  color: #fff;
  padding: 30px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 125, 37, .18);
  border: 1px solid rgba(255, 125, 37, .5);
  color: #ffd9bf;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-eyebrow i {
  color: var(--brand-orange);
}

.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-title .txt-flame {
  color: var(--brand-orange);
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Carousel controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  opacity: 1;
  margin: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: background .3s ease;
}

.hero .carousel-control-prev {
  left: 0;
}

.hero .carousel-control-next {
  right: 0;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

.hero .carousel-indicators {
  margin-bottom: 26px;
}

.hero .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: .8;
  transition: all .3s ease;
}

.hero .carousel-indicators .active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 575px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* =================================================================
   7. MARQUEE
================================================================= */
.marquee {
  background: var(--grad-brand);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
}

/* width:max-content lets the track expand past the viewport so it can scroll;
   equal left/right padding on each span (no flex-gap) keeps the loop seamless.
   NOTE: script.js drives this marquee with requestAnimationFrame so it keeps
   running even under "reduce motion"; the CSS animation below is only a
   fallback for the rare case JavaScript is disabled. */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
}

.marquee i {
  font-size: 1.1rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =================================================================
   8. ABOUT
================================================================= */
.about {
  background: var(--white);
}

.about-collage {
  position: relative;
  padding-bottom: 30px;
  padding-right: 30px;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-img--main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--tint-cool);
}

.about-img--sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 6px solid #fff;
  background: var(--tint-warm);
}

.about-badge {
  position: absolute;
  top: 18px;
  left: -10px;
  background: var(--grad-blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
  max-width: 150px;
}

.about-badge-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge span:nth-child(2) {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-orange);
}

.about-badge small {
  flex: 1 1 100%;
  font-size: .72rem;
  line-height: 1.3;
  margin-top: 4px;
  opacity: .9;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-soft);
}

.about-points i {
  color: var(--brand-orange);
  font-size: 1.1rem;
}

@media (max-width: 575px) {
  .about-points {
    grid-template-columns: 1fr;
  }
}

/* Floating decorative shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
  animation: floaty 7s ease-in-out infinite;
}

.float-shape--a {
  width: 90px;
  height: 90px;
  background: var(--tint-warm);
  top: 60px;
  right: 8%;
}

.float-shape--b {
  width: 140px;
  height: 140px;
  background: var(--tint-cool);
  bottom: 40px;
  left: 4%;
  animation-delay: 1.5s;
}

.float-shape--c {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, .06);
  top: 30px;
  right: 6%;
}

.float-shape--d {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, .05);
  bottom: 30px;
  left: 6%;
  animation-delay: 2s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* =================================================================
   9. COUNTERS
================================================================= */
.counters {
  background: var(--tint-cool);
  padding: 56px 0;
}

.counter-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.counter-card i {
  font-size: 1.8rem;
  color: var(--brand-orange);
  margin-bottom: 8px;
  display: inline-block;
}

.counter-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.counter-plus {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-orange);
}

.counter-card p {
  margin: 4px 0 0;
  font-weight: 600;
  color: var(--muted);
  font-size: .92rem;
}

/* =================================================================
   10. SUBJECTS / SERVICES
================================================================= */
.subjects {
  background: var(--tint-grey);
}

.subject-card {
  background: #fff;
  border-radius: var(--radius);
  height: 100%;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.subject-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 3;
}

.subject-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.subject-card:hover::before {
  transform: scaleX(1);
}

/* Image media area at top of card */
.subject-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--tint-cool);
}

.subject-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.subject-card:hover .subject-media img {
  transform: scale(1.07);
}

/* Card body */
.subject-body {
  padding: 38px 28px 30px;
  position: relative;
  flex: 1 1 auto;
}

.subject-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  transition: transform .4s ease;
  background: var(--grad-blue);
  /* sit overlapping the image / top of the body */
  position: absolute;
  top: 12px;
  left: 28px;
  z-index: 2;
  box-shadow: var(--shadow-md);
  border: 3px solid #fff;
}

.subject-card:hover .subject-icon {
  transform: rotate(-8deg) scale(1.08);
}

.subject-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.subject-card p {
  color: var(--muted);
  font-size: .96rem;
  margin-bottom: 16px;
}

.subject-link {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.subject-link:hover {
  color: var(--brand-orange);
  gap: 8px;
}

/* CTA card has no image — keep icon in normal flow */
.subject-body--cta {
  padding-top: 32px;
}

.subject-body--cta .subject-icon {
  position: static;
  margin-bottom: 18px;
  border: none;
  box-shadow: none;
}

/* subject accent colours via icon background */
.subject-card--physics .subject-icon {
  background: linear-gradient(135deg, #1D81BF, #0d3b5c);
}

.subject-card--chem .subject-icon {
  background: linear-gradient(135deg, #27a3a3, #136a6a);
}

.subject-card--bio .subject-icon {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.subject-card--math .subject-icon {
  background: linear-gradient(135deg, #7e57c2, #512da8);
}

.subject-card--eng .subject-icon {
  background: linear-gradient(135deg, #FF7D25, #e96a14);
}

.subject-card--acc .subject-icon {
  background: linear-gradient(135deg, #d4a017, #a97a0a);
}

.subject-card--eco .subject-icon {
  background: linear-gradient(135deg, #e05a7a, #b23a58);
}

.subject-card--cs .subject-icon {
  background: linear-gradient(135deg, #3f6fd1, #24408f);
}

/* "Class XI–XII" stream tag shown on new commerce/CS subject thumbnails */
.subject-stream-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(13, 59, 92, .78);
  backdrop-filter: blur(3px);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .02em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* CTA subject card */
.subject-card--cta {
  background: var(--grad-brand);
  border-color: transparent;
}

.subject-card--cta::before {
  background: #fff;
}

.subject-card--cta .subject-icon {
  background: rgba(255, 255, 255, .2);
}

.subject-card--cta h3,
.subject-card--cta p {
  color: #fff;
}

.subject-card--cta p {
  opacity: .92;
}

.subject-link--invert {
  color: #fff;
}

.subject-link--invert:hover {
  color: var(--ink);
}

/* =================================================================
   11. WHY CHOOSE US
================================================================= */
.why {
  background: var(--grad-blue);
  color: #fff;
  overflow: hidden;
}

.why .section-title {
  margin-bottom: 14px;
}

.why-intro {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 22px;
}

.why-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 26px 22px;
  height: 100%;
  transition: transform .4s ease, background .4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .13);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 14px;
  transition: transform .4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(6deg);
}

.why-card h4 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.why-card p {
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  margin: 0;
}

/* =================================================================
   12. HOW IT WORKS — process
================================================================= */
.process {
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand-orange) 0 10px, transparent 10px 20px);
  z-index: 0;
}

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

.process-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, background .4s ease, color .4s ease;
}

.process-step:hover .process-num {
  transform: translateY(-6px);
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
}

.process-ic {
  font-size: 1.5rem;
  color: var(--brand-orange);
  margin-bottom: 8px;
  display: inline-block;
}

.process-body h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.process-body p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 30px 16px;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 420px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   13. GALLERY CAROUSEL (sliding strip)
================================================================= */
.gallery-carousel-section {
  background: var(--tint-warm);
  padding-bottom: 92px;
}

.gallery-slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slideStrip 34s linear infinite;
}

.gallery-slider:hover .gallery-slider-track {
  animation-play-state: paused;
}

.gslide {
  margin: 0;
  flex: 0 0 auto;
}

.gslide img {
  width: 340px;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: transform .4s ease;
}

.gslide:hover img {
  transform: scale(1.03);
}

@keyframes slideStrip {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .gslide img {
    width: 260px;
    height: 180px;
  }
}

/* =================================================================
   14. GALLERY GRID  (4-up desktop / 2-up mobile)
================================================================= */
.gallery-grid-section {
  background: var(--white);
}

.grid-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
  background: var(--tint-cool);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.grid-item:hover img {
  transform: scale(1.08);
}

.grid-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 59, 92, .55);
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .4s ease;
}

.grid-item:hover .grid-zoom {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 59, 92, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
  animation: fadeIn .3s ease;
}

.lightbox img {
  max-width: 92%;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--brand-orange);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =================================================================
   15. FAQs
================================================================= */
.faqs {
  background: var(--tint-grey);
}

.faq-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.faq-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}

.faq-contact i {
  color: var(--brand-orange);
}

.faq-contact a:hover {
  color: var(--brand-blue);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  padding: 18px 22px;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: var(--tint-cool);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\F64D';
  font-family: 'bootstrap-icons';
  width: auto;
  height: auto;
  font-size: 1.1rem;
  transition: transform .3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  color: var(--muted);
  padding: 0 22px 20px;
}

/* =================================================================
   16. TESTIMONIALS
================================================================= */
.testimonials {
  background: var(--grad-blue);
  color: #fff;
  overflow: hidden;
}

.testi-card {
  background: #fff;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 44px 40px 38px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.testi-quote {
  font-size: 3rem;
  color: var(--brand-orange);
  opacity: .3;
  position: absolute;
  top: 18px;
  left: 28px;
}

.testi-text {
  font-size: 1.18rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 18px;
}

.testi-stars {
  color: var(--brand-orange);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testi-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-orange);
  background: var(--tint-cool);
}

.testi-person strong {
  display: block;
  font-family: var(--font-head);
  color: var(--ink);
}

.testi-person span {
  font-size: .88rem;
  color: var(--muted);
}

.testi-indicators {
  position: static;
  margin-top: 28px;
}

.testi-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: .8;
}

.testi-indicators .active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  width: 30px;
  border-radius: 6px;
}

/* =================================================================
   17. CONTACT
================================================================= */
.contact {
  background: var(--white);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.contact-info li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.ci-ic {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--tint-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 1.2rem;
  transition: background .3s ease, color .3s ease;
}

.contact-info li:hover .ci-ic {
  background: var(--grad-brand);
  color: #fff;
}

.contact-info strong {
  font-family: var(--font-head);
  color: var(--ink);
  display: block;
}

.contact-info p {
  margin: 2px 0 0;
  color: var(--muted);
}

.contact-info a {
  color: var(--muted);
}

.contact-info a:hover {
  color: var(--brand-blue);
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.contact-card-sub {
  color: var(--muted);
  margin-bottom: 22px;
}

.form-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 5px;
}

.form-label .opt {
  font-weight: 400;
  color: var(--muted);
  font-size: .82rem;
}

.contact-card .form-control,
.contact-card .form-select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: .96rem;
  background: var(--tint-grey);
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(29, 129, 191, .15);
  background: #fff;
}

.form-note {
  margin-top: 14px;
  font-weight: 600;
  font-size: .92rem;
}

.form-note.ok {
  color: #2e7d32;
}

.form-note.err {
  color: #c62828;
}

.contact-map {
  margin-top: 54px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: saturate(.95);
}

/* =================================================================
   18. FOOTER
================================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .75);
  padding-top: 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 800;
}

.footer-brand small {
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--brand-orange);
}

.footer-about {
  font-size: .94rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-social a:hover {
  background: var(--brand-orange);
  transform: translateY(-3px);
}

.footer-head {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 3px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .75);
  font-size: .94rem;
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .92rem;
}

.footer-contact i {
  color: var(--brand-orange);
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, .75);
}

.footer-contact a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 48px;
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-bottom p {
  margin: 0;
  font-size: .88rem;
}

/* =================================================================
   19. FLOATING BUTTONS + BACK TO TOP
================================================================= */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  animation: pulse 2.4s infinite;
}

.float-whatsapp {
  left: 24px;
  background: #25D366;
}

.float-call {
  right: 24px;
  background: var(--grad-brand);
}

.float-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.float-call {
  animation: pulseOrange 2.4s infinite;
}

@keyframes pulseOrange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 125, 37, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(255, 125, 37, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 125, 37, 0);
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1039;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s ease;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-orange);
}

@media (max-width: 575px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    bottom: 20px;
  }

  .float-whatsapp {
    left: 16px;
  }

  .float-call {
    right: 16px;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
  }
}

/* =================================================================
   20. SCROLL-REVEAL ANIMATION
================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}