:root {
  --green: #0a1128;
  --green-light: #1c2541;
  --gold: #c9a84c;
  --pink: #f2a7b8;
  --pink-light: #fad9de;
  --cream: #fdf9f5;
  --dark: #1a1a1a;
  --text: #444;
  --border: #e8ddd5;
  --section-padding-y: 70px;
  --section-padding-x: 60px;
  --container-max-width: 1300px;
}

/* Tablet */
@media (max-width: 768px) {
  :root {
    --section-padding-y: 30px !important;
    --section-padding-x: 20px !important;
  }
}

/* Large Mobile */
@media (max-width: 576px) {
  :root {
    --section-padding-y: 25px !important;
    --section-padding-x: 25px !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --section-padding-y: 30px !important;
    --section-padding-x: 18px !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}

/* ─── SECTION COMMONS ────────────────────────────────────────── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

/* .divider.left {
  margin: 20px 0;
} */

section {
  padding: var(--section-padding-y) var(--section-padding-x);
  width: 100%;
  overflow: hidden;
}
div.page-section {
  padding: 30px 25px;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 80px;
    --section-padding-x: 20px;
  }
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 16px 44px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.btn-primary:hover {
  background: #b5953f; /* slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 15px 44px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  border: 1px solid var(--cream);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.2);
}

/* loader.css */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--green);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease-out,
    visibility 0.5s ease-out;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrapper {
  position: absolute;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.loader-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.loader-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(201, 168, 76, 0.2); /* var(--gold) with opacity */
  border-top: 2px solid var(--gold);
  border-radius: 50%;
  animation: loaderSpin 1.5s linear infinite;
  z-index: 1;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-line {
  position: absolute;
  margin-top: 200px;
  width: 100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: loaderLine 1.5s linear infinite;
}

@keyframes loaderLine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

nav.scrolled {
  padding: 10px 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo-wrapper {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
}

.nav-logo .logo-text {
  width: auto;
  white-space: nowrap;
  color: var(--gold) !important;
}

.nav-logo span {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.nav-cta:hover {
  background: #b5953f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.mobile-cta-li {
  display: none;
}

.menu-btn {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.menu-btn .close-icon {
  display: none;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  nav,
  nav.scrolled {
    padding: 12px 20px 12px 10px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--green);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-btn {
    display: flex;
    z-index: 1001;
  }

  .menu-btn.active .open-icon {
    display: none;
  }

  .menu-btn.active .close-icon {
    display: block;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta-li {
    display: block;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 0.85rem;
  }
  .nav-logo-img {
    height: 55px;
  }
  .nav-links {
    width: 100%;
  }
}
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 17, 40, 0.7) 0%,
    rgba(10, 17, 40, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--section-padding-x);
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border: 1px solid var(--gold);
  padding: 7px 20px;
  margin-top: 20px;
  animation: fadeUp 1s ease both;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #ffffff;
  margin-top: 30px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  margin: 20px 0 40px;
  animation: fadeUp 1s 0.4s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 1s 0.6s ease both;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .hero-badge {
    padding: 5px 15px;
    margin-bottom: 12px;
    margin-top: 50px;
  }

  .hero-sub {
    margin: 10px 0 25px;
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .slider-controls {
    padding: 0 2%;
  }
  .hero-btns {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .hero-scroll {
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    margin-top: 10px;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
#abouts {
  width: 100%;
  background: var(--cream);
}

.about {
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 78%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(10, 17, 40, 0.1);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 52%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(10, 17, 40, 0.15);
  border: 6px solid var(--cream);
}

.about-badge-float {
  position: absolute;
  top: 42%;
  left: 60%;
  background: rgba(201, 168, 76, 0.95);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 18px 22px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
  z-index: 2;
}

.about-badge-float .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
  display: block;
  line-height: 1;
}

.about-badge-float .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-tag {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  transition: all 0.3s;
  cursor: default;
}

.about-tag:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

@media screen and (max-width: 992px) {
  .about {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: var(--section-padding-y) var(--section-padding-x);
  }
  .about-text {
    order: 1;
  }

  .about-images {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .about-images {
    height: 400px;
  }

  .about-badge-float {
    padding: 12px 16px;
    left: 50%;
    top: 35%;
  }

  .about-badge-float .num {
    font-size: 1.8rem;
  }

  .about-text {
    text-align: center;
  }

  .divider.left {
    margin: 20px auto;
  }

  .about-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
  }
}

@media screen and (max-width: 480px) {
  .about-tags {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.stats-bar {
  background: var(--green);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  position: relative;
  text-align: center;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-badge {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 0.8rem;
  font-weight: 300;
  color: #f6f3eb;
  opacity: 0.6;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  font-weight: 550;
  color: var(--gold);
  line-height: 1.5;
  display: block;
}

.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px var(--section-padding-x);
  }

  .stat-item {
    /* border-right: none; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

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

/* Mobile */
@media (max-width: 576px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 15px var(--section-padding-x);
  }

  .stat-item {
    padding: 20px 15px;
    border-right: none;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
  }

  /* 1st & 3rd item right border */
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Last row bottom remove */
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .stat-lbl {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .stat-badge {
    top: 5px;
    right: 10px;
    font-size: 0.7rem;
  }
}
.services {
  background: var(--cream);
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.services-swiper {
  padding: 20px 0 60px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.services-grid.swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  height: auto;
  width: 100%;
}

@media (min-width: 993px) {
  .services-grid.swiper-wrapper {
    transform: none !important;
  }
}

.service-card.swiper-slide {
  flex-shrink: 0; /* Important for Swiper flex mode */
  width: 100%; /* Default for grid */
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3/3;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 17, 40, 0.03);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(197, 168, 127, 0.1);
}

.service-card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 20px 20px 60px rgba(10, 17, 40, 0.15);
  border-color: var(--gold);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px 20px;
  z-index: 2;
  transition: all 0.5s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 17, 40, 0.95) 0%,
    rgba(10, 17, 40, 0.85) 20%,
    rgba(10, 17, 40, 0.65) 40%,
    transparent 60%
  );
  opacity: 1;
  transition: all 0.5s ease;
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 17, 40, 1) 0%,
    rgba(10, 17, 40, 0.9) 25%,
    rgba(10, 17, 40, 0.55) 45%,
    transparent 75%
  );
}

.service-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 8px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-info h3 {
  color: #fff;
}

.service-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(360deg) scale(1.1);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--gold);
  transition: width 0.6s ease;
  z-index: 5;
}

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

.service-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 3;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services-pagination {
  bottom: 0 !important;
}

.services-nav-btn {
  color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.8);
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.services-nav-btn:after {
  font-size: 1.2rem !important;
  font-weight: bold;
}

.services-nav-btn:hover {
  background: var(--gold);
  color: #fff !important;
}

@media (min-width: 993px) {
  .services-pagination,
  .services-nav-btn {
    display: none !important;
  }
}

.services-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--gold);
  opacity: 0.3;
}

.services-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 1200px) {
  .services-grid.swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services {
  }

  .services-header {
    padding: 0 30px;
  }

  .services-grid.swiper-wrapper {
    display: flex; /* Swiper mode */
    grid-template-columns: none;
    gap: 0;
    height: auto;
  }

  .service-card.swiper-slide {
    width: 300px;
    transition: all 0.5s ease;
  }

  .swiper-slide-active.service-card {
    box-shadow: 0 20px 50px rgba(10, 17, 40, 0.2);
  }
}

@media (max-width: 576px) {
  .service-card.swiper-slide {
    width: 280px;
  }
}

/* Ensure slides are visible on mobile (prevents reveal conflicts with clones) */
@media (max-width: 992px) {
  .services-swiper .service-card.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.categories {
  background: #fdfaf7;
}

.categories-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.cat-card-new {
  position: relative;
  height: 350px; /* Adjusted height for better balance */
  background: var(--dark);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cat-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(10, 17, 40, 0.15);
}

/* Background Image styling */
.cat-img-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cat-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cat-card-new:hover .cat-img-bg img {
  opacity: 1;
  transform: scale(1.1);
}

/* Content Overlay */
.cat-content-new {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(10, 17, 40, 0.4) 0%,
    rgba(10, 17, 40, 0.1) 50%,
    rgba(10, 17, 40, 0.7) 100%
  );
  pointer-events: none;
}

.cat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  line-height: 1;
}

.cat-info-wrap {
  margin-bottom: 50px; /* Space for the button */
}

.cat-info-wrap h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cat-info-wrap p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 90%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Redesigned Button: Pill Shape */
.cat-circle-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  height: 40px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: auto;
}

.cat-circle-btn span {
  opacity: 1;
  transform: translateX(2px);
  transition: all 0.4s ease;
  white-space: nowrap;
}

.cat-card-new:hover .cat-circle-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
  padding-right: 15px;
}

.cat-card-new:hover .cat-circle-btn span {
  opacity: 1;
  transform: translateX(0);
}

.cat-circle-btn i {
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}

.cat-card-new:hover .cat-circle-btn i {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1200px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .categories {
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .cat-card-new {
    height: 320px;
  }
  .cat-content-new {
    padding: 25px;
  }
  .cat-number {
    font-size: 2.5rem;
  }
  .cat-info-wrap h3 {
    font-size: 1.6rem;
  }
  .cat-circle-btn span {
    opacity: 1;
    transform: translateX(0);
  }
}
.parallax-quote {
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -60px;
  background: url("../images/gallery/about/bg_02.webp") center/cover no-repeat;
  filter: brightness(0.45);
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--section-padding-x);
  max-width: 900px;
}

.parallax-content blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
}

.parallax-content cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
}
.gallery {
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.gallery-swiper {
  width: 100%;
  padding-bottom: 50px; /* Space for pagination */
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  aspect-ratio: 1 / 1; /* Equal width and height automatically based on screen */
}

/* Custom Swiper Pagination Styling */
.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.5 !important;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 5px !important;
}

@media (max-width: 768px) {
  .gallery {
  }
}

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

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

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}
.video-section {
  background: var(--green);
}

.video-section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.video-section-header .section-title {
  color: #fff;
}

.video-section-header .section-label {
  color: var(--gold);
}

.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.video-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}

.video-card.featured {
  grid-row: span 2;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75);
}

.video-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.55);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.video-card:hover .video-play {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
}

.video-play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 3px;
}

.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.video-label h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
}

.video-label span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.process {
  background: var(--cream);
  border-bottom: 1px solid var(--gold);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gold);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.3s;
}

.process-step:hover .step-circle {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.process-step h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

/* Process Responsiveness */
@media (max-width: 1024px) {
  .process {
    padding: 100px 40px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process {
    padding: var(--section-padding-y) var(--section-padding-x);
  }

  .process-header {
    margin-bottom: 50px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-steps::after {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 50%;
    width: 1px;
    background: var(--gold);
    opacity: 0.2;
    z-index: 0;
    transform: translateX(-50%);
  }

  .process-step {
    padding: 0;
    max-width: 300px;
    margin: 0 auto;
  }

  .step-circle {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    background: var(--cream);
  }

  .process-step h4 {
    font-size: 1.3rem;
  }

  /* Venues Mobile */
  .venues-inner {
    text-align: center;
    padding: 0 var(--section-padding-x);
  }

  .venues-strip {
    padding: 0 0 60px;
  }

  .venue-card {
    flex: 0 0 260px;
  }

  .venue-card img {
    height: 260px;
  }
}
.venues {
  padding: var(--section-padding-y) 0 0;
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
}

.venues-inner {
  text-align: center;
  padding: 0 var(--section-padding-x);
}

.venues-header {
  margin-bottom: 50px;
}

.venues-strip {
  padding: 0 60px 80px;
  overflow: hidden;
}

.venues-swiper.is-linear .swiper-wrapper {
  transition-timing-function: linear !important;
}

.venues-strip::-webkit-scrollbar {
  display: none;
}

.venues-strip .venue-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}

.venues-strip .venue-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.venues-strip .venue-card:hover img {
  transform: scale(1.08);
}

.venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 33, 24, 0.8) 0%,
    transparent 55%
  );
}

.venue-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px;
}

.venue-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.venue-info p {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.venue-info .venue-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 8px;
}
.real-weddings {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--cream);
}

.real-weddings-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.rw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 28px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-bottom: 40px;
}

.rw-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rw-card:hover {
  transform: translateY(-5px);
}

.rw-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(10, 17, 40, 0.1);
}

.rw-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.rw-card:hover .rw-img-wrap img {
  transform: scale(1.1);
}

.rw-meta {
  position: absolute;
  bottom: -25px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  z-index: 2;
}

.rw-card:hover .rw-meta {
  background: #ffffff;
  bottom: -15px;
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
}

.rw-couple {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.2;
}

.rw-detail {
  font-size: 0.7rem;
  color: var(--text);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
}

.rw-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
  z-index: 3;
}
.testimonials {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
}

.testimonials .section-title {
  color: #fff;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.testimonials-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
  padding: 0 65px;
}

.testimonials-swiper {
  padding-bottom: 50px !important;
}

/* Equal-height slides */
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}
.testimonials-swiper .swiper-slide {
  height: auto !important;
  display: flex;
}
.testimonials-swiper .swiper-slide .testi-card {
  flex: 1;
}

.testi-nav-btn {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  color: var(--gold) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  top: 45% !important;
  z-index: 10 !important;
}

.testi-nav-btn::after {
  display: none !important;
}

.testi-nav-btn i {
  font-size: 1.5rem;
}

.testi-nav-btn:hover {
  background: var(--gold) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.swiper-button-prev.testi-nav-btn {
  left: 5px !important;
}

.swiper-button-next.testi-nav-btn {
  right: 5px !important;
}

@media (max-width: 768px) {
  .testimonials-container {
    padding: 0 15px;
  }
  .swiper-button-prev.testi-nav-btn,
  .swiper-button-next.testi-nav-btn {
    display: none !important;
  }
}

.testi-pagination {
  bottom: 0 !important;
}

.testi-card {
  background: #fff;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 4px 40px rgba(42, 33, 24, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(42, 33, 24, 0.1);
}

.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}

.testi-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.testi-event {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 2px;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
/* ─── TEAM SECTION — BEAST MODE ─────────────────────────────── */
.team {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--green); /* Deep dark navy */
  position: relative;
  overflow: hidden;
}

/* Glowing ambient orbs */
.team-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.12;
}
.team-bg-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -120px;
  left: -100px;
}
.team-bg-orb--2 {
  width: 400px;
  height: 400px;
  background: #a07040;
  bottom: -80px;
  right: -60px;
}

.team-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.team-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 14px;
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* ── Main 3-column single-row grid ── */
.team-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── Base card ── */
.team-card-new {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition:
    border-color 0.4s ease,
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card-new:hover {
  border-color: rgba(201, 168, 76, 0.6);
  transform: translateY(-6px);
}

/* Image container — uniform 4/5 portrait aspect for all cards */
.team-card-new__img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
}

.team-card-new__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.5s ease;
  filter: brightness(0.75) saturate(0.8);
}

.team-card-new:hover .team-card-new__img-wrap img {
  transform: scale(1.08);
  filter: brightness(0.6) saturate(1);
}

/* Dark-to-bottom gradient overlay */
.team-card-new__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(8, 13, 30, 0.5) 65%,
    rgba(8, 13, 30, 0.92) 100%
  );
  transition: opacity 0.4s ease;
}

/* Large editorial number watermark */
.team-card-new__number {
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 168, 76, 0.18);
  pointer-events: none;
  transition: color 0.4s;
  z-index: 2;
}

.team-card-new:hover .team-card-new__number {
  color: rgba(201, 168, 76, 0.35);
}

/* Info panel — sits at the bottom of the image */
.team-card-new__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Specialty tag badge */
.team-card-new__tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;

  background: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 4px 12px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 4px;
  transition:
    background 0.3s,
    color 0.3s;
}

.team-card-new:hover .team-card-new__tag {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
}

.team-card-new__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}

.team-card-new--mini .team-card-new__name {
  font-size: 1.15rem;
}

.team-card-new__role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.team-card-new__bio {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-top: 6px;
  margin-bottom: 6px;
  opacity: 0.85;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .team-grid-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .team-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .team-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  /* Shorter card height on mobile */
  .team-card-new__img-wrap {
    aspect-ratio: 3/4;
  }
  .team-card-new__bio {
    font-size: 0.72rem;
    line-height: 1.5;
    margin-top: 4px;
    margin-bottom: 6px;
  }
  /* Smaller text on mobile cards */
  .team-card-new__name {
    font-size: 1.1rem;
  }
  .team-card-new__role {
    font-size: 0.62rem;
  }
  .team-card-new__tag {
    font-size: 0.55rem;
    padding: 3px 10px;
  }
  .team-card-new__info {
    padding: 16px 14px;
    gap: 3px;
  }
}

@media (max-width: 576px) {
  .team-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
  }
  .team-card-new__img-wrap {
    aspect-ratio: 4/5;
  }
  .team-card-new__bio {
    font-size: 0.78rem;
  }
  .team-card-new__name {
    font-size: 1.25rem;
  }
  .team-card-new__role {
    font-size: 0.68rem;
  }
}

.instagram {
  background: var(--cream);
  overflow: hidden;
}

.insta-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 var(--section-padding-x);
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.insta-strip {
  display: flex;
  gap: 4px;
}

.insta-item {
  flex: 1;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.insta-item:hover .insta-hover {
  opacity: 1;
}

.insta-hover i {
  font-size: 38px;
  color: #ffffff !important;
}
.cta-banner {
  text-align: center;
  background: url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1600&q=80")
    center/cover no-repeat;
  position: relative;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 240, 0.88);
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-banner p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 22px;
  border: 1.5px solid var(--gold);
  border-right: none;
  background: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  outline: none;
  color: var(--dark);
}

.cta-form input:focus {
  border-color: var(--gold);
}

.cta-form button {
  padding: 16px 30px;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.cta-form button:hover {
  background: var(--gold);
}

/* CTA Banner Responsiveness */
@media (max-width: 768px) {
  .cta-banner {
    padding: var(--section-padding-y) var(--section-padding-x);
  }
  .cta-banner h2 {
    font-size: 2.2rem;
  }
  .cta-banner p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .cta-banner {
    padding: var(--section-padding-y) var(--section-padding-x);
  }
  .cta-banner h2 {
    font-size: 1.8rem;
  }
  .cta-form {
    flex-direction: column;
    gap: 12px;
  }
  .cta-form input {
    border-right: 1.5px solid var(--gold);
    border-radius: 4px;
    width: 100%;
    text-align: center;
  }
  .cta-form button {
    width: 100%;
    border-radius: 4px;
    padding: 14px 20px;
  }
}
footer {
  background: #1e1610;
  padding: 80px var(--section-padding-x) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.footer-brand .logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--dark);
  height: 100%;
  min-height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  display: block;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240, 163, 19, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  color: #fff;
  font-size: 1.5rem;
  backdrop-filter: blur(4px);
}

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

.lightbox-enabled {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-enabled:hover {
  transform: scale(1.02);
}

/* LIGHTBOX STYLES */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.98);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 3100;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

#lightboxImage {
  max-width: 90%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.lightbox-overlay.active #lightboxImage {
  transform: scale(1) translateY(0);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3050;
  backdrop-filter: blur(5px);
}

.lightbox-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.lightbox-arrow-prev {
  left: 40px;
}

.lightbox-arrow-next {
  right: 40px;
}

.lightbox-counter {
  position: absolute;
  bottom: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 992px) {
  .lightbox-wrapper {
    padding: 20px;
  }

  #lightboxImage {
    max-width: 100%;
    max-height: 75vh;
  }

  .lightbox-arrow {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    background: rgba(10, 17, 40, 0.4);
  }

  .lightbox-arrow-prev {
    left: 10px;
  }
  .lightbox-arrow-next {
    right: 10px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
  }

  .lightbox-counter {
    bottom: 20px;
  }
}

@media (max-width: 576px) {
  #lightboxImage {
    max-height: 60vh;
  }

  .lightbox-arrow {
    width: 36px;
    height: 36px;
  }

  .lightbox-counter {
    bottom: 20%;
    font-size: 0.7rem;
  }

  /* Grid Responsiveness */
  .video-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .video-card.featured {
    grid-row: span 1;
  }
  .video-card {
    height: 280px;
  }

  .rw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 12px;
    padding-bottom: 30px;
  }
  .rw-meta {
    padding: 12px;
    left: 8px;
    right: 8px;
    bottom: -20px;
  }
  .rw-card:hover .rw-meta {
    bottom: -12px;
  }
  .rw-couple {
    font-size: 1.1rem;
  }
  .rw-tag {
    font-size: 0.5rem;
    padding: 3px 8px;
    top: 10px;
    right: 10px;
  }

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

  .insta-strip {
    flex-wrap: wrap;
  }
  .insta-item {
    flex: 0 0 calc(50% - 2px);
  }
}

/* Global Page Header */
.page-header {
  padding: 180px var(--section-padding-x) 100px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .page-header {
    padding: 120px 0 80px;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .video-card.featured {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 60px;
  }
  .page-header h1 {
    font-size: 3rem;
  }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0a1128;
  background-image: radial-gradient(
    rgba(201, 168, 76, 0.15) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.footer-gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent 100%
  );
  opacity: 0.5;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.15fr 1fr 1.2fr;
  gap: 40px;
  padding: 80px 30px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Removed .footer-links-group as we now use direct 5-column grid */

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  text-decoration: none;
  display: inline-block;
}

.footer-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1;
}

.footer-logo-text em {
  font-style: italic;
  color: var(--gold);
}

/* .footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
} */

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 310px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.footer-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35);
}

/* Column headings */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}

.footer-col-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
  opacity: 0.7;
}

/* Footer links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}

.footer-links li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.footer-links li:hover i {
  transform: translateX(3px);
  opacity: 1;
}

.footer-links li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links li:hover a {
  color: var(--gold);
  transform: translateX(2px);
}

/* Contact items */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: var(--gold);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.footer-contact-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin: 0;
}

.footer-contact-item p a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item p a:hover {
  color: var(--gold);
}

/* Bottom bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  /* border-top: 1px solid rgba(201, 168, 76, 0.15); */
  /* background: rgba(0, 0, 0, 0.15); */
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.footer-copy span {
  color: var(--gold);
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-dot {
  color: rgba(201, 168, 76, 0.4);
  font-size: 0.9rem;
}

/* ── Footer Responsive ─────────────────────────── */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1.2fr 0.95fr 1.05fr 1fr 1.1fr;
    gap: 40px;
    padding: 70px 40px 50px;
  }
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
    padding: 60px 40px 50px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    padding: 20px 40px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
    padding: 45px 24px 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  .footer-desc {
    max-width: 100%;
    text-align: center;
  }
  .footer-col-divider {
    margin-left: 0;
    margin-right: 0;
  }
  .footer-col {
    align-items: flex-start;
  }
  .footer-links li a {
    justify-content: flex-start;
  }
  .footer-links li a::before {
    display: none;
  }
  .footer-links li a:hover {
    padding-left: 0;
  }
  .footer-contact-list {
    align-items: flex-start;
    width: 100%;
  }
  .footer-contact-item {
    justify-content: flex-start;
    text-align: left;
  }
  .footer-bottom {
    padding: 18px 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 40px 20px 35px;
  }
  .footer-brand {
    grid-column: 1;
  }
  /* Services + Quick Links stay side by side even on small mobile */
  .footer-links-group {
    grid-template-columns: 1fr 1fr;
    gap: 16px 16px;
  }
  .footer-col {
    align-items: flex-start;
  }
  .footer-col-title {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }
  .footer-links li a {
    font-size: 0.78rem;
  }
  .footer-bottom {
    padding: 16px 20px;
    gap: 10px;
  }
  .footer-bottom-links {
    gap: 10px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-card.featured {
    grid-column: span 1;
  }
}

/* Scroll Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:not(.visible) {
  transform: translateY(20px);
}

.scroll-top-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.4);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* UNIQUE GALLERY NAVIGATION ARROWS */
.gallery-nav-btn {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 1) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  border-radius: 50% !important;
  color: var(--dark) !important;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
  margin-top: -30px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.gallery-nav-btn:after {
  display: none !important;
}

.gallery-nav-btn svg {
  width: 26px;
  height: 26px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-nav-btn:hover {
  background: var(--gold) !important;
  color: #000000 !important;
  border-color: var(--gold) !important;
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.35);
  transform: scale(1.05);
}

.gallery-nav-btn.swiper-button-prev {
  /* left: -30px !important; */
}

.gallery-nav-btn.swiper-button-next {
  /* right: -30px !important; */
}

.gallery-nav-btn.swiper-button-prev:hover svg {
  transform: translateX(-4px);
}

.gallery-nav-btn.swiper-button-next:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1400px) {
  .gallery-nav-btn.swiper-button-prev {
    left: 20px !important;
  }
  .gallery-nav-btn.swiper-button-next {
    right: 20px !important;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    font-size: 1.75rem;
  }
  .nav-logo-img {
    height: 70px;
  }
  .gallery-nav-btn {
    width: 45px !important;
    height: 45px !important;
    margin-top: -55px !important;
  }
  .gallery-nav-btn.swiper-button-prev {
    left: 10px !important;
  }
  .gallery-nav-btn.swiper-button-next {
    right: 10px !important;
  }
  .gallery-nav-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 900;
}

.call-float {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 30px rgb(201, 168, 76,0.6);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgb(201, 168, 76,0.6);
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  animation: wpPulse 2s ease-in-out infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes wpPulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow:
      0 8px 40px rgba(37, 211, 102, 0.8),
      0 0 0 12px rgba(37, 211, 102, 0.12);
  }
}

/* Dropdown styles */
.nav-links li.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green);
  min-width: 200px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 1001;
}

.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 0.75rem;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

@media (max-width: 1024px) {
  .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  
  .nav-links li.dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-links li.dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
  .nav-links li.dropdown.active > a i {
    transform: rotate(180deg);
  }
}

/* Global SEO Tags Styling */
.seo-tag {
  display: inline-block;
  background: #fff;
  color: var(--green);
  border: 1px solid rgba(10, 17, 40, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.seo-tag:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(10, 17, 40, 0.1);
}

/* ─── VENUE PAGES – SHARED NEW SECTIONS ───────────────────────── */

/* Breadcrumb */
.venue-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.venue-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
}
.venue-breadcrumb a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.venue-breadcrumb a:hover { color: var(--gold); }
.venue-breadcrumb .bc-sep { color: var(--gold); opacity: 0.6; }
.venue-breadcrumb .bc-current { color: var(--gold); font-weight: 500; }

/* Intro paragraph */
.venue-intro-section {
  background: #fff;
  padding: 55px 0;
  border-bottom: 1px solid var(--border);
}
.venue-intro-text {
  max-width: 830px;
  margin: 0 auto;
  font-size: 1.22rem;
  line-height: 2;
  color: var(--text);
  text-align: center;
  font-weight: 300;
}

/* Venue tag pill under name */
.venue-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.venue-desc {
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 300;
}

/* Venue Page Card Grid & Card Styling */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.venue-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(10, 17, 40, 0.04);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}
.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 17, 40, 0.08);
}
.venue-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.venue-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 17, 40, 0) 65%, rgba(10, 17, 40, 0.15) 100%);
  pointer-events: none;
}
.venue-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.venue-card:hover .venue-img {
  transform: scale(1.08);
}
.venue-card-text {
  padding: 25px 25px 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-align: center;
}
.venue-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--green);
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
  transition: color 0.3s;
  width: 100%;
}
.venue-card:hover .venue-name {
  color: var(--gold);
}
.venue-card-action {
  padding: 15px 25px 25px 25px;
  border-top: 1px solid var(--border);
  background: #fafafa;
  width: 100%;
}
.venue-book-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: #fff;
  padding: 12px 0;
  border-radius: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}
.venue-book-btn:hover {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 17, 40, 0.2);
}

/* Venue Page CTA Box */
.venue-cta {
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(10, 17, 40, 0.2);
  position: relative;
  overflow: hidden;
}
.venue-cta-bg {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}
.venue-cta-bg-1 { top: -50px; right: -50px; }
.venue-cta-bg-2 { bottom: -50px; left: -50px; }
.venue-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Jost", sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 35px;
  position: relative;
  z-index: 2;
  font-weight: 300;
}
.venue-cta-btn {
  position: relative;
  z-index: 2;
  padding: 10px 30px;
  font-size: 0.85rem;
  border-radius: 5px;
}

/* Venue Page FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 25px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin: 0 0 10px;
  font-weight: 600;
}
.faq-a {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
  margin: 0;
}

/* Stats bar */
.venue-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 60px 0;
}
.venue-stats .stat-item {
  background: #fff;
  padding: 38px 20px;
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  font-weight: 500;
}

/* Why These Venues */
.why-venues { margin: 60px 0; }
.why-venues-header { text-align: center; margin-bottom: 40px; }
.why-venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 38px 30px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 17, 40, 0.07);
}
.why-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
}

/* How It Works */
.how-it-works {
  background: var(--cream);
  border-radius: 16px;
  padding: 60px 50px;
  margin: 60px 0;
}
.how-it-works-header { text-align: center; margin-bottom: 50px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.66% + 15px);
  right: calc(16.66% + 15px);
  height: 1px;
  background: var(--gold);
  opacity: 0.25;
}
.step-item { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.step-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-item p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
}

/* Venue Testimonials */
.venue-testimonials { margin: 60px 0; }
.venue-testimonials-header { text-align: center; margin-bottom: 35px; }
.venue-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.venue-testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 38px;
  position: relative;
  transition: transform 0.3s;
}
.venue-testi-card:hover { transform: translateY(-5px); }
.venue-testi-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.9rem; }
.venue-testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 15px;
  right: 25px;
}
.venue-testi-text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 22px;
}
.venue-testi-author { display: flex; align-items: center; gap: 14px; }
.venue-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.venue-testi-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}
.venue-testi-event {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* CTA trust note */
.venue-cta-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  position: relative;
  z-index: 2;
}

/* Venue page label and heading readability */
.venue-intro-block .services-header .section-label,
#venues .services-header .section-label,
.destination-header .section-label,
.why-venues-header .section-label,
.how-it-works-header .section-label,
.explore-locations-header .section-label,
.venue-faq .section-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--gold);
}

.testimonials-header .section-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--gold);
}

.venue-intro-block .services-header .section-title,
#venues .services-header .section-title,
.destination-header .section-title,
.why-venues-header .section-title,
.how-it-works-header .section-title,
.explore-locations-header .section-title,
.venue-faq .section-title {
  line-height: 1.05;
}

.venue-faq {
  margin-top: 90px;
  padding-top: 10px;
}

/* Explore Other Locations */
.explore-locations {
  padding: 90px var(--section-padding-x);
  background: var(--cream);
}
.explore-locations-header { text-align: center; margin-bottom: 50px; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.explore-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 340px;
  display: block;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(10, 17, 40, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.explore-card:hover { transform: translateY(-8px); }
.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.explore-card:hover img { transform: scale(1.07); }
.explore-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 0%, rgba(10, 17, 40, 0.3) 55%, transparent 100%);
  transition: background 0.3s;
}
.explore-card:hover .explore-overlay {
  background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.5) 60%, rgba(10, 17, 40, 0.1) 100%);
}
.explore-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}
.explore-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.explore-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  transition: gap 0.3s;
}
.explore-card:hover .explore-link { gap: 12px; }

/* Venue Intro Section */
.venue-intro-block { padding-bottom: 0 !important; }
.venue-intro-content { max-width: 860px; margin: 0 auto 40px; text-align: center; }
.venue-intro-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
}
.intro-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.intro-service-tag {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  background: rgba(var(--gold-rgb, 176, 141, 87), 0.05);
  transition: background 0.25s, color 0.25s;
}
.intro-service-tag:hover { background: var(--gold); color: #fff; }

/* Destination Wedding Section */
.destination-section { margin: 60px 0; }
.destination-header { text-align: center; margin-bottom: 40px; }
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.destination-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 38px 30px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s;
}
.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 17, 40, 0.07);
}
.destination-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.destination-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.destination-card p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
}

/* Why Choose Us – 4 column grid */
.why-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* CTA heading inside venue-cta box */
.venue-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  line-height: 1.25;
}

/* FAQ visible (no accordion) */
.faq-item .faq-a { display: block; }

/* Responsive – venue page new sections */
@media (max-width: 1024px) {
  .venue-stats { grid-template-columns: repeat(2, 1fr); }
  .why-venues-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .venue-intro-text { font-size: 1.02rem; }
  .venue-stats { grid-template-columns: repeat(2, 1fr); }
  .why-venues-grid { grid-template-columns: 1fr; }
  .why-grid-4 { grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .venue-testi-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 40px 25px; }
  .explore-locations { padding: 60px var(--section-padding-x); }
  .venue-cta-heading { font-size: 1.5rem; }
}

