/* ===== VYNTAGE Brand Colors ===== */
:root {
  --bg-primary: #E8E0D4;
  --bg-section: #F3ECE4;
  --text-heading: #745141;
  --text-body: #5E463A;
  --text-muted: #837367;
}

/* ===== General Reset ===== */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;

} */

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

img,
video,
iframe,
embed,
object {
  max-width: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-body);
}

/* ===== Navbar ===== */
.navbar {
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(116, 81, 65, 0.15);
  padding: 12px 0;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(116, 81, 65, 0.1);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 4px;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: var(--text-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  margin: 0 2px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--text-heading);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-body);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* Custom Toggler */
.navbar-toggler {
  border: none;
  padding: 6px;
  outline: none;
  box-shadow: none !important;
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggler-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Mobile Styles ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--bg-section);
    margin-top: 12px;
    padding: 16px;
    border-radius: 8px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(116, 81, 65, 0.08);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 80px 0 60px;
  /* background-color: var(--bg-section); */
 background-image: url('images/best-event-management-company-in-chennai.webp');
/* background-image: url('images/best-event-management-company-in-chennai.jpg'); */
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
  /* background: linear-gradient(rgba(94, 70, 58, 0.75), rgba(94, 70, 58, 0.7)), url('images/best-event-management-company-in-chennai.webp') center/cover no-repeat fixed; */
  position: relative;
}

.hero-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #F3ECE4;
  font-weight: 700;
  font-size: 1rem;
}

/* Hero Form */
.hero-form-card {
  /* background-color: var(--bg-section); */
/* background: linear-gradient(rgba(94, 70, 58, 0.75), rgba(94, 70, 58, 0.7)); */
  background-color: #331b0e;
  border: 1px solid rgba(116, 81, 65, 0.12);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(116, 81, 65, 0.08);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: white;
  margin-bottom: 24px;
}

.hero-input {
  background-color: #fff;
  border: 1px solid rgba(116, 81, 65, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-input:focus {
  border-color: var(--text-heading);
  box-shadow: 0 0 0 3px rgba(116, 81, 65, 0.1);
  outline: none;
}

.hero-input::placeholder {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-btn {
  background-color: var(--text-heading);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background-color: var(--text-body);
  color: #fff;
  transform: translateY(-1px);
}

/* about section */

.about-section {
  padding: 80px 0 60px;
  background-color: #f5efe7;
}

.about-heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #5e463a;
  margin-bottom: 50px;
  line-height: 1.4;
}

.about-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(94, 70, 58, 0.1);
  border: 1px solid rgba(94, 70, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(94, 70, 58, 0.18);
}

.about-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5e463a, #8b6f47);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.about-icon i {
  font-size: 24px;
  color: #fff;
}

.about-text {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #6b5b50;
  line-height: 1.75;
  margin-bottom: 0;
}


/* ===== Hero Section Responsive ===== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 50px 0 40px;
  }

  .hero-heading {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-points {
    margin-bottom: 32px;
  }

  .hero-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-heading {
    font-size: 1.5rem;
  }

  .hero-form-card {
    padding: 24px 16px;
  }
}

/*About Section Responsive */
@media (max-width: 991px) {
  .about-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 50px 0 40px;
  }
  .about-heading {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .about-card {
    padding: 25px 20px;
  }
}

/* WHY CHOOSE US SECTION starts */

/* ===== Why Choose Us Section ===== */
.why-section {
  padding: 80px 0 60px;
  background-color: var(--bg-primary);
}

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: 32px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--text-heading);
  font-weight: 700;
  font-size: 1rem;
}

/* Image Side */
/* .why-img-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: visible;
} */
 .why-img-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: visible;
}

.why-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 40px rgba(116, 81, 65, 0.18);
}

/* Floating Badge */
.why-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--text-heading);
  color: #fff;
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 24px rgba(116, 81, 65, 0.3);
  z-index: 2;
}

.badge-number {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 4px;
  white-space: nowrap;
}

/* ===== Why Section Responsive ===== */
@media (max-width: 991.98px) {
  .why-section {
    padding: 50px 0 40px;
  }

  .why-heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .why-list {
    margin-bottom: 40px;
  }

  .why-img {
    height: 340px;
  }

  .why-img-badge {
    bottom: -16px;
    left: 16px;
  }
}

@media (max-width: 575.98px) {
  .why-heading {
    font-size: 1.35rem;
  }

  .why-img {
    height: 260px;
  }

  .why-img-badge {
    padding: 12px 16px;
    bottom: -14px;
    left: 10px;
  }

  .badge-number {
    font-size: 1.5rem;
  }
}
/* why choose us section css ends */

 /* about section CSS starts */
/* ================================================
  ABOUT SECTION (NEW DESIGN)
  Paste this block at the END of your style.css file
================================================ */

/* ===== About 2 Section ===== */
.about2-section {
  padding: 90px 0 80px;
  background-color: #3a2820;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative texture overlay */
.about2-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(116, 81, 65, 0.25) 0%, transparent 55%),
                    radial-gradient(circle at 10% 80%, rgba(116, 81, 65, 0.18) 0%, transparent 45%);
  pointer-events: none;
}

/* Intro Block */
.about2-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
}

.about2-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c8a882;
  border: 1px solid rgba(200, 168, 130, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.about2-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #f3ece4;
  line-height: 1.35;
  margin-bottom: 24px;
}

.about2-body {
  font-size: 0.93rem;
  color: rgba(243, 236, 228, 0.72);
  line-height: 1.85;
  margin-bottom: 0;
}

/* Stats Bar */
.about2-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 168, 130, 0.2);
  border-radius: 14px;
  padding: 30px 20px;
  margin-bottom: 60px;
  position: relative;
}

.about2-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 10px 20px;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #c8a882;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-txt {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(243, 236, 228, 0.55);
}

.about2-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(200, 168, 130, 0.25);
  flex-shrink: 0;
}

/* Three Pillars */
.about2-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(200, 168, 130, 0.15);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.about2-pillar {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(200, 168, 130, 0.12);
  transition: background 0.35s ease;
  position: relative;
}

.about2-pillar:last-child {
  border-right: none;
}

.about2-pillar:hover {
  background: rgba(200, 168, 130, 0.08);
}

/* Accent top line on hover */
.about2-pillar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8a882, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about2-pillar:hover::after {
  opacity: 1;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 130, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.about2-pillar:hover .pillar-icon {
  background: rgba(200, 168, 130, 0.15);
  border-color: rgba(200, 168, 130, 0.6);
}

.pillar-icon i {
  font-size: 1.3rem;
  color: #c8a882;
}

.pillar-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f3ece4;
  line-height: 1.45;
  margin-bottom: 16px;
}

.pillar-text {
  font-size: 0.88rem;
  color: rgba(243, 236, 228, 0.62);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===== About 2 Responsive ===== */
@media (max-width: 991.98px) {
  .about2-section {
    padding: 60px 0 50px;
  }

  .about2-heading {
    font-size: 1.7rem;
  }

  .about2-pillars {
    grid-template-columns: 1fr;
  }

  .about2-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(200, 168, 130, 0.12);
    padding: 32px 24px;
  }

  .about2-pillar:last-child {
    border-bottom: none;
  }

  .about2-stat-divider {
    display: none;
  }

  .about2-stat {
    min-width: 130px;
    border-bottom: 1px solid rgba(200, 168, 130, 0.15);
    padding: 14px 10px;
  }

  .about2-stats {
    flex-direction: column;
    gap: 0;
    padding: 10px 20px;
  }

  .about2-stat:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .about2-intro {
    margin-bottom: 36px;
  }

  .about2-heading {
    font-size: 1.45rem;
  }

  .about2-stats {
    margin-bottom: 36px;
  }

  .stat-num {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .about2-heading {
    font-size: 1.3rem;
  }

  .pillar-heading {
    font-size: 1rem;
  }
}
/* about us css section ends */

/* services section CSS starts */
/* ================================================
  SERVICES SECTION
  Paste this block at the END of your style.css file
================================================ */

/* ===== Services Section ===== */
.services-section {
  padding: 90px 0 80px;
  background-color: var(--bg-section);
  position: relative;
  /* background: linear-gradient(rgba(94, 70, 58, 0.75), rgba(94, 70, 58, 0.7)), url('images/leading-event-management-in-chennai.webp') center/cover no-repeat fixed; */
}

/* Diagonal top edge for visual separation */
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #3a2820; /* matches about2 section above */
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  pointer-events: none;
}

/* Header */
.services-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.services-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-heading);
  border: 1px solid rgba(116, 81, 65, 0.3);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.38;
  margin-bottom: 20px;
}

.services-subtext {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service Card */
.service-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 32px 26px 28px;
  border: 1px solid rgba(116, 81, 65, 0.09);
  box-shadow: 0 3px 16px rgba(116, 81, 65, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(116, 81, 65, 0.14);
}

/* Faint number watermark */
.service-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(116, 81, 65, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Icon circle */
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5e463a, #8b6f47);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-icon i {
  font-size: 1.2rem;
  color: #fff;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Bottom accent line on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--text-heading), #c8a882);
  border-radius: 0 0 14px 14px;
  transition: width 0.35s ease;
}

.service-card:hover::after {
  width: 100%;
}

/* ===== Services Responsive ===== */
@media (max-width: 1199.98px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991.98px) {
  .services-section {
    padding: 70px 0 60px;
  }

  .services-section::before {
    height: 40px;
  }

  .services-heading {
    font-size: 1.65rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 50px 0 40px;
  }

  .services-header {
    margin-bottom: 36px;
  }

  .services-heading {
    font-size: 1.4rem;
  }

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

  .service-card {
    padding: 26px 22px 22px;
  }

  .service-num {
    font-size: 2.8rem;
  }
}

@media (max-width: 575.98px) {
  .services-heading {
    font-size: 1.25rem;
  }

  .service-title {
    font-size: 1rem;
  }
}

/* services section CSS ends */

/* PROCESS SECTION */
.process-section {
  padding: 90px 0 80px;
  background-color: var(--bg-primary);
  position: relative;
}
 
/* Header */
.process-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 72px;
}
 
.process-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-heading);
  border: 1px solid rgba(116, 81, 65, 0.3);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
 
.process-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.38;
  margin-bottom: 28px;
}
 
.process-intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}
 
.process-intro-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}
 
.process-intro-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-heading);
  font-weight: 700;
}
 
/* ===== Timeline ===== */
.process-timeline {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
 
/* Step row */
.process-step {
  display: flex;
  gap: 36px;
  margin-bottom: 0;
}
 
/* Left column: number + vertical line */
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 64px;
}
 
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5e463a, #8b6f47);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(94, 70, 58, 0.28);
  position: relative;
  z-index: 1;
}
 
/* Vertical connector line */
.step-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(116, 81, 65, 0.35), rgba(116, 81, 65, 0.08));
  margin: 8px 0;
  min-height: 60px;
}
 
/* Right column: content card */
.step-right {
  flex: 1;
  background-color: #fff;
  border-radius: 14px;
  padding: 32px 30px;
  border: 1px solid rgba(116, 81, 65, 0.09);
  box-shadow: 0 4px 20px rgba(116, 81, 65, 0.07);
  margin-bottom: 32px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
 
.step-right:hover {
  box-shadow: 0 10px 32px rgba(116, 81, 65, 0.13);
  transform: translateX(4px);
}
 
/* Arrow pointer toward the number */
.step-right::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(116, 81, 65, 0.09);
}
 
.step-right::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 9px solid #fff;
}
 
/* Step icon */
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5e463a, #8b6f47);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
 
.step-icon i {
  font-size: 1.15rem;
  color: #fff;
}
 
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: 14px;
}
 
.step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
 
/* Tag pills */
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
 
.step-tags span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-heading);
  background-color: rgba(116, 81, 65, 0.08);
  border: 1px solid rgba(116, 81, 65, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
}
 
/* Last step — no trailing line */
.process-step--last .step-left {
  justify-content: flex-start;
}
 
/* ===== Process Responsive ===== */
@media (max-width: 991.98px) {
  .process-section {
    padding: 60px 0 50px;
  }
 
  .process-heading {
    font-size: 1.65rem;
  }
 
  .process-header {
    margin-bottom: 50px;
  }
}
 
@media (max-width: 767px) {
  .process-section {
    padding: 50px 0 40px;
  }
 
  .process-heading {
    font-size: 1.4rem;
  }
 
  .process-step {
    gap: 20px;
  }
 
  .step-left {
    width: 48px;
  }
 
  .step-num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
 
  .step-right {
    padding: 24px 20px;
    margin-bottom: 24px;
  }
 
  .step-title {
    font-size: 1rem;
  }
}
 
@media (max-width: 575.98px) {
  .process-heading {
    font-size: 1.25rem;
  }
 
  .step-left {
    width: 40px;
  }
 
  .step-num {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
 
  .step-right::before,
  .step-right::after {
    display: none;
  }
 
  .step-tags span {
    font-size: 0.65rem;
  }
}

/* Process CSS Ends */

/* Gallery Section Starts */
.gallery-section {
  padding: 90px 0 80px;
  background-color: #f5efe7;
  position: relative;
}
 
/* Header */
.gallery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}
 
.gallery-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-heading);
  border: 1px solid rgba(116, 81, 65, 0.3);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
 
.gallery-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.38;
  margin-bottom: 18px;
}
 
.gallery-subtext {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0;
}
 
/* ===== Filter Tabs ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
 
.gallery-filter {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-heading);
  background: transparent;
  border: 1px solid rgba(116, 81, 65, 0.28);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
 
.gallery-filter:hover,
.gallery-filter.active {
  background-color: var(--text-heading);
  color: #fff;
  border-color: var(--text-heading);
}
 
/* ===== Gallery Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
 
/* Large item spans 2 columns */
.gallery-item--large {
  grid-column: span 2;
}
 
/* Image wrapper */
.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
 
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
 
.gallery-img-wrap:hover .gallery-img {
  transform: scale(1.06);
}
 
/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 40, 32, 0.82) 0%, rgba(58, 40, 32, 0.1) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 14px;
}
 
.gallery-img-wrap:hover .gallery-overlay {
  opacity: 1;
}
 
/* Caption */
.gallery-caption {
  transform: translateY(8px);
  transition: transform 0.35s ease;
}
 
.gallery-img-wrap:hover .gallery-caption {
  transform: translateY(0);
}
 
.caption-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8a882;
  background: rgba(200, 168, 130, 0.18);
  border: 1px solid rgba(200, 168, 130, 0.35);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
 
.caption-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.4;
}
 
/* Hidden items during filter */
.gallery-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
 
.gallery-item.hidden {
  display: none;
}
 
/* ===== Gallery Responsive ===== */
@media (max-width: 991.98px) {
  .gallery-section {
    padding: 60px 0 50px;
  }
 
  .gallery-heading {
    font-size: 1.65rem;
  }
 
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
 
  .gallery-item--large {
    grid-column: span 2;
  }
}
 
@media (max-width: 767px) {
  .gallery-section {
    padding: 50px 0 40px;
  }
 
  .gallery-heading {
    font-size: 1.4rem;
  }
 
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }
 
  .gallery-item--large {
    grid-column: span 2;
  }
 
  .gallery-overlay {
    opacity: 1;
  }
 
  .gallery-caption {
    transform: translateY(0);
  }
}
 
@media (max-width: 575.98px) {
  .gallery-heading {
    font-size: 1.25rem;
  }
 
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
 
  .gallery-item--large {
    grid-column: span 1;
  }
 
  .gallery-filters {
    gap: 8px;
  }
 
  .gallery-filter {
    font-size: 0.72rem;
    padding: 7px 14px;
  }
}
/* Gallery Section Ends */

/* contact us and social section starts */
.contact-section {
  padding: 90px 0 80px;
  background-color: #3a2820;
  position: relative;
  overflow: hidden;
}
 
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(116, 81, 65, 0.22) 0%, transparent 50%),
                    radial-gradient(circle at 5% 90%, rgba(116, 81, 65, 0.16) 0%, transparent 45%);
  pointer-events: none;
}
 
/* Header */
.contact-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
 
.contact-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c8a882;
  border: 1px solid rgba(200, 168, 130, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
 
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f3ece4;
  line-height: 1.38;
  margin-bottom: 18px;
}
 
.contact-subtext {
  font-size: 0.92rem;
  color: rgba(243, 236, 228, 0.68);
  line-height: 1.85;
  margin-bottom: 0;
}
 
/* ===== Contact Row ===== */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
 
/* Left: Map */
.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.contact-map {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 14px;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
 
/* Info strip */
.contact-info-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 168, 130, 0.15);
  border-radius: 14px;
  padding: 24px 22px;
}
 
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
 
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5e463a, #8b6f47);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.contact-info-icon i {
  font-size: 1rem;
  color: #fff;
}
 
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.info-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c8a882;
}
 
.info-value {
  font-size: 0.9rem;
  color: #f3ece4;
  line-height: 1.5;
}
 
.info-link {
  text-decoration: none;
  transition: color 0.25s ease;
}
 
.info-link:hover {
  color: #c8a882;
}
 
/* CTA Button */
.contact-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}
 
.contact-cta-btn:hover {
  background-color: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}
 
.contact-cta-btn i {
  font-size: 1.15rem;
}
 
/* ===== Right: Form ===== */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 168, 130, 0.15);
  border-radius: 16px;
  padding: 36px 32px;
}
 
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f3ece4;
  margin-bottom: 6px;
}
 
.contact-form-sub {
  font-size: 0.85rem;
  color: rgba(243, 236, 228, 0.55);
  margin-bottom: 28px;
}
 
/* Form fields */
.cf-group {
  margin-bottom: 18px;
}
 
.cf-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c8a882;
  margin-bottom: 7px;
}
 
.cf-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 168, 130, 0.22);
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #f3ece4;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  font-family: inherit;
}
 
.cf-input::placeholder {
  color: rgba(243, 236, 228, 0.35);
  font-size: 0.85rem;
}
 
.cf-input:focus {
  border-color: #c8a882;
  box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.12);
}
 
.cf-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c8a882' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
 
.cf-select option {
  background-color: #3a2820;
  color: #f3ece4;
}
 
.cf-textarea {
  resize: vertical;
  min-height: 100px;
}
 
.cf-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #5e463a, #8b6f47);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: opacity 0.3s ease, transform 0.2s ease;
  margin-top: 6px;
}
 
.cf-submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
 
.cf-success {
  display: none;
  text-align: center;
  margin-top: 14px;
  font-size: 0.88rem;
  color: #c8a882;
  font-weight: 600;
}
 
/* ===== Social Section ===== */
.social-section {
  background-color: #2c1f18;
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid rgba(200, 168, 130, 0.1);
}
 
.social-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(243, 236, 228, 0.45);
  margin-bottom: 20px;
}
 
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
 
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
 
.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
 
.social-link i {
  font-size: 1rem;
}
 
.social-link--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
 
.social-link--facebook {
  background-color: #1877f2;
  color: #fff;
}
 
.social-link--youtube {
  background-color: #ff0000;
  color: #fff;
}
 
.social-link--whatsapp {
  background-color: #25d366;
  color: #fff;
}
 
/* ===== Contact + Social Responsive ===== */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 60px 0 50px;
  }
 
  .contact-heading {
    font-size: 1.65rem;
  }
 
  .contact-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
 
  .contact-map {
    height: 240px;
  }
}
 
@media (max-width: 767px) {
  .contact-section {
    padding: 50px 0 40px;
  }
 
  .contact-heading {
    font-size: 1.4rem;
  }
 
  .contact-form-wrap {
    padding: 26px 20px;
  }
 
  .contact-header {
    margin-bottom: 40px;
  }
}
 
@media (max-width: 575.98px) {
  .contact-heading {
    font-size: 1.25rem;
  }
 
  .social-links {
    gap: 8px;
  }
 
  .social-link {
    font-size: 0.78rem;
    padding: 9px 16px;
  }
}

/* contact us and social section ends */

/* Footer section CSS Starts*/
.footer {
  background-color: #1e140f;
  padding-top: 70px;
  position: relative;
}
 
/* Subtle top border accent */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c8a882, #8b6f47, #c8a882, transparent);
}
 
/* ===== Footer Grid ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(200, 168, 130, 0.1);
}
 
/* ===== Brand Column ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 18px;
}
 
.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f3ece4;
  letter-spacing: 4px;
  line-height: 1;
}
 
.footer-brand-tag {
  font-size: 0.6rem;
  color: #c8a882;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
 
.footer-brand-desc {
  font-size: 0.86rem;
  color: rgba(243, 236, 228, 0.5);
  line-height: 1.8;
  margin-bottom: 22px;
}
 
/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
}
 
.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(200, 168, 130, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 236, 228, 0.6);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
 
.footer-social-icon:hover {
  background-color: #c8a882;
  border-color: #c8a882;
  color: #1e140f;
}
 
/* ===== Other Columns ===== */
.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f3ece4;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
 
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: #c8a882;
  border-radius: 2px;
}
 
/* Footer nav links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.footer-links li a {
  font-size: 0.85rem;
  color: rgba(243, 236, 228, 0.52);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}
 
.footer-links li a:hover {
  color: #c8a882;
  padding-left: 4px;
}
 
/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
 
.footer-contact-list li i {
  color: #c8a882;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
 
.footer-contact-list li span,
.footer-contact-list li a {
  font-size: 0.85rem;
  color: rgba(243, 236, 228, 0.52);
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.25s ease;
}
 
.footer-contact-list li a:hover {
  color: #c8a882;
}
 
/* Footer CTA */
.footer-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1e140f;
  background-color: #c8a882;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
 
.footer-cta:hover {
  background-color: #d9bb99;
  color: #1e140f;
  transform: translateY(-2px);
}
 
/* ===== Bottom Bar ===== */
.footer-bottom {
  background-color: #160e0a;
  padding: 18px 0;
}
 
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
 
.footer-copy {
  font-size: 0.78rem;
  color: rgba(243, 236, 228, 0.3);
  margin-bottom: 0;
}
 
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(243, 236, 228, 0.3);
  text-decoration: none;
  transition: color 0.25s ease;
}
 
.footer-bottom-links a:hover {
  color: #c8a882;
}
 
.footer-bottom-divider {
  color: rgba(243, 236, 228, 0.15);
  font-size: 0.75rem;
}
 
/* ===== Footer Responsive ===== */
@media (max-width: 1199.98px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
    gap: 32px;
  }
}
 
@media (max-width: 991.98px) {
  .footer {
    padding-top: 56px;
  }
 
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
 
  .footer-brand-col {
    grid-column: span 2;
  }
}
 
@media (max-width: 575.98px) {
  .footer {
    padding-top: 44px;
  }
 
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
 
  .footer-brand-col {
    grid-column: span 1;
  }
 
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* Footer Section CSS Ends */

/* FAQ Section CSS Starts */
.faq-section {
  padding: 90px 0 80px;
  background-color: var(--bg-section);
  position: relative;
  overflow: hidden;
}
 
.faq-section::after {
  content: 'FAQ';
  position: absolute;
  top: 30px;
  right: -10px;
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  font-weight: 700;
  color: rgba(116, 81, 65, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}
 
/* Header */
.faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
 
.faq-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-heading);
  border: 1px solid rgba(116, 81, 65, 0.3);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
 
.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.38;
  margin-bottom: 0;
}
 
/* ===== Two Column Layout ===== */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
 
/* Each accordion column */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
/* Each item */
.faq-item {
  background-color: #fff;
  border: 1px solid rgba(116, 81, 65, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(116, 81, 65, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
 
.faq-item.open {
  box-shadow: 0 6px 24px rgba(116, 81, 65, 0.12);
  border-color: rgba(116, 81, 65, 0.22);
}
 
/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: none;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}
 
.faq-question:hover {
  background-color: rgba(116, 81, 65, 0.03);
}
 
.faq-item.open .faq-question {
  background-color: rgba(116, 81, 65, 0.04);
  border-bottom: 1px solid rgba(116, 81, 65, 0.08);
}
 
.faq-question > span:first-child {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.5;
  flex: 1;
}
 
/* Icon circle */
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(116, 81, 65, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-heading);
  font-size: 0.8rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}
 
.faq-item.open .faq-icon {
  background-color: var(--text-heading);
  border-color: var(--text-heading);
  color: #fff;
  transform: rotate(45deg);
}
 
/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
 
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
  padding: 0 22px 20px;
}
 
.faq-item.open .faq-answer {
  max-height: 400px;
}
 
/* ===== FAQ Responsive ===== */
@media (max-width: 991.98px) {
  .faq-section {
    padding: 60px 0 50px;
  }
 
  .faq-heading {
    font-size: 1.65rem;
  }
 
  .faq-columns {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
 
  .faq-section::after {
    font-size: 9rem;
  }
}
 
@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0 40px;
  }
 
  .faq-heading {
    font-size: 1.4rem;
  }
 
  .faq-header {
    margin-bottom: 36px;
  }
 
  /* Stack columns on tablet/mobile */
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }
 
  .faq-question {
    padding: 17px 18px;
  }
 
  .faq-question > span:first-child {
    font-size: 0.9rem;
  }
 
  .faq-answer p {
    padding: 0 18px 16px;
    font-size: 0.86rem;
  }
 
  .faq-section::after {
    display: none;
  }
}
 
@media (max-width: 575.98px) {
  .faq-heading {
    font-size: 1.25rem;
  }
 
  .faq-question {
    padding: 15px 15px;
    gap: 10px;
  }
 
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }
 
  .faq-answer p {
    padding: 0 15px 15px;
  }
}
/* FAQ Section CSS Ends */

/* Gallery Section CSS Starts */

    .gallery-page {
      padding: 80px 0;
      background: #F3ECE4;
    }

    .gallery-title {
      text-align: center;
      margin-bottom: 40px;
      color: #745141;
      font-weight: 700;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
    }

    .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
      opacity: 0;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .hidden {
      display: none !important;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }
  /* Gallery Section CSS ends */

  /* Blogs Section CSS Starts */
.blog-hero {
      background: linear-gradient(rgba(94, 70, 58, 0.78), rgba(94, 70, 58, 0.72)),
                  url('images/best-event-management-company-in-chennai.webp') center/cover no-repeat fixed;
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
 
    .blog-hero::before {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 60px;
      background: var(--bg-primary);
      clip-path: ellipse(55% 100% at 50% 100%);
    }
 
    .blog-hero-label {
      display: inline-block;
      font-family: 'Lato', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(243, 236, 228, 0.8);
      border: 1px solid rgba(243, 236, 228, 0.3);
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 20px;
    }
 
    .blog-hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 16px;
    }
 
    .blog-hero-sub {
      font-family: 'Lato', sans-serif;
      font-size: 1rem;
      color: rgba(243, 236, 228, 0.78);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }
 
    /* Blog Section */
    .blog-section {
      padding: 70px 0 80px;
      background-color: var(--bg-primary);
    }
 
    /* Section Header */
    .blog-section-header {
      text-align: center;
      margin-bottom: 52px;
    }
 
    .blog-section-label {
      display: inline-block;
      font-family: 'Lato', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--text-heading);
      border: 1px solid rgba(116, 81, 65, 0.3);
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
    }
 
    .blog-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-heading);
      line-height: 1.4;
      margin-bottom: 14px;
    }
 
    .blog-section-desc {
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.75;
    }
 
    /* Blog Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
 
    /* Featured card spans 2 cols */
    .blog-card--featured {
      grid-column: span 2;
    }
 
    /* Blog Card */
    .blog-card {
      background-color: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(116, 81, 65, 0.08);
      box-shadow: 0 4px 20px rgba(116, 81, 65, 0.07);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      display: flex;
      flex-direction: column;
    }
 
    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(116, 81, 65, 0.16);
    }
 
    /* Card Image */
    .blog-card-img-wrap {
      position: relative;
      overflow: hidden;
    }
 
    .blog-card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
 
    .blog-card--featured .blog-card-img {
      height: 280px;
    }
 
    .blog-card:hover .blog-card-img {
      transform: scale(1.06);
    }
 
    /* Category Badge on image */
    .blog-card-category {
      position: absolute;
      top: 16px;
      left: 16px;
      background-color: var(--text-heading);
      color: #fff;
      font-family: 'Lato', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
    }
 
    /* Featured Badge */
    .blog-card-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background-color: #c8a882;
      color: #1e140f;
      font-family: 'Lato', sans-serif;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
    }
 
    /* Card Body */
    .blog-card-body {
      padding: 28px 26px 26px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
 
    /* Meta row */
    .blog-card-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 14px;
    }
 
    .blog-card-meta span {
      font-family: 'Lato', sans-serif;
      font-size: 0.75rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 5px;
    }
 
    .blog-card-meta i {
      font-size: 0.8rem;
      color: #c8a882;
    }
 
    /* Meta divider */
    .blog-meta-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background-color: rgba(116, 81, 65, 0.25);
      flex-shrink: 0;
    }
 
    /* Title */
    .blog-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-heading);
      line-height: 1.45;
      margin-bottom: 12px;
      transition: color 0.25s ease;
    }
 
    .blog-card--featured .blog-card-title {
      font-size: 1.35rem;
    }
 
    .blog-card:hover .blog-card-title {
      color: #5e463a;
    }
 
    /* Excerpt */
    .blog-card-excerpt {
      font-family: 'Lato', sans-serif;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 22px;
      flex: 1;
    }
 
    /* Decorative line */
    .blog-card-divider {
      width: 36px;
      height: 2px;
      background: linear-gradient(90deg, var(--text-heading), #c8a882);
      border-radius: 2px;
      margin-bottom: 20px;
    }
 
    /* Read More Button */
    .blog-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Lato', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--text-heading);
      text-decoration: none;
      padding: 10px 20px;
      border: 1.5px solid rgba(116, 81, 65, 0.3);
      border-radius: 8px;
      align-self: flex-start;
      transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
    }
 
    .blog-card-btn:hover {
      background-color: var(--text-heading);
      color: #fff;
      border-color: var(--text-heading);
      gap: 12px;
    }
 
    .blog-card-btn i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
 
    .blog-card:hover .blog-card-btn i {
      transform: translateX(3px);
    }
 
    /* ===== CTA Strip ===== */
    .blog-cta-strip {
      background-color: var(--text-heading);
      padding: 56px 0;
      text-align: center;
    }
 
    .blog-cta-label {
      font-family: 'Lato', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(243, 236, 228, 0.6);
      margin-bottom: 14px;
    }
 
    .blog-cta-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 10px;
    }
 
    .blog-cta-sub {
      font-family: 'Lato', sans-serif;
      font-size: 0.92rem;
      color: rgba(243, 236, 228, 0.7);
      margin-bottom: 28px;
    }
 
    .blog-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #c8a882;
      color: #1e140f;
      font-family: 'Lato', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 14px 32px;
      border-radius: 8px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
 
    .blog-cta-btn:hover {
      background-color: #d9bb99;
      color: #1e140f;
      transform: translateY(-2px);
    }
 
    /* ===== Responsive ===== */
    @media (max-width: 991.98px) {
      .blog-hero-title { font-size: 2.1rem; }
      .blog-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
      .blog-card--featured { grid-column: span 2; }
    }
 
    @media (max-width: 767.98px) {
      .blog-hero { padding: 60px 0 50px; }
      .blog-hero-title { font-size: 1.7rem; }
      .blog-section { padding: 50px 0 60px; }
      .blog-section-title { font-size: 1.55rem; }
      .blog-grid { grid-template-columns: 1fr; gap: 20px; }
      .blog-card--featured { grid-column: span 1; }
      .blog-card--featured .blog-card-img { height: 220px; }
      .blog-cta-title { font-size: 1.5rem; }
    }
 
    @media (max-width: 575.98px) {
      .blog-hero-title { font-size: 1.45rem; }
      .blog-card-body { padding: 22px 20px 20px; }
    }
  /* Blogs Section CSS Ends */

  /* Iphone CSS */
  @media (max-width: 991.98px) {
  .hero-section {
    padding: 50px 0 40px;
    background-attachment: scroll; /* ← Add this line */
  }
  /* ... rest of your rules */
}
/* Iphone CSS */

/* Debug CSS */
/* html, body {
  overflow-x: hidden;
  max-width: 100%;
} */

/* Fix: Prevent horizontal overflow / left-shift on mobile */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.hero-section,
.why-section,
.about-section {
  overflow-x: hidden;
}

@media (max-width: 575.98px) {
  .hero-section .container,
  .why-section .container,
  .about-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-form-card {
    width: 100%;
  }

  .why-img-wrapper {
    padding-bottom: 24px;
  }

  .why-img-badge {
    left: 12px;
    bottom: 0;
  }
}
/* End fix */
/* Debug CSS */

/* WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-sticky svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
/* WhatsApp Sticky Button */
