/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #f6f5fa, #ece9f3);
  color: #333;
  overflow-x: hidden;
  position: relative;
}

/* Cinematic color grading overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(106, 61, 173, 0.05),
    rgba(0, 0, 0, 0.05)
  );
  z-index: 0;
}

/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
}

p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

/* =========================
   CINEMATIC ANIMATIONS
========================= */
.animate {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 58px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.6));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f57c00;
  transition: 0.4s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================
   HERO SLIDER (CINEMATIC)
========================= */
.hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: zoomPan 12s linear infinite;
}

.slide.active {
  opacity: 1;
}

@keyframes zoomPan {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-tag {
  font-size: 18px;              /* was too small */
  letter-spacing: 4px;
  font-weight: 600;
  color: #ffffff;               /* pure white */
  margin-bottom: 20px;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #f7c873, #f57c00);
  margin: 15px auto 25px;
  border-radius: 10px;
}

/* HERO LOGO (CENTER) */
.hero-logo {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  padding: 22px 40px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.hero-logo img {
  height: 110px;   /* KEY: big enough to see details */
  width: auto;
}


/* =========================
   FLOATING ICONS
========================= */
.whatsapp-float,
.enquiry-float {
  position: fixed;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.whatsapp-float {
  bottom: 25px;
  background: #25d366;
}

.whatsapp-float a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}

.enquiry-float {
  bottom: 90px;
  background: #6a3dad;
  color: #fff;
  cursor: pointer;
}

.instagram-float {
  position: fixed;
  right: 25px;
  bottom: 155px;   /* above enquiry & whatsapp */
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.instagram-float a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

/* =========================
   SECTION DIVIDER
========================= */
.section-divider {
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0,0,0,0.05),
    transparent
  );
}

/* =========================
   ABOUT SECTION
========================= */
.about-preview {
  padding: 120px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  color: #6a3dad;
  letter-spacing: 2px;
  font-size: 14px;
}

.about-text h2 {
  margin: 15px 0;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* =========================
   WHAT WE DO BEST
========================= */
.what-we-do {
  background: linear-gradient(180deg, #f7f4fb, #efe9f7);
  padding: 120px 20px;
}

.what-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.what-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.service-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.service-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-item span {
  display: block;
  padding: 15px;
  font-weight: 500;
  color: #40285f;
}

/* =========================
   PORTFOLIO (CINEMATIC)
========================= */
.portfolio-showcase {
  padding: 120px 20px;
  background: #f6f4fa;
}

.portfolio-strip {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.portfolio-card {
  min-width: 300px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.portfolio-card:hover img {
  transform: scale(1.15);
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    transparent 60%,
    rgba(0,0,0,0.45)
  );
}

.portfolio-card .overlay {
  position: absolute;
  bottom: 0;
  padding: 25px;
  color: #fff;
}

/* =========================
   POPUP (CINEMATIC MODAL)
========================= */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-box {
  background: #fff;
  width: 420px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: popIn 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #111;
  color: #cccccc;
  padding: 90px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h2 span {
  color: #f57c00;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* =========================
   FAQ SECTION (CINEMATIC)
========================= */
.faq-section {
  background: linear-gradient(180deg, #ffffff, #f3eff9);
  padding: 140px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.faq-container h2 {
  margin: 15px 0;
}

.faq-intro {
  max-width: 600px;
  margin: 0 auto 60px;
  color: #555;
}

/* FAQ CARDS */
.faq-list details {
  background: #fff;
  margin-bottom: 18px;
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: box-shadow 0.4s ease;
}

.faq-list details:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.faq-list summary {
  font-size: 17px;
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  color: #6a3dad;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  width: 35%;
}

.phone-group input {
  width: 65%;
}

/* POPUP BASE */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* POPUP BOX */
.popup-box {
  background: #fff;
  width: 420px;
  padding: 45px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0,0,0,0.35);
  text-align: left;
}

/* TITLE */
.popup-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 8px;
}

.popup-sub {
  color: #555;
  margin-bottom: 25px;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

/* PHONE GROUP */
.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  width: 35%;
}

.phone-group input {
  width: 65%;
}

/* TEXTAREA */
.popup-box textarea {
  resize: none;
  height: 90px;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
}

/* SUBMIT BUTTON */
.btn-primary.full {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* =========================
   ABOUT EMOTION SECTION
========================= */
.about-emotion {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f0fa 100%
  );
  text-align: center;
}

.about-emotion-container {
  max-width: 900px;
  margin: auto;
}

.about-emotion h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 25px;
  color: #2f1d46;
}

.about-emotion p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

/* =========================
   ABOUT APPROACH
========================= */
.about-approach {
  padding: 130px 20px;
  background: linear-gradient(
    180deg,
    #f7f4fb,
    #ece6f6
  );
}

.approach-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.approach-container h2 {
  margin-bottom: 60px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.step {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.step h4 {
  font-size: 20px;
  color: #6a3dad;
  margin-bottom: 15px;
}

.step p {
  font-size: 15px;
  color: #555;
}

/* =========================
   WHY CHOOSE US
========================= */
.why-choose-us {
  padding: 140px 20px;
  background: linear-gradient(
    180deg,
    #ffffff,
    #f3eff9
  );
}

.why-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.why-container h2 {
  margin-bottom: 35px;
}

.why-points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 18px;
}

.why-points li {
  background: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  font-size: 16px;
  color: #444;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.why-points li:hover {
  transform: translateX(8px);
}

/* =========================
   CULTURAL CONNECT
========================= */
.about-culture {
  padding: 140px 20px;
  background: linear-gradient(
    180deg,
    #2b1a3d,
    #1b1029
  );
  text-align: center;
  color: #fff;
}

.about-culture h2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #f7c873;
}

.about-culture p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #ddd;
}

@media (max-width: 900px) {
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }

  .about-emotion h2,
  .about-culture h2 {
    font-size: 32px;
  }
}

/* =========================
   FINAL CTA – CINEMATIC
========================= */
.final-cta {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.65)
    ),
    url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

/* soft glowing overlay */
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(247,200,115,0.15),
    transparent 60%
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  margin-bottom: 20px;
  text-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 35px;
  color: #f1f1f1;
}

/* CTA BUTTON – STRONG */
.final-cta .btn-primary {
  padding: 16px 40px;
  font-size: 17px;
  background: linear-gradient(45deg, #f7c873, #f57c00);
  border-radius: 50px;
  box-shadow: 0 20px 50px rgba(245,124,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.final-cta .btn-primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 30px 80px rgba(245,124,0,0.6);
}

/* =========================
   OUR STORY / JOURNEY
========================= */
.our-story {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    #ffffff,
    #f4f1fa
  );
}

.story-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* TEXT */
.story-text .section-tag {
  color: #6a3dad;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 18px 0 25px;
  color: #222;
}

.story-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

/* IMAGE */
.story-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
  transform: scale(1);
  transition: transform 0.8s ease;
}

.story-image img:hover {
  transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-text h2 {
    font-size: 34px;
  }
}

/* =========================
   EVENTS DROPDOWN (HOVER)
========================= */

.dropdown {
  position: relative;
}

/* HIDE BY DEFAULT */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  background: rgba(20, 10, 30, 0.95);
  backdrop-filter: blur(8px);

  min-width: 220px;
  border-radius: 14px;
  padding: 12px 0;

  box-shadow: 0 25px 60px rgba(0,0,0,0.4);

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);

  transition: all 0.35s ease;
  z-index: 999;
}

/* SHOW ONLY ON HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ITEMS */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(247,200,115,0.15);
  color: #f7c873;
}

/* =========================
   EVENTS OVERVIEW PAGE
========================= */

.events-hero {
  padding: 160px 20px 100px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  ),
  url('../images/events-hero.jpg') center/cover no-repeat;
  color: #fff;
}

.events-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin-bottom: 15px;
}

.events-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: #e0e0e0;
}

/* CATEGORY GRID */
.events-categories {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f6f5fa, #ece9f3);
}

.events-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.event-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #222;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.event-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.3);
}

.event-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.event-card span {
  display: block;
  padding: 22px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #40285f;
}

/* ===============================
   WEDDING CTA – CINEMATIC
================================ */
.wedding-cta {
  position: relative;
  min-height: 70vh;
  background: url("../images/wedding-cta.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.wedding-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.75)
    );
  z-index: 1;
}

.wedding-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  color: #fff;
}

.wedding-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.wedding-cta-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #f2f2f2;
}

/* Premium Button */
.btn-wedding {
  padding: 16px 46px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f7c873, #f57c00);
  color: #000;
  box-shadow: 0 20px 50px rgba(245,124,0,0.45);
  transition: all 0.4s ease;
}

.btn-wedding:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 70px rgba(245,124,0,0.65);
}

/* =========================
   WEDDINGS HERO CUSTOM
========================= */
.weddings-hero .hero-content h1 {
  font-size: 62px;
}

.weddings-hero .hero-tag {
  color: #f7c873; /* soft gold */
}

.weddings-hero p {
  max-width: 720px;
  font-size: 18px;
}

/* Enquire button inside hero */
.weddings-hero .btn-primary {
  margin-top: 25px;
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 40px;
}

.service-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* BREADCRUMB */
.breadcrumb {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 14px;
}

/* GALLERY */
.service-gallery {
  padding: 120px 20px;
  background: #f7f4fb;
}
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 25px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.5s;
}
.gallery-grid img:hover {
  transform: scale(1.07);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* BEFORE AFTER */
.before-after {
  padding: 120px 20px;
  text-align: center;
}
.ba-container {
  position: relative;
  max-width: 700px;
  margin: auto;
}
.ba-container img {
  width: 100%;
}
.ba-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

/* ================= TESTIMONIAL + CTA ================= */
.testimonial-cta {
  padding: 140px 20px;
  background: linear-gradient(180deg, #f6f3fb, #ece6f7);
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* TESTIMONIAL CARD */
.testimonial-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  font-size: 120px;
  position: absolute;
  top: -30px;
  left: 20px;
  color: rgba(106,61,173,0.15);
  font-family: 'Playfair Display', serif;
}

.testimonial-card h2 {
  margin: 10px 0 20px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 25px;
}

.testimonial-author strong {
  font-size: 18px;
  color: #40285f;
}

.testimonial-author span {
  display: block;
  font-size: 14px;
  color: #777;
}

/* CTA BOX */
.cta-box {
  text-align: left;
}

.cta-box h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 420px;
  margin-bottom: 30px;
  color: #555;
}

/* GLOW BUTTON */
.btn-glow {
  padding: 16px 38px;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #f7b733, #f57c00);
  box-shadow: 0 0 0 rgba(245,124,0,0.7);
  transition: all 0.4s ease;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245,124,0,0.6);
}

/* =========================
   ENGAGEMENT INTRO LAYOUT
========================= */

.engagement-intro {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 0.45fr 0.55fr; /* image | text */
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.engagement-image img {
  width: 100%;
  max-height: 420px;        /* 🔑 prevents huge image */
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* TEXT */
.engagement-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin: 12px 0 18px;
}

.engagement-text .lead {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
}

.engagement-points {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
}

.engagement-points li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .engagement-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .engagement-image img {
    max-height: 300px;
  }
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.enquiry-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  position: relative;
}

.enquiry-box h2 {
  margin-bottom: 10px;
}

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #f6b45a, #f39c12);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(243,156,18,0.35);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover animation */
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(243,156,18,0.45);
}

/* glowing ring effect */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffd194, #ffb347);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::after {
  opacity: 1;
}

/* ================= CEREMONY HERO ================= */
.ceremony-hero .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* ================= SERVICE INTRO ================= */
.service-intro {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f7f4fb, #efe9f7);
}

.service-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.service-text h2 {
  margin: 15px 0;
}

.service-text .lead {
  font-size: 17px;
  margin-bottom: 20px;
}

.service-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-points li {
  margin-bottom: 10px;
  font-size: 15px;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* ================= CTA ================= */
.service-cta {
  position: relative;
  padding: 120px 20px;
  background: url('../images/gallery/ceremony/ceremony2.jpg') center/cover no-repeat;
}

.service-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.service-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #fff;
}

/* ================= POPUP ================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  position: relative;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  /* ================= CEREMONY GALLERY ================= */
.ceremony-gallery {
  padding: 120px 20px;
  background: #f6f4fa;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

.gallery-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.gallery-header h2 {
  margin: 15px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

}

.popup-box textarea {
  resize: none;
  height: 90px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}

/* ================= CEREMONY INTRO ================= */
.ceremony-intro {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.ceremony-text .lead {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

.ceremony-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.ceremony-points li {
  margin-bottom: 12px;
  font-size: 15px;
}

.ceremony-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ================= CEREMONY GALLERY ================= */
.ceremony-gallery {
  padding: 120px 20px;
  background: #f6f4fa;
  text-align: center;
}

.ceremony-gallery h2 {
  margin-bottom: 40px;
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.gallery-grid img:hover {
  transform: scale(1.08);
}

/* ================= CEREMONY CTA ================= */
.ceremony-cta {
  background: linear-gradient(180deg, #f7f4fb, #efe9f7);
  padding: 120px 20px;
  text-align: center;
}

.ceremony-cta-content {
  max-width: 700px;
  margin: auto;
}

/* ================= DECOR INTRO ================= */
.decor-intro {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.decor-text .lead {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

.decor-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.decor-points li {
  margin-bottom: 12px;
  font-size: 15px;
}

.decor-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ================= DECOR GALLERY ================= */
.decor-gallery {
  padding: 120px 20px;
  background: #f6f4fa;
  text-align: center;
}

.decor-gallery h2 {
  margin-bottom: 40px;
}

/* ================= DECOR CTA ================= */
.decor-cta {
  background: linear-gradient(180deg, #f7f4fb, #efe9f7);
  padding: 120px 20px;
  text-align: center;
}

.decor-cta-content {
  max-width: 700px;
  margin: auto;
}

/* ================= RETURN GIFTS ================= */
.gifts-intro {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.gifts-text .lead {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

.gifts-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.gifts-points li {
  margin-bottom: 12px;
  font-size: 15px;
}

.gifts-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ================= GIFTS GALLERY ================= */
.gifts-gallery {
  padding: 120px 20px;
  background: #f6f4fa;
  text-align: center;
}

.gifts-gallery h2 {
  margin-bottom: 40px;
}

.gifts-gallery .gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gifts-gallery img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.gifts-gallery img:hover {
  transform: scale(1.1);
}

/* ================= GIFTS CTA ================= */
.gifts-cta {
  background: linear-gradient(180deg, #f7f4fb, #efe9f7);
  padding: 120px 20px;
  text-align: center;
}

.gifts-cta-content {
  max-width: 700px;
  margin: auto;
}

/* ================= FOOTER FIX ================= */
.footer {
  background: #0d0d0f;
  color: #cfcfcf;
  padding: 90px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* Footer brand */
.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.footer-brand span {
  color: #f4a62a;
}

.footer-brand p {
  margin: 10px 0;
  font-size: 14px;
}

/* Links & services */
.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #f4a62a;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================= TRADITIONAL INTRO ================= */
.traditional-intro {
  padding: 120px 20px;
  text-align: center;
}

.traditional-intro p {
  max-width: 700px;
  margin: 20px auto 0;
  color: #555;
}

/* ================= TRADITIONAL GRID ================= */
.traditional-grid-section {
  padding: 120px 20px;
  background: #f6f4fa;
}

.grid-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.traditional-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.traditional-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.traditional-card:hover img {
  transform: scale(1.15);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #fff;
}

.card-overlay h3 {
  margin-bottom: 6px;
}

/* ================= WHY CHOOSE ================= */
.why-traditional {
  padding: 120px 20px;
  text-align: center;
}

.why-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  font-size: 18px;
}

/* ================= CTA ================= */
.traditional-cta {
  background: linear-gradient(180deg, #f7f4fb, #efe9f7);
  padding: 120px 20px;
  text-align: center;
}

.traditional-cta-content {
  max-width: 700px;
  margin: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TRADITIONAL DETAIL PAGE ================= */
.traditional-detail-intro {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.detail-text .lead {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

.detail-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.detail-points li {
  margin-bottom: 12px;
  font-size: 15px;
}

.detail-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ================= TRADITIONAL GALLERY ================= */
.traditional-gallery {
  padding: 120px 20px;
  background: #f6f4fa;
  text-align: center;
}

.traditional-gallery h2 {
  margin-bottom: 40px;
}

/* ================= TRADITIONAL DETAIL PAGES ================= */

.traditional-detail-intro {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.detail-text .lead {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.detail-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.detail-points li {
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
  padding-left: 5px;
}

.detail-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ================= TRADITIONAL GALLERY ================= */

.traditional-gallery {
  padding: 120px 20px;
  background: #f6f4fa;
  text-align: center;
}

.traditional-gallery h2 {
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.traditional-gallery .gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.traditional-gallery .gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.traditional-gallery .gallery-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}

/* ================= TRADITIONAL CTA ================= */

.traditional-cta {
  background: linear-gradient(180deg, #f7f4fb, #efe9f7);
  padding: 120px 20px;
  text-align: center;
}

.traditional-cta-content {
  max-width: 700px;
  margin: auto;
}

.traditional-cta-content p {
  margin: 20px 0 30px;
  color: #555;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .traditional-detail-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .traditional-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= SERVICES PAGE ================= */

.services-intro {
  padding: 80px 10%;
  background: #f5f2f8;
  text-align: center;
}

.services-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.services-intro-text p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* Grid */
.services-grid {
  padding: 80px 10%;
}

.services-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #222;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  padding: 15px 20px 5px;
}

.service-card p {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #555;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ===============================
   SERVICE HERO (DJ / SERVICES)
================================ */
.services-hero,
.dj-hero {
  height: 85vh;
  position: relative;
}

.services-hero .slide,
.dj-hero .slide {
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

/* ===============================
   SERVICE DETAIL INTRO
================================ */
.service-detail-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 100px 8%;
  align-items: center;
  background: linear-gradient(180deg, #f7f5fb, #ffffff);
}

.detail-text .section-tag {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: #7b61ff;
  margin-bottom: 10px;
  display: inline-block;
}

.detail-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #222;
}

.detail-text .lead {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.detail-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.detail-points li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
}

.detail-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ===============================
   GALLERY GRID
================================ */
.traditional-gallery {
  padding: 90px 8%;
  text-align: center;
}

.traditional-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* ===============================
   WHY CHOOSE US
================================ */
.why-corporate {
  background: #0f0f14;
  color: #fff;
  padding: 90px 8%;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-grid div {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 14px;
  font-size: 16px;
}

/* ===============================
   CTA SECTION
================================ */
.traditional-cta {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, #f7e8ff, #fff0da);
}

.traditional-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 15px;
}

.traditional-cta-content p {
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 30px;
  color: #555;
}

/* ===============================
   BUTTONS
================================ */
.btn-primary {
  padding: 14px 38px;
  background: linear-gradient(135deg, #f39c12, #ff7b00);
  border-radius: 40px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(243,156,18,0.4);
}

/* ===============================
   ENQUIRY POPUP
================================ */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  border-radius: 22px;
  position: relative;
}

.popup-box h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.popup-box p {
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  width: 30%;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .service-detail-intro {
    grid-template-columns: 1fr;
  }

  .detail-text h2 {
    font-size: 34px;
  }
}

/* ===============================
   OUR WORKS – CINEMATIC STYLING
================================ */

/* Intro Section */
.works-intro {
  padding: 110px 12% 60px;
  text-align: center;
  background: linear-gradient(180deg, #f7f5fb, #ffffff);
}

.works-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-bottom: 25px;
  color: #2d1e3e;
}

.works-intro p {
  max-width: 820px;
  margin: 0 auto 20px;
  font-size: 16.5px;
  line-height: 1.9;
  color: #555;
}

/* ===============================
   WORKS GRID
================================ */

.works-grid {
  padding: 80px 8% 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  background: #ffffff;
}

/* Image + Video base */
.works-grid img,
.works-grid video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  cursor: pointer;
}

/* Hover effect */
.works-grid img:hover,
.works-grid video:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

/* Video styling fix */
.works-grid video {
  background: #000;
}

/* ===============================
   CTA POLISH
================================ */

.traditional-cta {
  background: linear-gradient(
    135deg,
    #6a3dad,
    #4a2a73
  );
  padding: 100px 10%;
  text-align: center;
  color: #ffffff;
}

.traditional-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 18px;
}

.traditional-cta-content p {
  max-width: 700px;
  margin: 0 auto 18px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

/* ===============================
   RESPONSIVE POLISH
================================ */

@media (max-width: 768px) {

  .works-intro {
    padding: 90px 7% 40px;
  }

  .works-intro h2 {
    font-size: 36px;
  }

  .works-grid {
    padding: 60px 6% 90px;
  }

  .works-grid img,
  .works-grid video {
    height: 230px;
  }

  .traditional-cta-content h2 {
    font-size: 32px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-info {
  padding: 100px 10%;
  background: linear-gradient(180deg, #f7f5fb, #ffffff);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card a {
  color: #6a3dad;
  font-weight: 500;
  text-decoration: none;
}

.contact-form-section {
  padding: 120px 10%;
  background: #ffffff;
}

.form-wrapper {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ================= REVIEWS PAGE ================= */

.reviews-intro {
  padding: 100px 12%;
  text-align: center;
  background: linear-gradient(180deg, #f7f5fb, #ffffff);
}

.reviews-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 25px;
}

.reviews-intro p {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: 16.5px;
  line-height: 1.9;
  color: #555;
}

.reviews-videos {
  padding: 80px 8%;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.video-grid video {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.review-statements {
  padding: 90px 10%;
  background: #ffffff;
  text-align: center;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.statement-grid div {
  background: #f7f5fb;
  padding: 20px;
  border-radius: 14px;
  font-weight: 500;
}

/* Footer contact details – force white color */
.footer-brand .icon-phone,
.footer-brand .icon-mail,
.footer-brand .icon-location,
.footer-brand p {
  color: #ffffff !important;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f57c00; /* orange hover */
}

.logo {
  background: #ffffff;          /* pure white */
  padding: 8px 14px;            /* space around logo */
  border-radius: 14px;          /* smooth rounded look */
  height: 48px;                 /* navbar-friendly size */
  object-fit: contain;

  /* premium touch */
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


