/* ============================================================
   SHAADISTA – Main Stylesheet
   Brand Color: #e6321c (Official Red)
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  /* Brand */
  --red:          #e6321c;
  --red-dark:     #c42810;
  --red-light:    #fde8e5;
  --red-muted:    #f5d0cb;

  /* Neutrals */
  --dark:         #111111;
  --dark-2:       #1c1c1c;
  --charcoal:     #2a2a2a;
  --text:         #3a3a3a;
  --text-light:   #888888;
  --border:       #e8e2dc;
  --cream:        #faf8f6;
  --white:        #ffffff;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.13);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);

  /* Typography */
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Poppins', system-ui, sans-serif;
  --cormorant:    'Cormorant Garamond', Georgia, serif;

  /* Misc */
  --tr:           0.3s ease;
  --r:            8px;
  --r-lg:         16px;
}

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

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--red);
  font-family: var(--cormorant);
  font-size: 1.1em;
}
.section-sub {
  font-family: var(--cormorant);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0.75rem 0 1.25rem;
}
.section-divider span:not(.dot) {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-muted), transparent);
}
.section-divider .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--tr);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(230,50,28,0.28);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(230,50,28,0.38);
}
.btn-outline {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo-img {
  max-width: 200px;
  margin: 0 auto 2rem;
}
.preloader-logo {
  font-size: 2.5rem;
  font-family: var(--serif);
  color: var(--red);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.preloader-bar {
  width: 160px;
  height: 2px;
  background: var(--red-muted);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  animation: preload 1.6s ease infinite;
}
@keyframes preload { 0%{transform:translateX(-100%)} 100%{transform:translateX(400%)} }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: var(--white);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { max-height: 40px; width: auto; transition: filter var(--tr); filter: brightness(0) invert(1); }
/* Once scrolled onto white bg: show real colored logo */
.navbar.scrolled .nav-logo-img { filter: none; }
.nav-logo-fallback {
  display: none;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.navbar.scrolled .nav-logo-fallback { color: var(--red); }

/* Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--tr);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.nav-menu a:hover,
.nav-menu a.active { color: #ffcdc8; }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.navbar.scrolled .nav-menu a { color: var(--text); }
.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active { color: var(--red); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 18px; }
.nav-dropdown-wrap > a { display: flex; align-items: center; gap: 4px; }
.nav-chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.nav-dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  min-width: 210px;
  padding: 8px 0;
  list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  transform: translateX(-50%) translateY(6px);
}
.nav-dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--white);
  border-top: 0;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.85rem;
  color: var(--text) !important;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a::after { display: none !important; }
.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  background: #fdf6ef;
  color: var(--red) !important;
}
.nav-dropdown-all a { font-weight: 500 !important; color: var(--dark) !important; }
.nav-dropdown-divider { height: 1px; background: #f0e8e0; margin: 4px 0; }
.navbar.scrolled .nav-dropdown { top: calc(100% + 8px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
@keyframes kb1 {
  from { transform: scale(1.00) translate(0,    0);      }
  to   { transform: scale(1.10) translate(-1.5%,-1%);    }
}
@keyframes kb2 {
  from { transform: scale(1.08) translate(1.5%,  0.5%);  }
  to   { transform: scale(1.00) translate(-1%,  -0.5%);  }
}
@keyframes kb3 {
  from { transform: scale(1.05) translate(-1%,   1%);    }
  to   { transform: scale(1.12) translate( 1.5%, -1%);   }
}
@keyframes kb4 {
  from { transform: scale(1.10) translate( 1%,  -1%);    }
  to   { transform: scale(1.02) translate(-1%,   0.5%);  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1).active { animation: kb1 7.5s ease-out forwards; }
.hero-slide:nth-child(2).active { animation: kb2 7.5s ease-out forwards; }
.hero-slide:nth-child(3).active { animation: kb3 7.5s ease-out forwards; }
.hero-slide:nth-child(4).active { animation: kb4 7.5s ease-out forwards; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.82) 0%,
    rgba(17,17,17,0.55) 55%,
    rgba(17,17,17,0.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 24px 90px;
}
.hero-inner { max-width: 680px; }

.hero-label {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-sanskrit {
  font-family: var(--cormorant);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-translation {
  font-family: var(--cormorant);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: #ffcdc8;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.1rem 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-divider-line { width: 50px; height: 1px; background: rgba(255,255,255,0.25); }
.hero-divider-diamond {
  width: 6px; height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}
.hero-body {
  font-family: var(--cormorant);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease both;
}

.hero-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.22);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-nav:hover {
  background: rgba(0,0,0,0.48);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-50%) scale(1.07);
}
.hero-nav-prev { left: 2rem; }
.hero-nav-next { right: 2rem; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; right: 2rem;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--red);
  border-radius: 3px;
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURED IN
   ============================================================ */
.featured-in {
  padding: 3rem 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-label {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}
.featured-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}
.featured-logo-item { display: flex; align-items: center; }
.featured-logo-item img {
  max-height: 32px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--tr);
}
.featured-logo-item:hover img { filter: grayscale(0) opacity(1); }
.featured-logo-text {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================================
   SERVICES – HOME
   ============================================================ */
.services-section { padding: 6rem 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--red-muted);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.4), transparent 55%);
}
.service-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.service-card-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.55rem;
}
.service-card-body p {
  font-size: 0.855rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.5px;
  transition: gap var(--tr);
}
.service-read-more:hover { gap: 10px; }

/* ============================================================
   HOME GALLERY
   ============================================================ */
.home-gallery-section { padding: 5rem 0; background: var(--light); }
.home-gallery-grid {
  columns: 3;
  column-gap: 10px;
  margin-bottom: 2.5rem;
}
.hg-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 6px;
}
.hg-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
}
.hg-item:hover img { transform: scale(1.04); }
.home-gallery-cta { text-align: center; }
@media (max-width: 768px) {
  .home-gallery-grid { columns: 2; }
}
@media (max-width: 480px) {
  .home-gallery-grid { columns: 1; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 260px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-label { color: #ffcdc8; }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-divider span:not(.dot) {
  background: linear-gradient(90deg, transparent, rgba(230,50,28,0.3), transparent);
}

.testimonial-swiper { padding-bottom: 3rem; }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.testimonial-stars {
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: var(--cormorant);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--white);
  display: block;
}
.swiper-pagination-bullet { background: rgba(255,255,255,0.25) !important; }
.swiper-pagination-bullet-active { background: var(--red) !important; }

/* ============================================================
   Service Detail Page
   ============================================================ */
.service-single-section { padding: 90px 0 70px; }
.service-single-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-single-text h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1.2rem; }
.service-single-desc { font-size: 1.05rem; line-height: 1.85; color: var(--text-light); margin-bottom: 2rem; }
.feature-list--lg { margin-bottom: 2.5rem; }
.feature-list--lg li { font-size: 1rem; padding: 6px 0; }
.service-single-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-outline {
  padding: 12px 28px;
  border: 1.5px solid var(--dark);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--tr), color var(--tr);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.service-single-img { border-radius: 12px; overflow: hidden; }
.service-single-img img { width: 100%; height: 520px; object-fit: cover; display: block; }

.service-gallery-section { padding: 70px 0 80px; background: var(--cream); }
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.service-gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.service-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.service-gallery-item:hover img { transform: scale(1.05); }

.other-services-section { padding: 80px 0 90px; }
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.other-service-card { display: block; border-radius: 10px; overflow: hidden; text-decoration: none; position: relative; }
.other-service-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.other-service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.other-service-card:hover .other-service-card-img img { transform: scale(1.07); }
.other-service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
.other-service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 14px;
}
.other-service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.76);
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section h2 em {
  font-style: italic;
  font-family: var(--cormorant);
  font-size: 1.1em;
  color: #ffcdc8;
}
.cta-section p {
  font-family: var(--cormorant);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin: 0 auto 2.5rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  background-color: var(--dark);
  overflow: hidden;
}
.page-hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.page-hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: opacity 1.4s ease;
}
.page-hero-slide.active { opacity: 1; }
.page-hero-slide:nth-child(1).active { animation: kb1 8s ease-out forwards; }
.page-hero-slide:nth-child(2).active { animation: kb3 8s ease-out forwards; }
.page-hero-slide:nth-child(3).active { animation: kb2 8s ease-out forwards; }
.page-hero-slide:nth-child(4).active { animation: kb1 8s ease-out forwards; }
.page-hero-slide:nth-child(5).active { animation: kb3 8s ease-out forwards; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.65) 0%, rgba(17,17,17,0.88) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero h1 em {
  font-style: italic;
  font-family: var(--cormorant);
  color: #ffcdc8;
}
.page-hero-sub {
  font-family: var(--cormorant);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: #ffcdc8; transition: color var(--tr); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { padding: 6rem 0; background: var(--white); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.strip-img-wrap {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--red-muted);
}
.strip-img-wrap:first-child { grid-column: span 2; }
.strip-img-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.strip-img-wrap:first-child img { aspect-ratio: 16/9; }
.about-intro-text p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; }

.mission-vision { padding: 4rem 0 6rem; background: var(--cream); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.mv-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.mv-card:hover {
  border-color: var(--red-muted);
  box-shadow: var(--shadow-sm);
}
.mv-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red-muted);
  line-height: 1;
  margin-bottom: 1rem;
}
.mv-card h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.75rem; }
.mv-card p { color: var(--text-light); font-size: 0.9rem; }

.about-gallery { padding: 4rem 0; background: var(--white); overflow: hidden; }
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.about-gallery-item { overflow: hidden; border-radius: var(--r); }
.about-gallery-item.span-2 { grid-column: span 2; }
.about-gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.about-gallery-item.span-2 img { height: 300px; }
.about-gallery-item:hover img { transform: scale(1.04); }

/* Marriage Feature */
.marriage-feature { padding: 6rem 0; background: var(--white); }
.marriage-feature-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.marriage-main-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.marriage-main-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.marriage-main-img:hover img { transform: scale(1.03); }
.marriage-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(17,17,17,0.82) 0%, transparent 100%);
}
.marriage-img-caption p {
  font-family: var(--cormorant);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin: 0.3rem 0 0;
}
.marriage-side-imgs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.marriage-side-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.marriage-side-img img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.marriage-side-img:hover img { transform: scale(1.04); }

.why-section { padding: 6rem 0; background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--tr), box-shadow var(--tr);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-icon svg { width: 24px; height: 24px; color: var(--red); }
.why-card h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.75rem; }
.why-card p { color: var(--text-light); font-size: 0.9rem; }

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail-section { padding: 6rem 0; background: var(--white); }
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-row.reverse .service-detail-img-col { order: 2; }
.service-detail-row.reverse .service-detail-text-col { order: 1; }
.service-detail-img-col {
  background: var(--red-muted);
  min-height: 420px;
  overflow: hidden;
}
.service-detail-img-col img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-text-col {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.service-num-badge {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--red-muted);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-detail-text-col h2 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 1rem; }
.service-detail-text-col p { color: var(--text-light); margin-bottom: 1.5rem; }
.feature-list { margin-bottom: 2rem; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border: none; }
.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { color: var(--red-dark); }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-section { padding: 5rem 0 6rem; background: var(--white); }
.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 8px 22px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  transition: var(--tr);
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.portfolio-grid { columns: 3; column-gap: 12px; }
.portfolio-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--red-muted);
}
.portfolio-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.portfolio-item-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr);
}
.portfolio-item-overlay svg { width: 36px; height: 36px; color: var(--white); }
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item { cursor: pointer; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
}
.lightbox-content {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: block;
}
.lightbox-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 0.75rem;
  font-family: var(--sans);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none; color: #fff; cursor: pointer;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--red); }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev  { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }

.video-section { padding: 5rem 0 6rem; background: var(--cream); }
.video-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark);
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wp-video-player { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.play-btn {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.32);
  transition: background var(--tr);
}
.play-btn:hover { background: rgba(0,0,0,0.52); }
.play-btn svg {
  width: 56px; height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(230,50,28,0.45);
  transition: transform var(--tr);
}
.play-btn:hover svg { transform: scale(1.1); }
.video-info { padding: 1.25rem 1.5rem; }
.video-type {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.video-info h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--dark); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 6rem 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: border-color var(--tr);
}
.contact-info-card:hover { border-color: var(--red-muted); }
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--red); }
.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-info-value { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
.contact-info-value a:hover { color: var(--red); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form-wrap h2 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 1.75rem; font-size: 0.875rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--dark);
  outline: none;
  appearance: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,50,28,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; padding: 14px; margin-top: 0.5rem; border-radius: 4px; }
.alert-success {
  background: rgba(60,160,60,0.08);
  border: 1px solid rgba(60,160,60,0.25);
  color: #2a6a2a;
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.field-error { color: var(--red); font-size: 0.75rem; margin-top: 4px; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0c0c0c; }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo-link { display: inline-block; margin-bottom: 0.75rem; }
.footer-logo-img {
  max-height: 40px;
  width: auto;
  /* Invert red logo to white for dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.footer-logo-fallback {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.88;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--tr);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.33);
  transition: color var(--tr);
}
.footer-links ul a:hover { color: var(--white); }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.33);
  margin-bottom: 12px;
}
.footer-contact svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.22);
}
.footer-bottom strong { color: rgba(255,255,255,0.45); font-weight: 500; }


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(230,50,28,0.35);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--tr);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-detail-row { grid-template-columns: 1fr; }
  .service-single-layout { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-row.reverse .service-detail-img-col,
  .service-detail-row.reverse .service-detail-text-col { order: unset; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .marriage-feature-grid { grid-template-columns: 1fr; }
  .marriage-main-img img { height: 360px; }
  .mv-grid, .why-grid { grid-template-columns: 1fr; }
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-item.span-2 { grid-column: span 2; }
  .video-grid { grid-template-columns: 1fr; }
  .portfolio-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0;
    background: rgba(17,17,17,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-menu.open { opacity: 1; visibility: visible; }
  .nav-menu a { font-size: 1.1rem !important; color: rgba(255,255,255,0.85) !important; }
  .nav-menu a.active,
  .nav-menu a:hover { color: #ffcdc8 !important; }
  .nav-cta { padding: 12px 28px !important; }
  /* Mobile dropdown */
  .nav-dropdown-wrap > a { justify-content: center; }
  .nav-chevron { display: none; }
  .nav-dropdown {
    position: static; transform: none; box-shadow: none;
    background: transparent; border-radius: 0;
    padding: 0; min-width: unset;
    opacity: 1; visibility: visible; pointer-events: auto;
    display: none; flex-direction: column; align-items: center; gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .nav-dropdown-wrap.open .nav-dropdown { display: flex; }
  .nav-dropdown::before { display: none; }
  .nav-dropdown li a {
    font-size: 0.9rem !important;
    color: rgba(255,255,255,0.65) !important;
    padding: 4px 12px;
    background: transparent;
  }
  .nav-dropdown li a:hover,
  .nav-dropdown li a.active { color: #ffcdc8 !important; background: transparent; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
  .cta-bg { background-attachment: scroll; }
  .about-img-strip { grid-template-columns: 1fr 1fr; }
  .about-img-strip .strip-img-wrap:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .portfolio-grid { columns: 1; }
  .featured-logos { gap: 1.5rem 2rem; }
  .hero-nav { width: 40px; height: 40px; }
  .hero-nav-prev { left: 0.75rem; }
  .hero-nav-next { right: 0.75rem; }
  .about-gallery-grid { grid-template-columns: 1fr; }
  .about-gallery-item.span-2 { grid-column: span 1; }
}
