/* ===================================
   XING THAI ENTERPRISE — Shared CSS
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Icon sizing */
.fa-xs { font-size: 12px; }
.icon-sm { font-size: 14px; }
.icon-md { font-size: 18px; }
.icon-lg { font-size: 22px; }
.icon-xl { font-size: 28px; }
.icon-gold { color: var(--gold); }
.icon-purple { color: var(--purple); }
.icon-white { color: var(--white); }
.icon-green { color: #25D366; }

:root {
  --bg: #F2EBE0;
  --bg-section: #EDE4D6;
  --bg-dark: #1A0F2E;
  --bg-card-dark: #120B22;
  --purple: #6B21A8;
  --purple-dark: #3B0764;
  --purple-light: #9333EA;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --text: #1C1C1C;
  --text-light: #5A5A5A;
  --text-muted: #8A7A6A;
  --white: #FFFFFF;
  --border: rgba(201, 168, 76, 0.3);
  --radius: 16px;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(242, 235, 224, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 15, 46, 0.97);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-logo-text { color: var(--white); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(107,33,168,0.25);
}

.nav-logo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
  line-height: 1.2;
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-logo-text span {
  display: block;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--purple); }

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--purple-light) !important;
  transform: translateY(-1px);
}

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

.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.scrolled .nav-hamburger span { background: var(--white); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg-dark);
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

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

.nav-mobile a {
  color: var(--white);
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== PAGE WRAPPER ===== */
.page-content { padding-top: var(--nav-height); }

/* ===== SECTIONS ===== */
.section { padding: 80px 5%; }
.section-sm { padding: 60px 5%; }
.section-dark { background: var(--bg-dark); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h1, h2, h3 { font-family: 'Playfair Display', 'Noto Sans SC', serif; font-weight: 700; }

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); line-height: 1.3; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Noto Sans SC', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 33, 168, 0.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1ab755; transform: translateY(-2px); }

/* ===== ARCH FRAME ===== */
.arch-wrapper {
  position: relative;
  display: inline-block;
}

.arch-frame {
  width: 280px;
  height: 380px;
  border-radius: 140px 140px 16px 16px;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: var(--bg-section);
}

.arch-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.arch-frame-sm {
  width: 220px;
  height: 280px;
  border-radius: 110px 110px 12px 12px;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--bg-section);
}

.arch-frame-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 440px;
  line-height: 1.8;
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-dark);
  padding: 1.5rem 5%;
}

.trust-items {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.trust-item .icon {
  font-size: 18px;
  color: var(--gold);
}

/* ===== PAIN POINTS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.pain-item {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text);
  min-height: 72px;
  text-align: left;
}

.pain-item .emoji {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.pain-cta-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.pain-cta-text strong { color: var(--purple); }

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(107, 33, 168, 0.12);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.service-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.service-card-body a { font-size: 0.9rem; color: var(--purple); font-weight: 600; }
.service-card-body a:hover { text-decoration: underline; }

/* ===== SERVICES ARCH (Home) ===== */
.services-arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.service-arch-item {}

.service-arch-item h3 { font-size: 1.05rem; margin: 1rem 0 0.5rem; }
.service-arch-item p { font-size: 0.875rem; color: var(--text-light); }

.arch-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-section), var(--bg));
  font-size: 3.5rem;
}

/* ===== AJARN MENG CARD ===== */
.ajarn-card {
  background: var(--bg-card-dark);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  max-width: 980px;
  margin: 0 auto;
}

.ajarn-text h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.ajarn-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.ajarn-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 1.25rem 0 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.15);
  font-size: 0.95rem;
  color: var(--text);
}

.why-check {
  width: 24px; height: 24px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  font-size: 0.875rem;
}

.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.testimonial-text { color: var(--text); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.8rem; color: var(--text-light); }
.testimonial-tag { font-size: 0.75rem; color: var(--purple); font-weight: 500; margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--purple); }

.section-dark .faq-question { color: var(--white); }
.section-dark .faq-question:hover { color: var(--gold); }
.section-dark .faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--purple);
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--purple);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.section-dark .faq-answer-inner { color: rgba(255,255,255,0.65); }

/* FAQ Categories */
.faq-cat-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2.5rem 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 2rem; }

/* ===== PROCESS STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.step-item {
  padding: 24px 16px;
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.875rem; color: var(--text-light); }
.section-dark .step-item p { color: rgba(255,255,255,0.6); }
.section-dark .step-item h3 { color: var(--white); }

/* ===== SERVICES DETAIL ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.service-detail:last-child { border-bottom: none; }

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-content h2 { margin-bottom: 1rem; font-size: 1.6rem; }
.service-detail-content p { color: var(--text-light); line-height: 1.85; margin-bottom: 1.5rem; font-size: 0.975rem; }

.service-detail-img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

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

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(107, 33, 168, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.contact-value { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.contact-sub { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  border: 2px solid var(--border);
}

.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 80px 5% 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(107,33,168,0.06) 0%, transparent 100%);
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 5% 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-social { display: flex; gap: 12px; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
  cursor: pointer;
}

.social-btn:hover { background: var(--purple); }

.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.wa-float::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 5%;
    min-height: auto;
    gap: 2rem;
  }

  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-image { order: -1; }

  .arch-frame { width: 220px; height: 300px; border-radius: 110px 110px 12px 12px; }

  .services-arch-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .ajarn-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; justify-items: center; }
  .ajarn-badges { justify-content: center; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }
  .location-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; border-radius: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-items { gap: 1.5rem; }
}
