
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Brand-Harmonized Custom Scrollbar */
html {
  --scrollbar-thumb: var(--accent);
  --scrollbar-track: var(--primary);
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scroll-behavior: smooth;
}

@supports not (scrollbar-color: auto) {
  html::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  html::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 99px;
  }
  html::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
  }
}
.testimonial-slider-container {
  width: 100%;
  margin-top: 38px;
  position: relative;
  padding: 0 60px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(1, 30, 45, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, background-color, border-color;
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

@media (max-width: 768px) {
  .testimonial-slider-container {
    padding: 0;
  }
  .slider-arrow {
    display: none;
  }
}

.testimonial-scroller {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 10px 4px 28px;
  width: 100%;
  scrollbar-width: none;
}

.testimonial-scroller.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.testimonial-scroller::-webkit-scrollbar {
  display: none;
}

.testimonial-scroller .testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--primary);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 6px solid var(--accent);
  position: relative;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 42px 48px;
}

.testimonial-scroller .testimonial-card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.15);
  border-left-color: var(--accent-dark);
}

.testimonial-avatar-wrapper {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-avatar {
  width: 180px;
  height: 180px;
  border-radius: 24px;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 8px 24px rgba(223, 138, 27, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-scroller .testimonial-card:hover .testimonial-avatar {
  transform: scale(1.05);
  border-color: var(--accent-dark);
}

.testimonial-content {
  flex-grow: 1;
  text-align: left;
}

.testimonial-card p {
  font-style: italic;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.65;
  margin-bottom: 22px;
  margin-top: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  margin-top: 0;
  color: var(--white);
  font-weight: 800;
}

.testimonial-card span {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 700;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dots .dot:hover {
  background: var(--accent-dark);
}

.slider-dots .dot.active {
  background: var(--accent);
  transform: scale(1.25);
  box-shadow: 0 4px 10px rgba(223, 138, 27, 0.3);
}

@media (max-width: 768px) {
  .testimonial-scroller .testimonial-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }
  
  .testimonial-content {
    text-align: center;
  }
  
  .testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    border-width: 2px;
  }
}

:root {
  --primary: #011e2d;
  --secondary: #f2f1ed;
  --text: #56616a;
  --muted: #8f8f8f;
  --accent: #df8a1b;
  --accent-dark: #bf7310;
  --white: #ffffff;
  --line: rgba(1, 30, 45, 0.08);
  --shadow-sm: 0 4px 12px rgba(1, 30, 45, 0.02), 0 8px 24px rgba(1, 30, 45, 0.04);
  --shadow-md: 0 10px 30px rgba(1, 30, 45, 0.03), 0 20px 60px rgba(1, 30, 45, 0.06);
  --shadow-lg: 0 24px 60px rgba(1, 30, 45, 0.05), 0 48px 100px rgba(1, 30, 45, 0.1);
  --shadow: var(--shadow-md);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--secondary);
  background-image: 
    radial-gradient(at 0% 0%, rgba(223, 138, 27, 0.18) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(1, 30, 45, 0.12) 0px, transparent 50%),
    linear-gradient(rgba(1, 30, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 30, 45, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary);
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  font-weight: 800;
  color: #df8a1b;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.75rem);
  font-weight: 700;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1400px, calc(100% - 32px));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--primary);
  border: 1px solid rgba(1, 30, 45, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(1, 30, 45, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.shrunk {
  top: 8px;
  min-height: 62px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(1, 30, 45, 0.12);
  box-shadow: 0 16px 40px rgba(1, 30, 45, 0.08);
  padding: 6px 28px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
}

.brand img,
.nav-logo {
  display: block;
  max-height: 48px;
  width: auto;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 0.96rem;
}

.nav a:hover,
.phone-link:hover,
.footer a:hover {
  color: var(--accent);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  display: grid;
  min-width: 190px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(1, 30, 45, 0.08);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(1, 30, 45, 0.08);
  transform: translateY(15px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s;
  transform-origin: top center;
}

.nav-group:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.header-actions,
.phone-link {
  display: flex;
  gap: 12px;
  align-items: center;
}

.phone-link {
  color: var(--primary);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  color: var(--primary);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.dropdown-toggle-btn {
  display: none;
}

.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 28px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-dark));
  background-size: 200% auto;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(223, 138, 27, 0.15);
  cursor: pointer;
  will-change: transform, box-shadow;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-position 0.4s ease;
}

.btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 32px rgba(223, 138, 27, 0.32);
  background-position: right center;
}

.btn:active {
  transform: translateY(-1px) scale(0.97);
  box-shadow: 0 6px 14px rgba(223, 138, 27, 0.2);
}

.btn-small {
  min-height: 42px;
  padding: 12px 18px;
  font-size: 0.92rem;
}

.btn-secondary {
  color: var(--primary);
  background: transparent;
  border: 1.5px solid var(--primary);
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 32px rgba(1, 30, 45, 0.2);
}

.section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 34px;
  align-items: center;
  width: min(1400px, calc(100% - 32px));
  min-height: min(650px, calc(100vh - 120px));
  margin: 22px auto 0;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.02;
}

.hero h1 span,
.section-title h2 span,
.gradient-text {
  color: var(--accent);
}

.hero p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

/* Hero Page Load Entrance Animation */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero > div > *,
.hero > .photo-slot {
  opacity: 0;
  animation: heroFadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero > div > .kicker {
  animation-delay: 0.15s;
}

.hero > div > h1 {
  animation-delay: 0.3s;
}

.hero > div > p {
  animation-delay: 0.45s;
}

.hero > div > .hero-actions {
  animation-delay: 0.6s;
}

.hero > .photo-slot {
  animation-delay: 0.75s;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  width: min(1220px, calc(100% - 32px));
  margin: 26px auto 0;
  background: var(--line);
  border-radius: 22px;
}

.trust-strip > div {
  padding: 22px;
  background: var(--white);
  text-align: center;
}

.trust-strip strong {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #df8a1b;
  font-size: xxx-large;
  line-height: 1.2;
  margin-bottom: 6px;
}

/* Odometer/Ticker animation styles */
.ticker-container {
  display: inline-flex;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
}

.ticker-digit {
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
}

.ticker-lane {
  display: flex;
  flex-direction: column;
  transition: transform 2s cubic-bezier(0.1, 1, 0.1, 1);
  transform: translateY(0);
}

.ticker-lane span {
  display: block;
  height: 1.2em;
  line-height: 1.2;
}

.photo-slot {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(1, 30, 45, 0.06);
  border: 1px solid rgba(1, 30, 45, 0.04);
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-slot:hover img {
  transform: scale(1.05);
}

/* Specific proportional aspect-ratios to crop images beautifully across devices */
.hero .photo-slot {
  aspect-ratio: 1.15;
  min-height: auto;
}

.about .photo-slot {
  aspect-ratio: auto;
}

.about .photo-slot img {
  height: auto;
  display: block;
}

.gallery-item .photo-slot {
  aspect-ratio: 1.4;
  min-height: auto;
}

.event-card .photo-slot {
  aspect-ratio: 1.5;
  min-height: auto;
}

.cta-band .photo-slot {
  aspect-ratio: 1.25;
  min-height: auto;
}

.cta-band .photo-slot img {
  object-position: top center; /* Prevents founder's head from being cut off */
}

.contact-card .photo-slot {
  aspect-ratio: 1.15;
  min-height: auto;
}

.contact-card .photo-slot img {
  object-position: center 20%; /* Keeps faces centered and visible in contact card */
}

.photo-slot figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(1, 30, 45, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.photo-slot span,
.photo-slot small {
  display: block;
}

.photo-slot span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.photo-slot small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: center;
}

.card,
.course-card,
.program-card,
.testimonial-card,
.faq-item,
.event-card {
  background: var(--white);
  border: 1px solid rgba(1, 30, 45, 0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  will-change: transform, box-shadow;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover,
.program-card:hover,
.testimonial-card:hover,
.event-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(223, 138, 27, 0.22);
}

.program-card,
.testimonial-card,
.event-card,
.contact-card {
  padding: 32px;
}



.course-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
}

.flag {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  place-items: center;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(1, 30, 45, 0.08);
  border: 1px solid #011e2d;
}

.flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: auto 0 24px;
}

.course-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.course-card dd {
  margin: 0;
  color: var(--primary);
  font-weight: 800;
}

.read-more {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent-dark);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.read-more:hover {
  transform: translateX(4px);
}

.split-band,
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: center;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px;
  background: var(--primary);
  border-radius: 30px;
}

.split-band h2,
.split-band h3,
.split-band p,
.cta-band h2,
.cta-band p,
.cta-band li {
  color: var(--white);
}

.tick-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.tick-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tick-list span {
  color: var(--accent);
}

.methodology-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.methodology-container .photo-slot {
  width: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.methodology-container .photo-slot img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

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

.steps::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 48px;
  right: 48px;
  height: 2px;
  width: auto;
  background: linear-gradient(to right, var(--accent) 0%, rgba(223, 138, 27, 0.15) 100%);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(1, 30, 45, 0.04);
  box-shadow: 0 4px 20px rgba(1, 30, 45, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  align-items: flex-start;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 138, 27, 0.18);
  box-shadow: 0 10px 30px rgba(1, 30, 45, 0.06);
}

.step-icon-wrapper {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--secondary);
  box-shadow: 0 4px 10px rgba(1, 30, 45, 0.08);
  transition: all 0.3s ease;
  z-index: 2;
  flex-shrink: 0;
}

.step:hover .step-icon-wrapper {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.08);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-head p {
  margin-bottom: 0;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--primary);
  font: inherit;
  background: #f8f8f6;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.page-header {
  width: min(1400px, calc(100% - 32px));
  margin: 38px auto 0;
  padding: 70px 54px;
  background: var(--primary);
  border-radius: 32px;
}

.page-header h1,
.page-header p {
  max-width: 920px;
  color: var(--white);
}

.page-header p {
  font-size: 1.18rem;
}

.course-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 32px;
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item .photo-slot,
.event-card .photo-slot {
  min-height: auto;
  margin-bottom: 18px;
}

@media (max-width: 1200px) {
  .gallery-item {
    padding: 20px !important;
  }
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(1, 30, 45, 0.06);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(1, 30, 45, 0.02);
}

.faq-item:hover {
  border-color: rgba(223, 138, 27, 0.24);
  box-shadow: 0 12px 30px rgba(1, 30, 45, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  opacity: 0.65;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, opacity 0.3s ease;
}

.faq-toggle-icon .vertical-line {
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent);
}

.faq-item.active .faq-toggle-icon .vertical-line {
  transform: scaleY(0);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  padding: 0 28px;
  transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-answer-inner {
  padding-bottom: 22px;
}

.faq-answer b {
  color: var(--primary);
  font-weight: 700;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.contact-details-bottom {
  margin-top: 20px;
  padding: 48px 36px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(1, 30, 45, 0.05);
  border: 1px solid rgba(1, 30, 45, 0.04);
  text-align: center;
}

.contact-details-bottom h2 {
  margin-bottom: 34px;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 38px;
  text-align: left;
}



/* Partners Section Styles */
.partners-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 900px;
  margin: 38px auto 0;
}

.partner-logo-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(1, 30, 45, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 140px;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(1, 30, 45, 0.25);
  border-color: var(--accent);
}

.partner-logo-card img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partners-logos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .partner-logo-card {
    width: 100%;
    max-width: 100%;
    min-height: 120px;
  }
}

/* Team Section Styles */
.team-layout {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 48px;
}

/* Base Team Card */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(1, 30, 45, 0.05);
  box-shadow: 0 10px 30px rgba(1, 30, 45, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(223, 138, 27, 0.15);
}

/* Founder Featured Card Styles */
.founder-card {
  background: linear-gradient(135deg, #011e2d 0%, #032b40 100%);
  color: var(--white);
  border: 2px solid var(--accent);
  box-shadow: 0 20px 50px rgba(1, 30, 45, 0.15);
  padding: 42px;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(1, 30, 45, 0.25);
  border-color: #ffaa3b;
}

.founder-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(223, 138, 27, 0.3);
}

.founder-info {
  display: flex;
  gap: 32px;
  align-items: center;
}

.founder-card h3 {
  color: var(--accent) !important;
  font-size: 1.85rem;
  margin-bottom: 6px;
}

.founder-card .role {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.founder-card .bio {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 780px;
  margin: 0;
}

/* Trainer Avatars & Flags */
.trainer-avatar {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.trainer-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.founder-card .trainer-img {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(223, 138, 27, 0.25);
}

.founder-card .trainer-avatar {
  width: 120px;
  height: 120px;
}

.flag-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--white);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Trainers Grid */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trainer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.language-badge {
  background: var(--secondary);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.team-card .bio {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .founder-info {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .founder-card {
    padding: 32px 24px;
  }
  .founder-badge {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 16px;
    display: inline-block;
  }
  .trainers-grid {
    grid-template-columns: 1fr;
  }
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fafafa;
  border-radius: 20px;
  border: 1px solid rgba(1, 30, 45, 0.02);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  min-height: 100px;
}

.contact-item:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: rgba(1, 30, 45, 0.08);
  box-shadow: 0 12px 24px rgba(1, 30, 45, 0.06);
}

.contact-icon-wrapper {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(1, 30, 45, 0.04);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.contact-icon {
  display: block;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-text small {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
}

.contact-item-text span {
  font-weight: 600;
}

.contact-item-text a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.contact-item-text a:hover {
  color: var(--accent);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

.footer {
  width: min(1400px, calc(100% - 32px));
  margin: 70px auto 16px;
  padding: 42px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--primary);
  border-radius: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
  gap: 34px;
}

.footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.15rem;
}

.footer-logo-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-brand:hover .footer-logo-circle {
  transform: scale(1.05);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--white);
  text-align: left;
}

.footer-brand-text strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-text small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.4;
  transition: color 0.2s ease;
  text-align: left;
}

.footer-contact-link.align-start {
  align-items: flex-start;
}

.footer-contact-link svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contact-link:hover {
  color: var(--white);
}

.margin-top-xs {
  margin-top: 3px;
}

.footer a,
.address-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}

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

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials a:hover {
  transform: translateY(-3px) scale(1.08);
}

.socials a img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.socials a:hover img {
  transform: scale(1.15);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--primary);
    background: rgba(1, 30, 45, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(1, 30, 45, 0.06);
    cursor: pointer;
    justify-self: end;
    transition: all 0.3s ease;
  }

  .menu-toggle:hover {
    background: rgba(1, 30, 45, 0.08);
    color: var(--accent);
  }

  .nav,
  .header-actions {
    display: none;
  }

  .nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding: 20px 12px;
    background: var(--white);
    border-top: 1px solid rgba(1, 30, 45, 0.08);
    border-radius: 0 0 var(--radius) var(--radius);
    gap: 14px;
    margin-top: 8px;
  }

  .nav.open a {
    color: var(--primary);
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.3s ease, color 0.3s ease;
  }

  .nav.open a:hover {
    background: rgba(223, 138, 27, 0.08);
    color: var(--accent);
  }

  .nav-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-toggle-btn {
    display: grid !important;
    place-items: center;
    width: 38px;
    height: 38px;
    background: rgba(1, 30, 45, 0.04);
    border: 1px solid rgba(1, 30, 45, 0.06);
    border-radius: 8px;
    color: var(--primary);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .dropdown-toggle-btn:hover {
    background: rgba(223, 138, 27, 0.08);
    color: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(223, 138, 27, 0.15);
  }

  .dropdown-toggle-btn:active {
    transform: scale(0.94);
  }

  .dropdown-toggle-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent-dark);
  }

  .toggle-icon {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
  }

  .dropdown-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
  }

  .toggle-icon .vertical-line {
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  }

  .dropdown-toggle-btn.active .vertical-line {
    transform: scaleY(0);
    opacity: 0;
  }

  .nav-dropdown {
    position: static;
    display: grid !important; /* Always grid, animated by rows */
    grid-template-rows: 0fr;
    overflow: hidden;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    color: var(--primary);
    background: transparent;
    box-shadow: none;
    transform: none;
    width: 100%;
    transition: grid-template-rows 0.45s cubic-bezier(0.25, 1, 0.5, 1), padding 0.45s ease;
  }

  .nav-dropdown.open {
    grid-template-rows: 1fr;
    padding-top: 6px;
  }

  .nav-dropdown-inner {
    min-height: 0;
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .nav-dropdown a {
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    padding: 6px 12px !important;
    border-left: 2px solid rgba(223, 138, 27, 0.15) !important;
    border-radius: 0 !important;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-left-color 0.2s ease, color 0.2s ease;
  }

  .nav-dropdown.open a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered entry transitions for the list of courses */
  .nav-dropdown.open a:nth-child(1) { transition-delay: 0.04s; }
  .nav-dropdown.open a:nth-child(2) { transition-delay: 0.08s; }
  .nav-dropdown.open a:nth-child(3) { transition-delay: 0.12s; }
  .nav-dropdown.open a:nth-child(4) { transition-delay: 0.16s; }
  .nav-dropdown.open a:nth-child(5) { transition-delay: 0.20s; }
  .nav-dropdown.open a:nth-child(6) { transition-delay: 0.24s; }
  .nav-dropdown.open a:nth-child(7) { transition-delay: 0.28s; }

  .nav-dropdown a:hover {
    color: var(--accent) !important;
    border-left-color: var(--accent) !important;
    background: transparent !important;
  }

  .hero,
  .grid-2,
  .split-band,
  .cta-band,
  .methodology-container,
  .course-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .footer-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .steps::before {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 32px);
    margin: 16px auto 0;
    border-radius: var(--radius);
  }

  .brand small {
    display: none;
  }

  .hero,
  .page-header,
  .split-band,
  .cta-band,
  .footer {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
    padding: 32px 20px;
    border-radius: var(--radius);
  }

  .section {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
    padding: 48px 0;
  }

  .grid-2,
  .grid-3,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Trust Strip premium 2x2 individual cards grid */
  .trust-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .trust-strip > div {
    background: var(--white) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    padding: 20px 16px !important;
    box-shadow: 0 4px 12px rgba(1, 30, 45, 0.02) !important;
    text-align: center !important;
  }

  .trust-strip strong {
    font-size: 2.2rem !important;
    margin-bottom: 4px !important;
  }

  .trust-strip span {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--muted) !important;
  }

  /* 2-column compact grid for Programs and Level Assessment cards */
  #programList,
  #levelCards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .program-card {
    padding: 16px !important;
    border-radius: var(--radius-sm) !important;
  }

  .program-card h3 {
    font-size: 0.98rem !important;
    margin-bottom: 6px !important;
    line-height: 1.35 !important;
  }

  .program-card p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .program-card .button-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-top: 10px !important;
  }

  .program-card .btn-small {
    width: 100% !important;
    text-align: center !important;
    font-size: 0.75rem !important;
    padding: 6px 10px !important;
  }

  /* Compact Course Cards sizing */
  .course-card {
    padding: 18px !important;
    border-radius: var(--radius-sm) !important;
  }

  .course-card .flag {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 12px !important;
  }

  .course-card h3 {
    font-size: 1.15rem !important;
    margin-bottom: 6px !important;
  }

  .course-card p {
    font-size: 0.84rem !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
  }

  .course-card dl {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
  }

  .course-card dt,
  .course-card dd {
    font-size: 0.8rem !important;
  }

  /* Methodology process map mobile sizing */
  .steps {
    grid-template-columns: 1fr !important;
  }

  .steps::before {
    display: none !important;
  }

  .step {
    display: grid !important;
    grid-template-columns: 38px 1fr !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: var(--radius-sm) !important;
  }

  .step-icon-wrapper {
    width: 38px !important;
    height: 38px !important;
    border-width: 2px !important;
  }

  .step-icon-wrapper svg {
    width: 16px !important;
    height: 16px !important;
  }

  .step-content h3 {
    font-size: 0.98rem !important;
    margin-bottom: 4px !important;
  }

  .step-content p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }

  /* Testimonials horizontal-profile grid */
  .testimonial-scroller .testimonial-card {
    display: grid !important;
    grid-template-areas: 
      "avatar meta"
      "content content" !important;
    grid-template-columns: auto 1fr !important;
    gap: 14px !important;
    padding: 22px 18px !important;
    border-radius: var(--radius-sm) !important;
    align-items: center !important;
    border-left-width: 4px !important;
  }

  .testimonial-avatar-wrapper {
    grid-area: avatar !important;
  }

  .testimonial-avatar {
    width: 70px !important;
    height: 70px !important;
    border-radius: 12px !important;
    border-width: 2px !important;
    box-shadow: 0 4px 12px rgba(223, 138, 27, 0.15) !important;
  }

  .testimonial-content {
    grid-area: content !important;
    text-align: left !important;
  }

  .testimonial-card p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
    margin-top: 8px !important;
    text-align: left !important;
  }

  .testimonial-meta {
    grid-area: meta !important;
    text-align: left !important;
  }

  .testimonial-card h3 {
    font-size: 1.05rem !important;
    margin-bottom: 2px !important;
  }

  .testimonial-card span {
    font-size: 0.78rem !important;
  }

  .testimonial-scroller .testimonial-card::before {
    content: "“" !important;
    position: absolute !important;
    top: 6px !important;
    right: 14px !important;
    font-size: 3rem !important;
    font-family: Georgia, serif !important;
    color: rgba(223, 138, 27, 0.12) !important;
    line-height: 1 !important;
  }

  .testimonial-slider-container {
    padding: 0 38px !important;
  }

  .slider-arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
  }

  /* Blue CTA Band mobile visual symmetry */
  .cta-band {
    padding: 40px 24px !important;
    gap: 24px !important;
  }

  .cta-band > div {
    margin-bottom: 8px !important;
  }

  .cta-band h2 {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
    margin-top: 10px !important;
    margin-bottom: 12px !important;
  }

  .cta-band p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    margin-bottom: 18px !important;
  }

  /* Say Hello 2x2 Centered Badge Cards */
  .contact-details-bottom {
    padding: 28px 18px !important;
    border-radius: var(--radius-sm) !important;
  }

  .contact-details-bottom h2 {
    font-size: 1.45rem !important;
    margin-bottom: 20px !important;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .contact-item {
    padding: 14px 10px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    border-radius: 12px !important;
    min-height: auto !important;
  }

  .contact-icon-wrapper {
    width: 36px !important;
    height: 36px !important;
  }

  .contact-icon {
    width: 16px !important;
    height: 16px !important;
  }

  .contact-item-text {
    align-items: center !important;
    text-align: center !important;
    font-size: 0.82rem !important;
    gap: 4px !important;
  }

  .contact-item-text small {
    font-size: 0.68rem !important;
  }

  .contact-item-text a,
  .contact-item-text span {
    font-size: 0.82rem !important;
  }
}

/* Fullscreen Gallery Lightbox Slider CSS */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 30, 45, 0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 38px;
  line-height: 1;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100001;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100001;
}

.lightbox-arrow:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.lightbox-arrow.prev {
  left: 32px;
}

.lightbox-arrow.next {
  right: 32px;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(88vw, 1000px);
  max-height: 78vh;
  z-index: 100000;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-overlay.active .lightbox-image {
  opacity: 1;
  transform: scale(1);
}

.lightbox-counter {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lightbox-dots {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  z-index: 100001;
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.lightbox-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--accent);
}

@media (max-width: 768px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .lightbox-arrow.prev {
    left: 16px;
  }
  .lightbox-arrow.next {
    right: 16px;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
  }
}

/* YouTube Responsive Section CSS */
.youtube-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(1, 30, 45, 0.08);
  border: 1px solid rgba(1, 30, 45, 0.04);
  cursor: pointer;
}

.youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.youtube-video-container:hover .video-thumbnail {
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(223, 138, 27, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.youtube-video-container:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
  color: var(--accent);
}

.youtube-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.youtube-section .tick-list {
  margin-top: 20px;
}

/* Contact Options Grid & Cards CSS */
.contact-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.contact-method-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(1, 30, 45, 0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: var(--text);
  position: relative;
}

.contact-method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 30, 45, 0.1);
}

.contact-method-card.whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.4);
}

.contact-method-card.phone:hover {
  border-color: rgba(223, 138, 27, 0.4);
}

.contact-method-card .method-icon-wrapper {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.contact-method-card.whatsapp .method-icon-wrapper {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-method-card.whatsapp:hover .method-icon-wrapper {
  background: #25d366;
  color: var(--white);
  transform: scale(1.05);
}

.contact-method-card.phone .method-icon-wrapper {
  background: rgba(223, 138, 27, 0.1);
  color: var(--accent);
}

.contact-method-card.phone:hover .method-icon-wrapper {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.contact-method-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
  transition: color 0.3s;
}

.contact-method-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact-method-card .action-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
}

.contact-method-card.whatsapp:hover .action-link {
  color: #25d366;
}

.contact-method-card.phone:hover .action-link {
  color: var(--accent);
}

@media (max-width: 720px) {
  .contact-methods-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .contact-method-card {
    padding: 24px !important;
  }
}
