:root {
  --cream: #faf6f0;
  --warm-white: #fff9f3;
  --gold: #b8975a;
  --gold-light: #d4b07c;
  --gold-dark: #8a6e3a;
  --sage: #7a8c6e;
  --sage-light: #a8b8a0;
  --deep: #2c2018;
  --mid: #5a4a38;
  --soft: #8a7a68;
  --blush: #e8d5c8;
  --lavender: #c8bcd8;
  --teal: #5a8a88;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 4px 30px rgba(44, 32, 24, 0.08);
  --shadow-med: 0 8px 50px rgba(44, 32, 24, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--deep);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto;
}
.divider.left { margin-left: 0; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--deep);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--deep);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: var(--transition);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--cream); border-color: var(--gold); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cream);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 90, 0.15);
  transition: var(--transition);
}
.site-header.scrolled {
  height: 60px;
  box-shadow: var(--shadow-soft);
}

.logo img {
  height: 67px;
  width: auto;
  object-fit: contain;
  margin-top: 13px;
}
.logo a { display: block; }

.header-nav { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.header-nav > li { position: relative; }
.header-nav > li > a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s;
}
.header-nav > li > a:hover { color: var(--gold); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--cream);
  border: 1px solid rgba(184, 151, 90, 0.2);
  box-shadow: var(--shadow-med);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 200;
}
.header-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.5rem);
}
.dropdown li { list-style: none; border-bottom: 1px solid rgba(184, 151, 90, 0.1); }
.dropdown li:last-child { border-bottom: none; }
.dropdown li a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}
.dropdown li a:hover { background: var(--warm-white); color: var(--gold); padding-left: 1.6rem; }

.header-social { display: flex; align-items: center; gap: 0.6rem; }
.header-social a img { width: 22px; height: 22px; opacity: 0.6; transition: opacity 0.3s;     filter: invert(1); }
.header-social a:hover img { opacity: 1; filter: grayscale(0); }

.header-cta {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.header-cta:hover { background: var(--gold-dark); }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep);
  transition: var(--transition);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 200;
  padding: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}
.mobile-nav { list-style: none; margin-top: 4rem; }
.mobile-nav li a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s;
}
.mobile-nav li a:hover { color: var(--gold-light); }
.mobile-nav .sub-items { padding-left: 1.5rem; margin-top: 0.3rem; }
.mobile-nav .sub-items li a { font-size: 1rem; font-family: var(--font-sans); letter-spacing: 0.05em; color: rgba(255,255,255,0.6); border-bottom: none; }

/* ─── HERO ─── */
.hero {
  height: 100svh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,32,24,0.7) 0%, rgba(44,32,24,0.3) 60%, rgba(90,74,56,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 1.5rem;
  animation: heroReveal 1.2s ease both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.5rem;
  animation: heroReveal 1.2s 0.2s ease both;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 15rem;
  animation: heroReveal 1.2s 0.4s ease both;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  animation: heroReveal 1.2s 0.6s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroReveal 1.2s 0.8s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: heroReveal 1.2s 1.2s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── ABOUT ─── */
.about-section {
  padding: 100px 2rem;
  background: var(--warm-white);
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-imagery {
  position: relative;
}
.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  padding: 1rem;
  box-shadow: 0 10px 40px rgba(184, 151, 90, 0.3);
}
.about-badge .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.about-badge .label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.3;
  margin-top: 0.3rem;
}
.about-content p {
  color: var(--soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.about-content h2 {
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.about-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--blush);
  color: var(--soft);
  background: var(--cream);
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--deep);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item {
  background: var(--deep);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 100px 2rem;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: -7rem;
}
.section-header img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 15px auto;
  border-radius: 10px;
}

/* optional spacing fix for mobile */
@media (max-width: 768px) {
  .section-header img {
    max-width: 100%;
  }
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(184, 151, 90, 0.1);
}
.service-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { background: var(--warm-white); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}
.service-info h3 {
  font-size: 1.2rem;
  color: var(--deep);
  margin-bottom: 0.6rem;
}
.service-info p {
  font-size: 0.85rem;
  color: var(--soft);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}
.service-link:hover { gap: 0.7rem; }
.service-link::after { content: '→'; }

/* ─── TAROT / FEATURE ─── */
.feature-section {
  background: var(--deep);
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
}
.feature-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: url('assets/card2.png') center/cover;
  opacity: 0.12;
}
.feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.feature-text .section-label { color: var(--gold-light); }
.feature-text h2 { color: var(--cream); margin-bottom: 1.5rem; }
.feature-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.feature-card-img {
  width: 100%;
  max-width: 380px;
  justify-self: center;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* ─── VIDEO CTA ─── */
.video-cta {
  position: relative;
  padding: 120px 2rem;
  background: var(--mid);
  overflow: hidden;
}
.video-cta .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 160%;
  object-fit: cover;
  opacity: 0.25;
}
.video-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto;
}
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--cream);
  font-size: 1.6rem;
  backdrop-filter: blur(10px);
}
.play-btn:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }
.video-cta h2 {
  color: var(--cream);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.video-cta p { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 300; }

/* ─── REVIEWS ─── */
.reviews-section {
  padding: 2rem;
  background: var(--warm-white);
}
.swiper-reviews {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem !important;
}
.review-card {
  background: var(--cream);
  padding: 2.5rem;
  border: 1px solid rgba(184, 151, 90, 0.12);
  box-shadow: var(--shadow-soft);
  height: auto;
}
.review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-author .name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--deep);
  letter-spacing: 0.05em;
}
.review-author img { width: 28px; height: 28px; opacity: 0.7; }
.swiper-pagination-bullet { background: var(--gold) !important; }
.swiper-pagination-bullet-active { background: var(--gold-dark) !important; }

/* ─── VIDEOS ─── */
.videos-section {
  padding: 80px 2rem;
  background: var(--cream);
}
.videos-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.video-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.video-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.video-item iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #1a1208;
  padding: 5rem 2rem 2rem;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a img { width: 28px; height: 28px; opacity: 0.45; filter: brightness(0) invert(1); transition: opacity 0.3s; }
.footer-social a:hover img { opacity: 0.85; }
.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer-contact-item img { width: 16px; height: 16px; opacity: 0.5; filter: brightness(0) invert(1); margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.footer-bottom a
{
/* text-decoration: none; removes underline */
  color: inherit;        /* removes default blue color */
}
.footer-bottom p{
  font-size: 14px;
}

/* ─── FLOATING CONTACT ─── */
.floating-contact {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.float-btn img { width: 30px; height: 30px; object-fit: contain; }
.float-wa { background: #25D366; }
.float-call { background: var(--gold); }

/* ─── POPUP MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 32, 24, 0.8);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream);
  max-width: 520px;
  width: 100%;
  padding: 3rem;
  position: relative;
  animation: modalIn 0.4s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--soft);
  line-height: 1;
}
.modal-box h3 { font-size: 1.8rem; color: var(--deep); margin-bottom: 0.3rem; }
.modal-box .sub { font-size: 0.8rem; color: var(--soft); letter-spacing: 0.1em; margin-bottom: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--warm-white);
  border: 1px solid rgba(184, 151, 90, 0.2);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--deep);
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.form-control:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .header-nav, .header-social, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-imagery { max-width: 400px; margin: 0 auto; }
  .about-badge { right: 0; bottom: -1rem; }

  .services-grid { grid-template-columns: 1fr; }

  .feature-inner { grid-template-columns: 1fr; gap: 3rem; }
  .feature-section::before { width: 100%; opacity: 0.05; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .videos-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .about-badge { width: 100px; height: 100px; }
  .about-badge .num { font-size: 1.8rem; }
  .stats-inner { grid-template-columns: 1fr; }
  .feature-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
/* ─── INNER PAGE HERO ─── */
.page-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-top: 70px;
}
.page-hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,32,24,0.55);
}
.page-hero .page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 2rem;
}
.page-hero .page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.page-hero .page-hero-content p {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  max-width: 700px;
}

/* ─── INNER PAGE CONTENT ─── */
.inner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.content-section {
  padding: 2rem 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-grid img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 2px;
}
.content-text h2 {
  margin-bottom: 1.2rem;
  color: var(--deep);
}
.content-text p {
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}
.content-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-text ul li {
  color: var(--mid);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid var(--blush);
}
.content-text ul li:last-child { border-bottom: none; }
.content-text ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.7rem;
}
.content-text ul li strong { color: var(--deep); }

/* ─── CONTACT PAGE ─── */
.contact-section {
  padding: 5rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--mid); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: var(--warm-white);
  border-radius: 2px;
}
.contact-detail img { width: 20px; height: 20px; object-fit: contain; margin-top: 2px; }
.contact-detail span, .contact-detail a { color: var(--mid); text-decoration: none; line-height: 1.6; }
.contact-detail a:hover { color: var(--gold); }
.contact-form-box {
  background: var(--warm-white);
  padding: 2.5rem;
  border: 1px solid var(--blush);
}
.contact-form-box .form-group { margin-bottom: 1.2rem; }
.contact-form-box .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--blush);
  background: white;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--deep);
  outline: none;
  transition: border-color 0.3s;
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus { border-color: var(--gold); }
.contact-map { margin-top: 2rem; }
.contact-map iframe { width: 100%; height: 300px; border: none; }

/* ─── ABOUT PAGE ─── */
.about-page-content { padding: 5rem 0; }
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-page-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-page-text h2 { margin-bottom: 1.2rem; }
.about-page-text p {
  color: var(--mid);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  text-align: justify;
}
.about-page-text h3 { margin: 2rem 0 0.8rem; font-size: 1.4rem; }

/* ─── REVIEWS IN INNER PAGES ─── */
.inner-reviews {
  padding: 5rem 0;
  background: var(--warm-white);
}
.inner-reviews .section-header { margin-bottom: 3rem; text-align: center; }

/* ─── MAP SECTION ─── */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 450px; display: block; border: none; }

@media (max-width: 768px) {
  .page-hero { height: 300px; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-grid.reverse { direction: ltr; }
  .content-grid img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-box .form-row { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-page-img { height: 350px; }
}


/* ─── IMAGE WRAPPER FIX ─── */
.content-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-img-wrap .content-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* Fix review card consistent rendering */
.swiper-slide .review-card {
  background: white;
  border: 1px solid var(--blush);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-header .name {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--deep);
}

/* Contact page proper layout */
.contact-section {
  padding: 3rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--blush);
}
.contact-detail img { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.contact-detail a { color: var(--mid); text-decoration: none; }
.contact-detail a:hover { color: var(--gold); }
.map-section {
  margin-top: 2.5rem;
  border-top: 1px solid var(--blush);
  padding-top: 1.5rem;
}

/* About page full-width sections */
.full-width-section {
  padding: 3rem 0;
}
.full-width-section .inner-content h2 {
  margin-bottom: 1rem;
}
.full-width-section .inner-content p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Section header center align */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.5rem; }

@media(max-width: 768px) {
  .contact-section .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-img-wrap .content-img { height: 260px; }
}



/* ============================= FIX REVIEW SECTION ================= */
/* Section height control */
.reviews-section.custom-fix {
  padding: 20px 0;
}

/* Review text truncate */
.review-text.truncate-text {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* kitni lines dikhani hain */
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

/* Read more button */
.read-more-btn {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gold);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Expanded state */
.review-text.expanded {
  -webkit-line-clamp: unset;
}
/* Equal height cards fix */
.reviews-section.custom-fix .swiper-slide {
  display: flex;
  height: auto;
}

.reviews-section.custom-fix .review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 320px; /* sab card same height */
  padding: 20px;
}

/* Text ko control */
.review-text {
  flex-grow: 1;
}

.review-author {
  margin-top: auto;
}
/* IMPORTANT: Swiper height fix */
.reviews-section.custom-fix .swiper {
  overflow: visible;
}

.reviews-section.custom-fix .swiper-wrapper {
  align-items: stretch;
}

/* Equal height */
.reviews-section.custom-fix .swiper-slide {
  display: flex;
  height: auto;
}

.reviews-section.custom-fix .review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}


.reviews-section {
  overflow: hidden;
}

.swiper-reviews {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  height: auto;
}

/* Card fix */
.review-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Mobile fix */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 15px;
  }

  .review-card {
    padding: 20px;
  }
}
.plugin-box .plugins .icons span {
    top: 12px;
}