@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --primary:       #6A1B9A;
  --primary-dark:  #4A1070;
  --primary-hover: #7B1FA2;
  --accent:        #27AE60;
  --accent-dark:   #1E8449;
  --accent-light:  #2ECC71;
  --bg:            #F8F9FA;
  --card:          #FFFFFF;
  --text:          #222222;
  --text-light:    #555555;
  --text-muted:    #888888;
  --border:        #E5E7EB;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
  --shadow-p:      0 8px 30px rgba(106,27,154,0.22);
  --shadow-g:      0 8px 30px rgba(39,174,96,0.28);
  --r-sm:          8px;
  --r:             16px;
  --r-lg:          24px;
  --r-full:        999px;
  --t:             all 0.30s cubic-bezier(0.4,0,0.2,1);
  --max-w:         1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.22;
  font-weight: 700;
}
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 580px;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .section-sub { margin: 0 auto; }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--white { background: var(--card); }
.section--gray  { background: var(--bg); }
.section--dark  { background: #111118; }
.section--purple {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--green {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-g);
}
.btn--green:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(39,174,96,0.38);
  color: #fff;
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--purple {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-p);
}
.btn--purple:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  color: #fff;
}
.btn--outline-purple {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-purple:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.btn--white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.24);
  color: var(--accent-dark);
}
.btn--lg { padding: 18px 44px; font-size: 1.02rem; }

/* === FADE-IN SCROLL ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }
.delay-6 { transition-delay: 0.60s; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--t);
}
.nav--solid {
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 14px 0;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  transition: var(--t);
}
.nav--solid .nav__logo-text { color: var(--text); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--t);
  border-radius: 2px;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav--solid .nav__links a { color: var(--text-light); }
.nav--solid .nav__links a:hover { color: var(--text); }
.nav__cta .btn--green { padding: 10px 22px; font-size: 0.85rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}
.nav--solid .nav__toggle span { background: var(--text); }

/* mobile open state */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  justify-content: center;
  align-items: center;
  gap: 36px;
  z-index: 999;
}
.nav--open .nav__links a { font-size: 1.4rem; color: #fff; }
.nav--open .nav__cta { display: none; }
.nav--open .nav__toggle span { background: #fff !important; }
.nav--open .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('GDW1.jpg');
  background-size: cover;
  background-position: center 30%;
  animation: heroScale 18s ease-out forwards;
  will-change: transform;
}
@keyframes heroScale {
  from { transform: scale(1.10); }
  to   { transform: scale(1.00); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,5,25,0.35) 0%, transparent 40%),
    linear-gradient(135deg, rgba(74,16,112,0.82) 0%, rgba(30,8,52,0.68) 55%, rgba(10,5,25,0.60) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 160px 24px 100px;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero__badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(1.4); }
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero__title em {
  font-style: normal;
  color: var(--accent-light);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 42px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.hero__feature .ck {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: #fff;
  flex-shrink: 0;
  font-weight: 900;
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.9s both;
}
.hero__scroll-arrow {
  color: var(--accent);
  font-size: 1.4rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:none; }
}

/* === TRUST BAR === */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.trust-item .ti-icon { font-size: 1.1rem; color: var(--accent); }
.trust-item .stars { color: #F59E0B; letter-spacing: 1px; }
.trust-item strong { color: var(--text); }

/* === WHY CHOOSE === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(106,27,154,0.15);
}
.why-card__icon {
  width: 54px; height: 54px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(106,27,154,0.08), rgba(39,174,96,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.why-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--card);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card__img-wrap { height: 215px; overflow: hidden; }
.svc-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.svc-card:hover .svc-card__img { transform: scale(1.06); }
.svc-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.svc-card__title { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}
.svc-card .btn { align-self: flex-start; padding: 10px 22px; font-size: 0.84rem; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 40px 32px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  position: relative;
}
.price-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-p);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.price-card__icon { font-size: 2rem; margin-bottom: 16px; }
.price-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.price-card__amount {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 6px;
}
.price-currency { font-size: 1.4rem; font-weight: 700; line-height: 1.5; }
.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}
.price-period { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 12px; }
.price-desc { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; margin-bottom: 28px; }
.price-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-light);
}
.price-feature .ck { color: var(--accent); font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }
.price-card .btn { width: 100%; }

/* === TRANSFORMATION === */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.transform-grid::before, .transform-grid::after {
  content: '›';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  z-index: 2;
}
.transform-grid::before { left: calc(33.33% - 14px); }
.transform-grid::after  { left: calc(66.66% - 14px); }

.transform-card {
  text-align: center;
  padding: 48px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
}
.transform-card:first-child { border-radius: var(--r) 0 0 var(--r); }
.transform-card:last-child  { border-radius: 0 var(--r) var(--r) 0; }
.transform-card--result {
  background: linear-gradient(135deg, rgba(39,174,96,0.04), rgba(39,174,96,0.08));
  border-color: rgba(39,174,96,0.25);
}
.transform-card__emoji { font-size: 3rem; margin-bottom: 16px; }
.transform-card__step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.transform-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.transform-card--result .transform-card__title { color: var(--accent-dark); }
.transform-card__text { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 96px 0;
  overflow: hidden;
}
.testimonials .section-label { color: var(--accent-light); }
.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,0.65); }
.testimonial-wrap { position: relative; margin-top: 52px; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 24px; }
.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  text-align: center;
}
.t-stars { color: #F59E0B; font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 24px; }
.t-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.90);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
}
.t-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.t-info { text-align: left; }
.t-info strong { display: block; color: #fff; font-size: 0.93rem; font-weight: 700; }
.t-info span   { font-size: 0.8rem; color: rgba(255,255,255,0.50); }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.t-dot.active { background: var(--accent); width: 24px; }
.t-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
}
.t-btn:hover { background: rgba(255,255,255,0.20); }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gal-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,16,112,0.60) 0%, transparent 55%);
  opacity: 0;
  transition: var(--t);
}
.gal-item:hover .gal-item__overlay { opacity: 1; }
.gal-tall  { grid-row: span 2; }
.gal-wide  { grid-column: span 2; }

/* === STATS === */
.stats-section { padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.60); font-weight: 500; }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--r-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r);
  padding: 22px 26px;
  box-shadow: var(--shadow-p);
  text-align: center;
  min-width: 130px;
}
.about-badge-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-card span { font-size: 0.76rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.about-points { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 36px; }
.about-point { display: flex; align-items: flex-start; gap: 14px; }
.about-point__icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(39,174,96,0.10);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point__title { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.about-point__text  { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.open { border-color: rgba(106,27,154,0.20); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--t);
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: var(--t);
  flex-shrink: 0;
  font-weight: 700;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.40s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 28px 24px; font-size: 0.89rem; color: var(--text-light); line-height: 1.78; }

/* === BOOKING CTA === */
.cta-section {
  background: linear-gradient(135deg, #1a5c33 0%, var(--accent) 60%, #27ae6088 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -15%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-section .section-title { color: #fff; position: relative; }
.cta-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.80);
  margin: 0 auto 40px;
  max-width: 480px;
  position: relative;
}

/* === FOOTER === */
.footer { background: #111118; color: rgba(255,255,255,0.70); padding: 80px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand__logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-brand__logo img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--accent); }
.footer-brand__logo span { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.footer-brand__desc { font-size: 0.87rem; line-height: 1.78; color: rgba(255,255,255,0.48); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 9px; }
.footer-soc {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.60);
  transition: var(--t);
  text-decoration: none;
}
.footer-soc:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.60);
  transition: var(--t);
}
.footer-links-col a:hover { color: #fff; transform: translateX(4px); display: inline-block; }
.footer-contact-row {
  display: flex; align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 14px;
  line-height: 1.55;
}
.footer-contact-row .ic { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a { color: rgba(255,255,255,0.60); }
.footer-contact-row a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p, .footer__bottom a {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.32);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.60); }

/* === INNER PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.page-hero p  { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto; }

/* === INFO CARD (about/booking page) === */
.info-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.info-card img { border-radius: var(--r); box-shadow: var(--shadow-md); margin: 1.5rem auto; }
.info-card h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
  text-align: center;
}
.info-card p { color: var(--text-light); line-height: 1.8; text-align: center; margin-bottom: 1rem; }
.info-card a { color: var(--primary); font-weight: 700; }
.alert-box {
  background: #fef3c7;
  border: 2px solid #F59E0B;
  border-radius: var(--r-sm);
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #92400e;
  text-align: center;
  margin: 1.5rem auto;
  max-width: 800px;
}
.alert-box a { color: var(--primary); font-weight: 700; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .transform-grid::before { left: calc(33.33% - 12px); }
  .transform-grid::after  { left: calc(66.66% - 12px); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__content { padding: 140px 24px 80px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .trust-bar__inner { gap: 20px 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .transform-grid {
    grid-template-columns: 1fr;
  }
  .transform-grid::before, .transform-grid::after { display: none; }
  .transform-card { border-radius: var(--r) !important; border: 1px solid var(--border); margin-bottom: 8px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,180px); }
  .gal-tall { grid-row: span 1; }
  .gal-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 380px; margin: 0 auto; }
  .about-badge-card { bottom: -16px; right: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .testimonial-inner { padding: 36px 24px; }
  .pricing-grid { gap: 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .stats-grid { gap: 20px 12px; }
  .trust-bar__inner { gap: 14px 20px; }
  .hero__features { gap: 8px 16px; }
}

/* ============================================================
   NEW HOMEPAGE — service cards, pricing, about, sticky CTA
   ============================================================ */

/* Service cards (image-top) */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc2-card {
  background: var(--card);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: row;
}
.svc2-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.svc2-card__img {
  width: 160px;
  min-width: 160px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.svc2-card__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.svc2-card__body h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.svc2-card__body p {
  color: var(--text-light);
  font-size: .83rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.svc2-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.svc2-price {
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.svc2-price strong {
  color: var(--accent);
  font-size: .95rem;
  font-weight: 700;
}

/* Simple pricing grid */
.price2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.price2-item {
  background: var(--card);
  border-radius: var(--r);
  padding: 32px 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.price2-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.price2-item--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(39,174,96,.18);
}
.price2-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.price2-icon { font-size: 2rem; }
.price2-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.price2-amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.price2-amount span {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  display: block;
  margin-top: 4px;
}
.price2-note {
  text-align: center;
  color: var(--text-light);
  font-size: .95rem;
  margin-top: 8px;
}
.price2-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* About section */
.about2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about2-img-wrap {
  position: relative;
}
.about2-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 520px;
}
.about2-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r);
  font-size: .85rem;
  font-weight: 700;
  box-shadow: var(--shadow-p);
}
.about2-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about2-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* FAQ narrow (centered) */
.faq-list--narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-cta__wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}
.sticky-cta__book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}

/* btn--sm */
.btn--sm {
  padding: 8px 18px;
  font-size: .85rem;
}
/* btn--outline */
.btn--outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-weight: 600;
  transition: var(--t);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .price2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc2-card { flex-direction: column; }
  .svc2-card__img { width: 100%; min-width: unset; height: 180px; }
  .about2-grid { grid-template-columns: 1fr; gap: 40px; }
  .about2-img { max-height: 340px; }
  .about2-badge { bottom: 12px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 58px; }
}
@media (max-width: 600px) {
  .price2-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .price2-item { padding: 24px 12px 20px; }
  .price2-amount { font-size: 1.4rem; }
}
@media (max-width: 400px) {
  .price2-grid { grid-template-columns: 1fr; }
}
