@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans-light.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans-medium.woff2') format('woff2');
}
*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
:root {
  --purple-deep: #3C2068;
  --purple-mid: #6B3FA0;
  --purple-soft: #C9A9E9;
  --purple-pale: #F3EDF9;
  --cream: #FAF8F5;
  --ink: #1A1320;
  --ink-light: #5A4E6A;
  --gold: #C8973A;
  --gold-light: #F5E8CF;
  --white: #FFFFFF;
  --radius: 2px;
  --radius-lg: 8px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
body, p, li, td {
  font-size: 16px;
  line-height: 1.75;
}
p {
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}
a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
.fade-in {
  opacity: 1; transform: none;
}

}
.card, .service-card, .credential {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .service-card:hover, .credential:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.btn-primary, .btn-outline {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary:hover, .btn-outline:hover {
  transform: scale(1.02);
}
/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float svg {
  width: 28px; height: 28px; fill: white;
}
/* ─── TOPBAR ─── */
.topbar {
  background: var(--purple-deep);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 10px 24px;
  letter-spacing: 0.01em;
}
.topbar a {
  color: rgba(255,255,255,0.75); text-decoration: none;
}
.topbar a:hover {
  color: var(--gold);
}
/* ─── NAVBAR ─── */
nav {
  background: var(--white);
  border-bottom: 1px solid rgba(107,63,160,0.12);
  position: sticky; top: 0; z-index: 100;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--purple-deep);
  text-decoration: none;
  line-height: 1.2;
}
.nav-logo span {
  display: block; font-size: 11px; font-family: 'DM Sans', sans-serif; color: var(--ink-light); font-style: italic; letter-spacing: 0.05em;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger svg {
  width: 24px; height: 24px; stroke: var(--purple-deep);
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 15px; color: var(--ink-light); text-decoration: none;
  letter-spacing: 0.02em; font-weight: 500;
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.25s;
}
.nav-links a:hover {
  color: var(--purple-deep);
}
.nav-links a:hover::after {
  width: 100%;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid rgba(107,63,160,0.12);
  min-width: 200px; padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  z-index: 100; border-radius: var(--radius);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  display: block; padding: 8px 20px; font-size: 14px; color: var(--ink-light);
}
.dropdown-menu a:hover {
  background: var(--purple-pale); color: var(--purple-deep);
}
.dropdown-menu a::after {
  display: none;
}
/* ─── HERO ─── */
.hero {
  background: var(--purple-deep);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 8vw;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,233,0.15);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -120px; left: 30%;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,233,0.08);
  pointer-events: none;
}
.hero-text {
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic; color: var(--purple-soft);
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  max-width: 500px; margin-bottom: 40px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold); color: var(--ink);
  padding: 14px 30px; font-weight: 500;
  border: none; border-radius: var(--radius); cursor: pointer;
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  background: #d9a840;
}
.btn-outline {
  background: transparent; color: white;
  padding: 14px 30px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.35); border-radius: var(--radius);
  cursor: pointer; letter-spacing: 0.03em;
}
.btn-outline:hover {
  border-color: white; background: rgba(255,255,255,0.08);
}
.hero-visual {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 20px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,233,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: white; margin-bottom: 6px;
}
.hero-card-sub {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.6;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: rgba(201,169,233,0.15);
  border: 1px solid rgba(201,169,233,0.15);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-cell {
  background: rgba(255,255,255,0.04);
  padding: 22px 20px; text-align: center;
  backdrop-filter: blur(4px);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--gold); display: block; line-height: 1;
}
.stat-label {
  font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; margin-top: 6px; display: block;
}
/* ─── SECTION BASE ─── */
section, .section {
  padding: 100px 8vw;
}
.section-label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--purple-deep);
}
h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  margin-bottom: 10px; font-size: 24px;
}
.section-intro {
  color: var(--ink-light); max-width: 600px;
}
/* ─── PAGE HERO ─── */
.page-hero {
  background-color: var(--purple-deep);
  background-size: cover;
  background-position: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: rgba(60, 32, 104, 0.8);
}
.page-hero-inner {
  position: relative; z-index: 1;
  padding: 0 8vw;
  color: white;
}
.breadcrumb {
  font-size: 14px; color: var(--gold); margin-bottom: 12px;
}
.breadcrumb a {
  color: var(--purple-soft); text-decoration: none;
}
.breadcrumb a:hover {
  color: white;
}
.page-hero-inner h1 {
  color: white; font-size: 40px; margin-bottom: 0;
}
/* ─── ABOUT SECTION ─── */
.about {
  background: white;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start;
  margin-top: 60px;
}
.about-text p {
  color: var(--ink-light); margin-bottom: 18px;
}
.about-text p strong {
  color: var(--ink); font-weight: 500;
}
.about-credentials {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.credential {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid rgba(107,63,160,0.12);
  border-radius: var(--radius-lg);
  background: white;
}
.credential-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple-mid); flex-shrink: 0; margin-top: 5px;
}
.credential-text {
  line-height: 1.6; color: var(--ink-light);
}
.credential-text strong {
  color: var(--ink); font-weight: 500;
}
.about-visual {
  position: relative;
}
.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--purple-deep);
  border: 1px solid rgba(107,63,160,0.2);
}
.video-wrapper iframe {
  width: 100%; height: 100%; border: none;
}
.about-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  max-width: 220px;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: var(--gold); line-height: 1;
}
.about-badge-text {
  font-size: 14px; color: var(--ink-light); margin-top: 4px;
}
.timeline {
  display: flex; flex-direction: column; gap: 20px;
  border-left: 2px solid var(--purple-soft);
  padding-left: 20px; margin-top: 20px;
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: ''; position: absolute; left: -27px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--purple-mid);
}
.timeline-title {
  font-weight: 500; color: var(--ink); margin-bottom: 4px;
}
.timeline-desc {
  color: var(--ink-light);
}
.list-accent {
  list-style: none;
  border-left: 3px solid var(--gold);
  padding-left: 15px;
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 15px;
}
.list-accent li {
  color: var(--ink-light);
}
.list-columns {
  list-style: none;
  columns: 2;
  column-gap: 40px;
  margin-top: 20px;
}
.list-columns li {
  margin-bottom: 10px; color: var(--ink-light);
}
.bg-cream {
  background: var(--cream);
}
.bg-purple-pale {
  background: var(--purple-pale);
}
.border-purple-soft {
  border-color: var(--purple-soft);
}
.pad-y-60 {
  padding-top: 60px; padding-bottom: 60px;
}
.align-start {
  align-items: flex-start;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.gap-60 {
  gap: 60px;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mx-auto {
  margin-left: auto; margin-right: auto;
}
.text-center {
  text-align: center;
}
.pb-20 {
  padding-bottom: 20px;
}
.font-20 {
  font-size: 20px;
}
.color-purple-deep {
  color: var(--purple-deep);
}
.grid-cols-1 {
  grid-template-columns: 1fr;
}
.grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: stretch;
  gap: 30px;
}
.speciality-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.speciality-number {
  width: 32px; height: 32px;
  background: var(--purple-deep);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.icon-large {
  width: 48px; height: 48px; color: var(--purple-mid); margin-bottom: 15px;
}
/* ─── SERVICES ─── */
.services {
  background: var(--cream);
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; flex-wrap: wrap; gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(107,63,160,0.1);
  border: 1px solid rgba(107,63,160,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: white;
  padding: 36px 32px;
  position: relative;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--purple-mid);
  transition: width 0.3s;
}
.service-card:hover::before {
  width: 100%;
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--purple-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-mid);
  font-size: 22px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--purple-deep); margin-bottom: 10px;
}
.service-card p {
  color: var(--ink-light);
}
.service-more {
  color: var(--purple-mid);
  font-weight: 500; display: inline-block; margin-top: 14px;
  letter-spacing: 0.02em;
}
.service-more:hover {
  text-decoration: underline;
}
/* ─── FAQ ─── */
.faq {
  background: var(--purple-deep); color: white;
}
.faq h2 {
  color: white;
}
.faq .section-label {
  color: var(--gold);
}
.faq .section-label::before {
  background: var(--gold);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px;
  margin-top: 60px;
}
.faq-item {
  border-bottom: 1px solid rgba(201,169,233,0.2);
  padding-bottom: 32px;
}
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--purple-soft);
  margin-bottom: 14px; line-height: 1.4;
  cursor: pointer;
}
.faq-a {
  color: rgba(255,255,255,0.6);
}
.faq-cta {
  text-align: center; margin-top: 60px;
}
.faq-cta a {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  letter-spacing: 0.02em;
}
.faq-accordion {
  border-bottom: 1px solid rgba(60, 32, 104, 0.1);
  padding: 20px 0;
}
.faq-accordion-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-accordion-title::-webkit-details-marker {
  display: none;
}
.faq-accordion-title::after {
  content: '+'; font-size: 24px; font-weight: 400; color: var(--purple-mid);
  transition: transform 0.3s ease;
}
details[open] .faq-accordion-title::after {
  transform: rotate(45deg);
}
.faq-accordion-content {
  padding-top: 15px; color: var(--ink-light);
}
/* ─── TESTIMONIALS ─── */
.testimonials {
  background: white;
}
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px;
}
.testimonial-card {
  border: 1px solid rgba(107,63,160,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  background: white;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 80px; color: var(--purple-pale);
  line-height: 1;
}
.testimonial-text {
  color: var(--ink-light); margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 500; color: var(--ink);
}
.testimonial-role {
  color: var(--ink-light); margin-top: 2px;
}
/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s, border-color 0.2s;
}
.footer-socials a svg {
  width: 18px;
  height: 18px;
}
.footer-socials a:hover {
  background: var(--purple-mid);
  border-color: var(--purple-mid);
}
.footer-row-2 {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 5vw;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}
.footer-row-2 a {
  color: rgba(255,255,255,0.35);
}
.footer-row-2 a:hover {
  color: white;
}
/* ─── GALLERY STRIP ─── */
.gallery-strip {
  background: var(--cream); overflow: hidden; padding: 80px 0;
}
.gallery-strip-header {
  padding: 0 8vw; margin-bottom: 40px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.gallery-row {
  display: flex; gap: 16px;
  padding: 0 8vw;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-row::-webkit-scrollbar {
  display: none;
}
.gallery-img {
  flex-shrink: 0;
  width: 250px; height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--purple-pale);
  border: 1px solid rgba(107,63,160,0.1);
  display: flex; align-items: center; justify-content: center;
}
.gallery-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--purple-mid);
  text-align: center; padding: 20px;
}
/* ─── TABS & FORMS ─── */
.tab-nav {
  display: flex; gap: 10px; margin-bottom: 30px;
  border-bottom: 1px solid rgba(107,63,160,0.2);
}
.tab-nav button {
  background: none; border: none; padding: 12px 24px;
  font-weight: 500; color: var(--ink-light);
  cursor: pointer; position: relative;
}
.tab-nav button.active {
  color: var(--purple-deep);
}
.tab-nav button.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; width: 100%;
  height: 2px; background: var(--purple-deep);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block; font-weight: 500; margin-bottom: 8px; color: var(--ink-light);
}
input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(107,63,160,0.2); border-radius: var(--radius);
  font-family: inherit; font-size: 16px;
  outline: none; transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple-deep);
}
.submit-btn {
  background: var(--purple-deep); color: white;
  padding: 14px 32px; font-weight: 500;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: background 0.2s; width: 100%;
}
.submit-btn:hover {
  background: var(--purple-mid);
}
.alert-success {
  background: #d4edda; color: #155724;
  padding: 15px; border-radius: 4px; margin-bottom: 20px;
}
.alert-error {
  background: #f8d7da; color: #721c24;
  padding: 15px; border-radius: 4px; margin-bottom: 20px;
}
.hidden {
  display: none !important;
}
/* ─── CARD UTILITY ─── */
.card {
  background: white;
  border: 1px solid rgba(107,63,160,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
body, p, li, td {
  font-size: 14px;
}
.hamburger {
  display: block;
}
.nav-links {
  display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 20px 5vw;
    border-bottom: 1px solid rgba(107,63,160,0.12);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.nav-links.active {
  display: flex;
}
.dropdown-menu {
  position: static; box-shadow: none; border: none; background: var(--purple-pale); width: 100%; margin-top: 10px;
}
.hero {
  grid-template-columns: 1fr; min-height: auto; padding: 70px 6vw;
}
.hero-visual {
  display: none;
}
.about-grid {
  grid-template-columns: 1fr; gap: 48px;
}
.about-badge {
  position: static; max-width: 100%; margin-top: 20px;
}
.faq-grid {
  grid-template-columns: 1fr;
}
.testimonials-grid {
  grid-template-columns: 1fr;
}
section, .section {
  padding: 70px 6vw;
}
.list-columns {
  columns: 1;
}

}
 / *   - - -   N E W   C O M P O N E N T S   - - -   * / 
 . c a s e - s t u d i e s - c o n t a i n e r    {
   
     m a x - w i d t h :   9 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     g a p :   3 2 p x ; 
 
}
 
 . c a s e - s t u d y - c a r d    {
   
     b a c k g r o u n d :   w h i t e ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 1 0 7 , 6 3 , 1 6 0 , 0 . 1 5 ) ; 
     b o r d e r - r a d i u s :   8 p x ; 
     p a d d i n g :   4 0 p x ; 
 
}
 
 . c a s e - s t u d y - h e a d e r - a r e a    {
   
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 6 p x ; 
     m a r g i n - b o t t o m :   2 0 p x ; 
 
}
 
 . c a s e - s t u d y - t a g - l a b e l    {
   
     f o n t - s i z e :   1 3 p x ; 
     f o n t - w e i g h t :   6 0 0 ; 
     c o l o r :   v a r ( - - p u r p l e - m i d ) ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 1 e m ; 
 
}
 
 . c a s e - s t u d y - b a d g e    {
   
     w i d t h :   3 2 p x ; 
     h e i g h t :   3 2 p x ; 
     b a c k g r o u n d :   v a r ( - - p u r p l e - m i d ) ; 
     c o l o r :   w h i t e ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     f o n t - w e i g h t :   b o l d ; 
     f o n t - s i z e :   1 4 p x ; 
 
}
 
 . c a s e - s t u d y - t i t l e    {
   
     f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ; 
     f o n t - s i z e :   2 2 p x ; 
     c o l o r :   v a r ( - - p u r p l e - d e e p ) ; 
     m a r g i n - b o t t o m :   1 6 p x ; 
 
}
 
 . c a s e - s t u d y - d i v i d e r    {
   
     b o r d e r :   n o n e ; 
     b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 1 0 7 , 6 3 , 1 6 0 , 0 . 1 5 ) ; 
     m a r g i n :   2 0 p x   0 ; 
 
}
 
 . c a s e - s t u d y - b o d y    {
   
     f o n t - s i z e :   1 8 p x ; 
     c o l o r :   v a r ( - - i n k - l i g h t ) ; 
     l i n e - h e i g h t :   1 . 8 ; 
 
}
 
 
 . t e s t i m o n i a l s - m a s o n r y    {
   
     c o l u m n - c o u n t :   2 ; 
     c o l u m n - g a p :   2 8 p x ; 
 
}

 
 @ m e d i a   ( m a x - w i d t h :   9 0 0 p x )   {
 
     . t e s t i m o n i a l s - m a s o n r y    {
     c o l u m n - c o u n t :   1 ;   
}

 
 }
 
 . t e s t i m o n i a l - c a r d    {
   
     b a c k g r o u n d :   w h i t e ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 1 0 7 , 6 3 , 1 6 0 , 0 . 1 2 ) ; 
     b o r d e r - r a d i u s :   8 p x ; 
     p a d d i n g :   3 6 p x ; 
     b r e a k - i n s i d e :   a v o i d ; 
     m a r g i n - b o t t o m :   2 8 p x ; 
     p o s i t i o n :   r e l a t i v e ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ; 
 
}
 
 . t e s t i m o n i a l - c a r d : h o v e r    {
   
     t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
     b o x - s h a d o w :   0   1 2 p x   2 4 p x   r g b a ( 1 0 7 , 6 3 , 1 6 0 , 0 . 0 8 ) ; 
 
}
 
 . t e s t i m o n i a l - q u o t e    {
   
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   2 0 p x ; 
     r i g h t :   2 8 p x ; 
     f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ; 
     f o n t - s i z e :   7 2 p x ; 
     c o l o r :   v a r ( - - p u r p l e - p a l e ) ; 
     l i n e - h e i g h t :   1 ; 
 
}
 
 . t e s t i m o n i a l - t e x t    {
   
     f o n t - s i z e :   1 6 p x ; 
     c o l o r :   v a r ( - - i n k - l i g h t ) ; 
     l i n e - h e i g h t :   1 . 8 ; 
     f o n t - s t y l e :   i t a l i c ; 
     m a r g i n - b o t t o m :   2 4 p x ; 
 
}
 
 . t e s t i m o n i a l - d i v i d e r    {
   
     b o r d e r :   n o n e ; 
     b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 1 0 7 , 6 3 , 1 6 0 , 0 . 1 2 ) ; 
     m a r g i n :   2 0 p x   0 ; 
 
}
 
 . t e s t i m o n i a l - a u t h o r    {
   
     f o n t - w e i g h t :   b o l d ; 
     f o n t - s i z e :   1 5 p x ; 
     c o l o r :   v a r ( - - i n k ) ; 
 
}
 
 . t e s t i m o n i a l - r o l e    {
   
     f o n t - s i z e :   1 3 p x ; 
     c o l o r :   v a r ( - - i n k - l i g h t ) ; 
     m a r g i n - t o p :   4 p x ; 
 
}
 
 
 . s e r v i c e - f u l l - w i d t h    {
   
     b a c k g r o u n d :   v a r ( - - p u r p l e - p a l e ) ; 
     p a d d i n g :   4 8 p x   8 v w ; 
     t e x t - a l i g n :   c e n t e r ; 
 
}
 
 . s e r v i c e - f u l l - w i d t h - c o n t e n t    {
   
     m a x - w i d t h :   7 2 0 p x ; 
     m a r g i n :   0   a u t o ; 
 
}
 
 
 . i n s t a - c t a - s e c t i o n    {
   
     b a c k g r o u n d :   v a r ( - - p u r p l e - p a l e ) ; 
     p a d d i n g :   6 0 p x   5 v w ; 
     t e x t - a l i g n :   c e n t e r ; 
 
}
 
 . i n s t a - c t a - t i t l e    {
   
     f o n t - f a m i l y :   ' P l a y f a i r   D i s p l a y ' ,   s e r i f ; 
     f o n t - s i z e :   2 4 p x ; 
     c o l o r :   v a r ( - - p u r p l e - d e e p ) ; 
     m a r g i n :   1 6 p x   0   8 p x ; 
 
}
 
 . i n s t a - c t a - h a n d l e    {
   
     f o n t - s i z e :   1 6 p x ; 
     c o l o r :   v a r ( - - g o l d ) ; 
     m a r g i n - b o t t o m :   2 4 p x ; 
     d i s p l a y :   b l o c k ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
}
 
 . i n s t a - c t a - b t n    {
   
     d i s p l a y :   i n l i n e - b l o c k ; 
     b a c k g r o u n d :   w h i t e ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - g o l d ) ; 
     c o l o r :   v a r ( - - g o l d ) ; 
     p a d d i n g :   1 2 p x   3 2 p x ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
     f o n t - w e i g h t :   5 0 0 ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     t r a n s i t i o n :   a l l   0 . 2 s ; 
 
}
 
 . i n s t a - c t a - b t n : h o v e r    {
   
     b a c k g r o u n d :   v a r ( - - g o l d ) ; 
     c o l o r :   w h i t e ; 
 
}
 
 
 
 
.items-stretch {
  align-items: stretch;
}

@media (max-width: 900px) {

}
.services-paired-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 60px 0;
  align-items: stretch;
}
.paired-service-card {
  background: white;
  border: 1px solid rgba(107,63,160,0.12);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.paired-service-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--purple-deep);
  margin-top: 16px;
}
.paired-service-body {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.6;
}
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.final-cta-band {
  background: var(--purple-deep);
  padding: 60px 8vw;
  text-align: center;
}
.final-cta-content {
  margin: 0 auto;
}
.final-cta-content p {
  color: white;
  font-size: 16px;
  line-height: 1.6;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn-outline.outline-white {
  border-color: white;
  color: white;
}
.btn-outline.outline-white:hover {
  background: white;
  color: var(--purple-deep);
}

@media (max-width: 900px) {
.services-paired-grid {
  grid-template-columns: 1fr;
}
.highlights-grid {
  grid-template-columns: 1fr;
}

}
details > summary::-webkit-details-marker {
  display: none;
}
details[open] > summary .accordion-icon {
  transform: rotate(45deg);
}
.accordion-icon {
  transition: transform 0.3s ease;
}
.case-body-inner {
  padding: 28px 40px;
  background: var(--purple-pale);
  border-top: 3px solid var(--purple-mid);
}
.case-image-wrap {
  margin-bottom: 20px;
}
.case-image-wrap img {
  max-width: 420px;
  width: 100%;
  border-radius: 8px;
  display: block;
}
.case-image-caption {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 6px;
  font-style: italic;
}
.case-text {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 100%;
}
.case-body-inner > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.case-text p {
  margin-bottom: 10px;
}
.case-text p:last-child {
  margin-bottom: 0;
}
.about-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 
    "left video"
    "left right";
  column-gap: 60px;
  row-gap: 0;
  align-items: start;
}
.about-text-left {
  grid-area: left;
}
.about-video {
  grid-area: video;
}
.about-text-right {
  grid-area: right;
}

@media (max-width: 900px) {
.about-grid-new {
  grid-template-columns: 1fr;
    grid-template-areas: 
      "video"
      "left"
      "right";
    gap: 20px;
}

}
.align-stretch {
  align-items: stretch !important;
}
.testimonial-masonry {
  column-count: 2;
  column-gap: 28px;
}

@media (max-width: 900px) {
.testimonial-masonry {
  column-count: 1;
}

}
.testimonial-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid rgba(107,63,160,0.12);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(60,32,104,0.06);
}
.testimonial-card .quote-mark {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--purple-soft);
  opacity: 0.3;
  pointer-events: none;
}
.testimonial-card .testimonial-body {
  font-style: italic;
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.testimonial-card .testimonial-divider {
  height: 1px;
  background: rgba(107,63,160,0.1);
  margin: 24px 0;
}
.testimonial-card .author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.testimonial-card .author-title {
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 4px;
  line-height: 1.5;
}
/* --- Responsiveness Audit Fixes --- */


body {
  font-size: 16px !important;
    overflow-x: hidden !important;
}

@media (max-width: 900px) {
body {
  font-size: 14px !important;
}

}
img {
  max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
.footer {
  text-align: center !important;
}
.footer .widget {
  text-align: center !important;
}
.footer ul {
  display: inline-block;
        text-align: left;
}

}
.whatsapp {
  position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999 !important;
}

@media (max-width: 900px) {
.row {
  display: block !important;
}
nav ul.nav-links {
  
}

}


@media (max-width: 900px) {
.tab-nav {
  display: flex;
        flex-direction: column;
        gap: 10px;
}
.tab-btn {
  width: 100%;
        border-radius: 8px !important;
}

}
