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

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none !important;
}

body {
  font-size: 14px;
  font-family: 'Cormorant Garamond', serif;
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 120px;
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
}

/* LOGO */
.logo img {
  width: 140px !important;
  height: 90px !important;
  object-fit: contain;
}

/* NAV DESKTOP & DROPDOWN */
nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
  margin: 0 18px;
}

nav ul li a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav ul li a:hover {
  color: #d4af37 !important;
}

/* DROPDOWN MENU */
nav ul li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-top: 3px solid #d4af37;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 1000;
  display: block !important;
}

.dropdown-menu li {
  margin: 0 !important;
  display: block;
}

.dropdown-menu li a {
  padding: 10px 20px;
  color: #ddd !important;
  font-size: 15px !important;
  font-weight: 400;
  display: block !important;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37 !important;
  padding-left: 25px;
}

.dropdown-divider {
  height: 1px;
  background: #222;
  margin: 6px 0 !important;
}

/* BUTTON */
.contact-btn {
  background: #f5a623;
  padding: 10px 22px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #d4af37;
}

/* TOGGLE ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #ffffff !important;
  cursor: pointer;
}

/* ================= FULLSCREEN MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-100%);
  transition: 0.4s;
  z-index: 999;
}

/* ACTIVE */
.mobile-menu.active {
  transform: translateY(0);
}

/* MENU LINKS */
.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

  header {
    padding: 15px 20px;
  }

  nav {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* BANNER */
.banner {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND SLIDES */
.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

/* OVERLAY */
.banner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 14%);
  top: 0;
  left: 0;
  z-index: 1;
}

/* CONTENT */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
  font-weight: 800;
}

.banner-content p {
  font-size: 60px;
  padding: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.banner-content h1 {
  color: white;
  font-size: 32px;
  padding: 10px;
  font-family: 'Cormorant Garamond', serif;

}


.banner-content h2 {
  color: white;
  font-size: 32px;
  padding: 10px;
  font-family: 'Cormorant Garamond', serif;

}

.banner-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* BUTTON */
.btn {
  padding: 20px 25px;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background: #E09945;
  color: #000;
}

.btn-secondary {
  background: #fff;
  color: #000;
}

/* ================= TABLET ================= */
@media(max-width:1024px) {
  .banner {
    height: 80vh;
  }

  .btn {
    font-size: 20px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

  .banner {
    height: 125vh;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .btn {
    width: 80%;
    max-width: 250px;
    font-size: 18px;
  }

  .banner-content h1 {
    font-size: 47px !important;
  }

  .banner-content h2 {
    font-size: 27px !important;

  }

  .banner-content {
    top: 66% !important;

  }
}

/* ================= SMALL MOBILE ================= */
@media(max-width:480px) {

  .banner {
    height: 80vh;
    display: none;
  }

  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* Default hide (desktop) */
.mobile-video-banner {
  display: none;
}

/* Show only on mobile screens */
@media (max-width: 658px) {
  .mobile-video-banner {
    display: block;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    /* IMPORTANT */
  }

  .mobile-video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    /* ✅ THIS FIXES CLICK ISSUE */
  }

  .banner-section {
    display: none;
  }

  .banner-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 25px;
    width: 80%;
    z-index: 2;
    /* ✅ ABOVE VIDEO */
  }

  .banner-buttons button {
    position: relative;
    z-index: 3;
    /* extra safety */
  }
}

/* SECTION */
.about-section {
  padding: 80px 20px;
  text-align: center;
  background: #f4f4f4;
}

/* TITLE */
.about-title span {
  font-size: 131px;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.about-title h2 {
  font-size: 90px;
  font-weight: 400;
  margin: 10px 0;
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  /* border:2px solid #4aa3df; */
  font-family: 'Cormorant Garamond', serif;
}

.about-title h2:before,
.about-title h2:after {
  content: '';
  position: absolute;
  top: 50%;
  /* width:60px; */
  height: 1px;
  background: #000;
}

.about-title h2:before {
  left: -60px;
}

.about-title h2:after {
  right: -60px;
}

/* DESCRIPTION */
.about-desc {
  max-width: 1200px;
  margin: 20px auto 50px;
  font-size: 22px;
  color: #242323;
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
}

/* IMAGE GRID */
.about-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* IMAGE BOX */
.img-box {
  width: calc(25% - 20px);
  /* responsive 4 in row */
  min-width: 250px;
  position: relative;
}

/* ZIG ZAG EFFECT */
.img-box:nth-child(odd) {
  transform: translateY(-30px);
}

.img-box:nth-child(even) {
  transform: translateY(30px);
}

.img-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ================= TABLET ================= */
@media(max-width:1024px) {

  .img-box {
    width: calc(50% - 20px);
    /* 2 images per row */
  }

  .about-title h2 {
    font-size: 70px;
  }
}

/* ================= MOBILE ================= */
@media(min-width:768px) {
  .img-box {
    display: none;
  }
}

@media(max-width:768px) {

  .about-title span {
    font-size: 60px;
  }

  .about-title h2 {
    font-size: 40px;
    padding: 8px 20px;
  }

  .about-title h2:before,
  .about-title h2:after {
    display: none;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .img-box {
    width: 90%;
    transform: none !important;
  }

  .img-box img {
    height: auto;
  }

  .img-set {
    display: none;
  }

  .about-desc {
    font-size: 16px !important;
  }
}

@media(max-width:568px) {

  .about-images {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .img-box {
    width: calc(50% - 10px);
    /* ✅ 2 images per row */
    min-width: auto;
  }

  .img-box img {
    height: 180px;
    object-fit: cover;
  }
}

.section {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

/* HEADING */
.section h3 {
  font-size: 64px;
  margin-bottom: 10px;
  font-family: Cormorant Garamond;
  font-weight: 900;
}

.section h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.section p {
  max-width: 974px;
  margin: 20px auto 50px;
  font-size: 22px;
  color: #242323;
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
}

/* SERVICES SWIPER SLIDER */
.services-swiper {
  padding: 10px 10px 50px;
}

.svc-slide-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.svc-slide-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.svc-slide-card:hover img {
  transform: scale(1.05);
}

.svc-slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-top: 3px solid #c78b4a;
}

.svc-slide-icon {
  width: 42px;
  height: 42px;
  background: #c78b4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-slide-icon i {
  color: #fff;
  font-size: 16px;
}

.svc-slide-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.svc-slide-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

.services-swiper .swiper-pagination-bullet {
  background: #c78b4a;
}

/* ================= TABLET ================= */
@media(max-width:1024px) {
  .section h3 {
    font-size: 52px;
  }

  .svc-slide-card img {
    height: 380px;
  }
}

@media(max-width:768px) {
  .section h3 {
    font-size: 38px;
  }

  .svc-slide-card img {
    height: 320px;
  }

  .svc-slide-info h4 {
    font-size: 17px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
  .slide {
    min-width: 100%;
  }

  .info {
    width: 85%;
  }
}

/* ================= SMALL MOBILE ================= */
@media(max-width:568px) {
  .section h3 {
    font-size: 40px;
    font-weight: 500;
  }

  .section h4 {
    font-size: 18px;
  }

  .section p {
    font-size: 16px;
  }
}

.explore {
  position: relative;
  padding: 30px 20px;
  color: #fff;
  overflow: hidden;
}

/* Two background layers for smooth crossfade */
.explore-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.explore-bg.active {
  opacity: 1;
}

/* overlay */
.explore::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

/* CONTENT */
.explore-content {
  position: relative;
  z-index: 2;
  max-width: 1457px;
  margin: auto;
  padding: 40px;
}


/* TEXT TOP LEFT */
.explore-text {
  max-width: 600px;
  margin-bottom: 50px;
}

.explore-title {
  font-size: 64px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.explore-subtitle {
  max-width: 974px;
  /* margin: 20px auto 50px; */
  font-size: 22px;
  color: #ffffff;
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
}

/* SLIDER CENTER */
.explore-slider-box {
  position: relative;
  max-width: 851px;
  margin: 0 auto;
  z-index: 2;
  padding: 50px;
}

.explore-slide {
  display: none;
}

.explore-slide.active {
  display: block;
}

.explore-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* CARD */
.explore-card {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 12px;
}

/* ARROWS */
.explore-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  cursor: pointer;
  z-index: 5;
}

.explore-left {
  left: -40px;
}

.explore-right {
  right: -40px;
}

/* MOBILE */
@media(max-width:768px) {

  .explore {
    padding: 60px 15px;
  }

  .explore-title {
    font-size: 37px;
    font-weight: 500;
  }

  .explore-subtitle {
    font-size: 16px;
  }

  .explore-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .explore-slide img {
    height: 220px;
  }

  .explore-left {
    left: 5px;
  }

  .explore-right {
    right: 5px;
  }
}

/* SECTION */
.why-section {
  background: #f5efe6;
  padding: 80px 40px;
  text-align: center;
}

/* TITLE */
.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  color: #c78b4a;
  margin-bottom: 50px;
  font-weight: 500;
}

/* 6-col grid trick: 3 cards row 1, 2 cards centered row 2 */
.why-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  grid-column: span 2;
}

/* Center the last 2 cards */
.why-card:nth-child(4) {
  grid-column: 2 / 4;
}

.why-card:nth-child(5) {
  grid-column: 4 / 6;
}

/* CARD */
.why-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 36px 24px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(199, 139, 74, 0.08);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e09945, #c78b4a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(199, 139, 74, 0.18);
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* ICON — circular golden background */
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e09945 0%, #c78b4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 22px rgba(199, 139, 74, 0.35);
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

/* HEADING */
.why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

/* TEXT */
.why-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #52575C;
  line-height: 1.7;
}

/* MOBILE */
@media(max-width:1024px) {
  .why-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card,
  .why-card:nth-child(4),
  .why-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media(max-width:768px) {
  .why-section {
    padding: 60px 20px;
  }

  .why-container {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card:nth-child(4),
  .why-card:nth-child(5) {
    grid-column: span 1;
  }

  .why-title {
    font-size: 40px;
    font-weight: 500;
  }
}

/* SECTION */
.contact-section {
  background: #f5f5f5;
  padding: 60px 20px;
}

/* TITLE */
.contact-title {
  text-align: center;
  font-family: Cormorant Garamond;
  font-size: 58px;
  margin-bottom: 40px;
  font-weight: 500;
}

.contact-subtitle {
  text-align: center;
  max-width: 974px;
  margin: 20px auto 50px;
  font-size: 22px;
  color: #242323;
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
}

/* LAYOUT */
.contact-container {
  display: flex;
  gap: 30px;
  max-width: 1317px;
  margin: auto;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
}

/* MAP */
.map {
  width: 100%;
  height: 220px;
  border-radius: 5px;
  overflow: hidden;
}

/* INFO */
.contact-info {
  margin-top: 20px;
}

.contact-info div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.contact-info i {
  margin-right: 10px;
  color: #e09945;
}

/* RIGHT FORM */
.contact-right {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}

.contact-form textarea {
  height: 90px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  background: #e09945;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-title {
    font-size: 40px;
    font-weight: 500;
  }

  .contact-subtitle {
    font-size: 16px !important;

  }
}

/* FOOTER */
.footer {
  background: #f5f5f5 !important;
  padding: 60px 20px 30px !important;
  font-family: 'Cormorant Garamond', serif !important;
  border-top: 1px solid #e5e5e5;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 200px;
}

/* HEADINGS */
.footer-col h3,
.footer-col h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.5rem !important;
  color: #000000 !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
}

.footer-col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 15px;
}

/* ICON TEXT */
.footer-info div {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-info i {
  color: #c78b4a;
  font-size: 1rem;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col ul li a {
  text-decoration: none !important;
  color: #555555 !important;
  font-size: 0.95rem !important;
  font-family: 'Cormorant Garamond', serif !important;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #c78b4a !important;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #777777;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  font-family: 'Cormorant Garamond', serif;
}

/* MOBILE */
@media(max-width:768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col p {
    font-size: 16px !important;
  }
}

/* ===== OUR STORY SECTION ===== */
.story-section {
  background: #f5efe6;
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "Story";
  position: absolute;
  top: -10px;
  right: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(199, 139, 74, 0.07);
  pointer-events: none;
  line-height: 1;
}

.story-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c78b4a;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
  display: block;
}

.story-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 82px;
  font-weight: 300;
  font-style: italic;
  color: #242323;
  margin: 0 0 8px;
  line-height: 1.1;
}

.story-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px auto 30px;
  color: #c78b4a;
  max-width: 220px;
}

.story-ornament::before,
.story-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #c78b4a;
}

.story-ornament span {
  font-size: 15px;
  letter-spacing: 5px;
}

.story-text {
  font-size: 17px;
  line-height: 1.95;
  color: #52575C;
  margin: 0 auto 38px;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
}

/* Stats row */
.story-stats {
  display: flex;
  gap: 18px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.story-stat-item {
  text-align: center;
  padding: 16px 24px;
  border: 1px solid rgba(199, 139, 74, 0.5);
  border-radius: 4px;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.55);
  transition: 0.3s;
}

.story-stat-item:hover {
  background: #c78b4a;
  border-color: #c78b4a;
}

.story-stat-item:hover .story-stat-num,
.story-stat-item:hover .story-stat-label {
  color: #fff;
}

.story-stat-num {
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  color: #c78b4a;
  font-weight: 600;
  display: block;
  line-height: 1.2;
  transition: 0.3s;
}

.story-stat-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  font-family: 'Cormorant Garamond', serif;
  transition: 0.3s;
}

/* Button */
.story-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #c78b4a;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.story-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #c78b4a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.story-btn:hover::after {
  transform: scaleX(1);
}

.story-btn:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .story-section {
    padding: 60px 20px;
    text-align: center;
  }

  .story-section::before {
    font-size: 100px;
    right: 10px;
  }

  .story-heading {
    font-size: 52px;
  }

  .story-text {
    font-size: 15px;
    text-align: center;
  }

  .story-stats {
    justify-content: center;
    gap: 12px;
  }

  .story-stat-item {
    min-width: 90px;
    padding: 12px 16px;
  }

  .story-stat-num {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .story-heading {
    font-size: 40px;
  }

  .story-section::before {
    display: none;
  }
}

/* abput-page */

.about-us {
  background-color: #ffffff;
  width: 100%;
  position: relative;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Paragraph */
.about-us .discover-our {
  position: absolute;
  top: 195px;
  left: 56%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1068px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #707070;
  font-size: 24px;
  text-align: center;
  line-height: 36px;
}

/* Heading */
.about-us .text-wrapper-13 {
  position: absolute;
  top: 84px;
  left: 36%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  color: #000000;
  font-size: 64px;
  text-align: start;
}

/* Line */
.about-us .line {
  position: absolute;
  top: 122px;
  left: 88px;
  width: 155px;
  height: 2px;
}

/* ========================= */
/* 📱 TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 1024px) {

  .about-us .text-wrapper-13 {
    font-size: 48px;
    top: 70px;
  }

  .about-us .discover-our {
    font-size: 20px;
    line-height: 32px;
    top: 160px;
  }

  .about-us .line {
    left: 40px;
    width: 120px;
  }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

  .about-us {
    padding: 60px 15px 40px;
    min-height: 260px;
  }

  .about-us .text-wrapper-13 {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
  }

  .about-us .line {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 15px;
    display: block;
  }

  .about-us .discover-our {
    position: relative;
    top: 117px;
    left: 0;
    transform: none;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
  }

  .about-section-1 {
    margin-top: 0px !important;
  }
}

.about-section-1 {
  width: 100%;
  padding: 60px 5%;
  background: #ffffff;
  margin-top: 0px;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
  gap: 40px;
}

/* Reverse row */
.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
  text-align: start;
}

.about-text h2 {
  font-size: 32px;
  color: #c98c3a;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: Cormorant Garamond;
  text-align: start;
  font-weight: 500;

}

.about-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #52575C;
  margin-bottom: 38px;
  font-family: 'Cormorant Garamond', serif;
  text-align: start;

}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #c98c3a;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn:hover {
  background: #c98c3a;
  color: #fff;
}

/* 🔥 Mobile Responsive */
@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }

  .about-row.reverse {
    flex-direction: column;
  }

  .about-text {
    text-align: center;
    margin-top: 30px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 14px;
  }
}


.testimonial-section {
  background: #ffffff;
  padding: 80px 10%;
  color: #fff;
  text-align: center;
}

.testimonial-header h4 {
  color: #777;
  font-size: 18px;
  margin-bottom: 10px;

}

.testimonial-header h2 {
  font-size: 58px;
  margin-bottom: 15px;
  color: #242424;
  font-weight: 500;
}

.testimonial-header span {
  color: #f5a623;
}

.testimonial-header p {
  color: #4e4b4b;
  margin-bottom: 50px;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
}

/* Slider spacing */
.testimonial-slider {
  padding-bottom: 40px;
}

/* Card */
.testimonial-card {
  background: #fffefe;
  color: #333;
  padding: 25px;
  text-align: left;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  height: 100%;
}

.testimonial-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user h5 {
  margin: 0;
  font-size: 14px;
}

.stars {
  color: #f5a623;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-header h2 {
    font-size: 28px;
  }
}

/* Blog */
/* ── BLOG PAGE ──────────────────────────────────────────────────── */
.blog-page {
  background: #faf6f0;
  padding: 80px 5% 90px;
}

.blog-page-top {
  text-align: center;
  margin-bottom: 56px;
}

.blog-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c78b4a;
  display: block;
  margin-bottom: 12px;
}

.blog-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
  margin: 0 0 18px;
  line-height: 1.1;
}

.blog-heading em {
  color: #c78b4a;
  font-style: italic;
}

.blog-rule {
  width: 60px;
  height: 1px;
  background: #c78b4a;
  margin: 0 auto;
}

/* Tile grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.blog-tile {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.blog-tile-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.blog-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.blog-tile:hover .blog-tile-img img {
  transform: scale(1.06);
}

.blog-tile-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #c78b4a;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.blog-tile-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tile-meta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}

.blog-tile-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 12px;
}

.blog-tile-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin: 0 0 20px;
}

.blog-tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c78b4a;
  text-decoration: none;
  border-bottom: 1px solid #c78b4a;
  padding-bottom: 2px;
  transition: color 0.25s, gap 0.25s;
  align-self: flex-start;
}

.blog-tile-btn:hover {
  gap: 14px;
  color: #a06a2e;
}

/* Featured first tile spans 2 columns */
.blog-tile.featured {
  grid-column: span 2;
  flex-direction: row;
}

.blog-tile.featured .blog-tile-img {
  width: 52%;
  flex-shrink: 0;
  aspect-ratio: unset;
}

.blog-tile.featured .blog-tile-body {
  padding: 36px 34px;
}

.blog-tile.featured .blog-tile-body h3 {
  font-size: 30px;
}

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

  .blog-tile.featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .blog-tile.featured .blog-tile-img {
    width: 100%;
    aspect-ratio: 3/2;
  }

  .blog-heading {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .blog-page {
    padding: 60px 5% 70px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-tile.featured {
    grid-column: span 1;
  }

  .blog-heading {
    font-size: 34px;
  }
}

.gallery-section {
  padding: 40px 20px;
  background: #fff;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

/* Images Common */
.gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Left Column */
.gallery-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

/* Center Large */
.gallery-center {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* Right Tall */
.gallery-right {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

/* Bottom Row */
.gallery-bottom {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-container img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

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

  .gallery-left {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .gallery-center,
  .gallery-right,
  .gallery-bottom {
    grid-column: auto;
  }

  .gallery-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-bottom {
    grid-template-columns: 1fr;
  }
}

body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

.values-section {
  background: #f3f3f3;
  padding: 60px 200px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #111;
}

/* Grid Layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.value-card {
  background: #fff;
  padding: 30px 50px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s;
}

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

/* Year Circle */
.year {
  width: 80px;
  height: 80px;
  background: #f4d3a5;
  color: #9c5b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
  font-weight: 500;
}

/* Title */
.value-card h4 {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
}

/* Description */
.value-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Progress Bar */
.progress {
  background: #ddd;
  height: 29px;
  border-radius: 20px;
  margin-top: 15px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: #f7941d;
  border-radius: 20px;
}

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

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }

  .year {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }

  .values-section {
    padding: 60px 50px !important;
  }
}

.about-section-01 {
  padding: 50px 20px;
  text-align: center;
  background: #ffffff;
}

.banner-1 {
  height: 60vh;
  min-height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/wedding-catering-1 (1).jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.banner-2 {
  height: 60vh;
  min-height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/v3021_873.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.banner-3 {
  height: 60vh;
  min-height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/dfdfdf.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.banner-4 {
  height: 60vh;
  min-height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/DSC02961 4.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.banner-content-1 {
  max-width: 700px;
}

.banner-1 h1 {
  font-size: 64px;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: Cormorant Garamond;
  font-weight: 900;
}

.banner-1 p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .banner-1 {
    height: auto;
    padding: 60px 20px;
  }

  .banner-1 h1 {
    font-size: 48px !important;
  }

  .banner-2 {
    height: auto;
    padding: 60px 20px;
  }

  .banner-2 h1 {
    font-size: 48px !important;
  }

  .banner-3 {
    height: auto;
    padding: 60px 20px;
  }

  .banner-3 h1 {
    font-size: 48px !important;
  }

  .banner-4 {
    height: auto;
    padding: 60px 20px;
  }

  .banner-4 h1 {
    font-size: 48px !important;
  }


  .btn {
    width: 100%;
    max-width: 250px;
  }

  .banner-content-2 {
    margin-top: 97px;
  }

  .banner-content-1 {
    margin-top: 97px;
  }

  .banner-content-3 {
    margin-top: 97px;
  }

  .banner-content-4 {
    margin-top: 97px;
  }
}

.banner-content-2 {
  max-width: 700px;
}

.banner-2 h1 {
  font-size: 64px;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: Cormorant Garamond;
}

.banner-content-3 {
  max-width: 700px;
}

.banner-3 h1 {
  font-size: 64px;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: Cormorant Garamond;
}

.banner-4 h1 {
  font-size: 64px;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: Cormorant Garamond;
}

/* ========================================
   SOCIAL ICONS FLOATING WIDGET
   ✏️ To change links, find .social-float
      in your HTML and update the href values
   ======================================== */
.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-float a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50px;
  height: 50px;
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.25);
  transition: width 0.35s ease, box-shadow 0.3s ease;
  padding-right: 14px;
}

.social-float a .sf-label {
  position: absolute;
  left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.social-float a:hover {
  width: 145px;
  box-shadow: -5px 5px 18px rgba(0, 0, 0, 0.3);
}

.social-float a:hover .sf-label {
  opacity: 1;
  transform: translateX(0);
}

.social-wa {
  background: #25D366;
}

.social-ig {
  background: linear-gradient(160deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-mail {
  background: #c78b4a;
}

.social-call {
  background: #2c2c2c;
}

@media (max-width: 768px) {
  .social-float a {
    width: 44px;
    height: 44px;
    font-size: 17px;
    padding-right: 12px;
  }

  .social-float a:hover {
    width: 130px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff;
  padding: 80px 20px;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-tag {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c78b4a;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
}

.faq-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: #242323;
  margin: 0 0 10px;
  line-height: 1.2;
}

.faq-subtitle {
  text-align: center;
  font-size: 16px;
  color: #777;
  font-family: 'Cormorant Garamond', serif;
  margin: 0 0 50px;
}

.faq-item {
  border-bottom: 1px solid #e8e0d5;
  overflow: hidden;
}

.faq-item:first-of-type {
  border-top: 1px solid #e8e0d5;
}

.faq-q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #242323;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1.5px solid #c78b4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #c78b4a;
  transition: transform 0.35s ease, background 0.2s;
  font-style: normal;
}

.faq-item[open] .faq-q {
  color: #c78b4a;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: #c78b4a;
  color: #fff;
}

.faq-a {
  padding: 0 4px 20px;
  font-size: 16px;
  line-height: 1.85;
  color: #52575C;
  font-family: 'Cormorant Garamond', serif;
  animation: faqSlide 0.3s ease;
}

@keyframes faqSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@media (max-width: 768px) {
  .faq-title {
    font-size: 36px;
  }

  .faq-q {
    font-size: 17px;
  }

  .faq-a {
    font-size: 15px;
  }
}

/* ===== BOOKING FORM SECTION ===== */
.booking-section {
  position: relative;
  background: url('../images/tVxArZ5YoPDG9hYWTEQe2ggHOaGHbYRT6iwpM0yq.webp') center/cover no-repeat;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.booking-panel {
  position: relative;
  z-index: 1;
  background: #efefef;
  max-width: 940px;
  width: 100%;
  padding: 52px 60px;
  text-align: center;
}

.booking-tag {
  display: inline-block;
  border: 1.5px solid #e09945;
  border-radius: 50px;
  padding: 6px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #333;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 16px;
}

.booking-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 32px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

/* 3-column grid */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

/* Wrapper for selects (custom arrow) */
.booking-select-wrap {
  position: relative;
}

.booking-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #888;
  pointer-events: none;
}

/* All inputs and selects */
.booking-grid input,
.booking-grid select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e09945;
  background: #fff;
  font-size: 14px;
  color: #555;
  font-family: 'Cormorant Garamond', serif;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}

.booking-grid input:focus,
.booking-grid select:focus {
  border-color: #c78b4a;
}

.booking-grid input::placeholder {
  color: #888;
}

/* Submit button */
.booking-submit {
  display: block;
  margin: 24px auto 16px;
  background: #e09945;
  color: #fff;
  border: none;
  padding: 15px 65px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  transition: background 0.3s;
  letter-spacing: 0.5px;
}

.booking-submit:hover {
  background: #c78b4a;
}

/* WhatsApp link */
.booking-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.2s;
}

.booking-whatsapp i {
  font-size: 20px;
  color: #25D366;
}

.booking-whatsapp:hover {
  color: #e09945;
}

/* Tablet */
@media (max-width: 900px) {
  .booking-panel {
    padding: 40px 30px;
  }
}

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

  .booking-panel {
    padding: 36px 20px;
  }

  .booking-title {
    font-size: 22px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-submit {
    width: 100%;
    padding: 14px 20px;
  }
}

/* ===== SERVICE LOCATIONS SECTION ===== */
.locations-section {
  background: #111;
  padding: 90px 40px;
  text-align: center;
}

.locations-header {
  max-width: 820px;
  margin: 0 auto 55px;
}

.locations-tag {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c78b4a;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 14px;
}

.locations-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.2;
}

.locations-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
}

/* 5-column grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

/* Each card */
.loc-card {
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

/* Inner zoom image */
.loc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

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

/* Dark gradient overlay */
.loc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.4) 45%,
      rgba(0, 0, 0, 0.1) 100%);
  transition: background 0.5s ease;
  z-index: 1;
}

.loc-card:hover .loc-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(199, 139, 74, 0.25) 60%,
      rgba(0, 0, 0, 0.15) 100%);
}

/* Golden top bar on hover */
.loc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e09945, #c78b4a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: 3;
}

.loc-card:hover::after {
  transform: scaleX(1);
}

/* Card bottom info */
.loc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 28px;
  z-index: 2;
  text-align: left;
}

.loc-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #c78b4a;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.loc-card:hover .loc-number {
  opacity: 1;
  transform: translateY(0);
}

.loc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.1;
}

.loc-service {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #c78b4a;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.18s, transform 0.3s ease 0.18s;
  text-decoration: none;
}

.loc-card:hover .loc-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom CTA */
.locations-cta {
  margin-top: 10px;
}

.locations-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.locations-cta a {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #c78b4a;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  z-index: 0;
}

.locations-cta a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #c78b4a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.locations-cta a:hover::after {
  transform: scaleX(1);
}

/* Tablet */
@media (max-width: 1200px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .loc-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .loc-card:nth-child(5) {
    grid-column: 2 / 3;
  }
}

@media (max-width: 768px) {
  .locations-section {
    padding: 60px 20px;
  }

  .locations-title {
    font-size: 36px;
  }

  .locations-subtitle {
    font-size: 16px;
  }

  .locations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .loc-card,
  .loc-card:nth-child(4),
  .loc-card:nth-child(5) {
    grid-column: span 1;
    height: 260px;
  }

  .loc-card:last-child {
    grid-column: 1 / -1;
  }

  .loc-name {
    font-size: 22px;
  }

  .loc-number,
  .loc-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .loc-card,
  .loc-card:last-child {
    grid-column: span 1;
    height: 240px;
  }
}


/* ===== SERVICES PAGE ===== */

/* Hero intro */
.services-hero {
  background: #f5efe6;
  padding: 110px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "Services";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 700;
  color: rgba(199, 139, 74, 0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.services-hero-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c78b4a;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 14px;
}

.services-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  color: #1a1a1a;
  margin: 0 0 22px;
  line-height: 1.1;
}

.services-hero-desc {
  max-width: 680px;
  margin: 0 auto 55px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: #52575C;
  line-height: 1.85;
}

/* Stats row */
.services-stats {
  display: flex;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(199, 139, 74, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.services-stat {
  flex: 1;
  padding: 22px 10px;
  border-right: 1px solid rgba(199, 139, 74, 0.25);
  background: rgba(255, 255, 255, 0.6);
}

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

.services-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: #c78b4a;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}

.services-stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service panels wrapper */
.svc-panels {
  overflow: hidden;
}

/* Single panel */
.svc-panel {
  display: flex;
  min-height: 580px;
}

.svc-panel.svc-reverse {
  flex-direction: row-reverse;
}

/* Image side */
.svc-img-side {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.svc-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-panel:hover .svc-img-side img {
  transform: scale(1.06);
}

.svc-big-num {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}

/* Content side */
.svc-content-side {
  flex: 1;
  padding: 70px 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.svc-panel:nth-child(even) .svc-content-side {
  background: #faf7f3;
}

.svc-icon-wrap {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #e09945, #c78b4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(199, 139, 74, 0.3);
}

.svc-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c78b4a;
  margin-bottom: 10px;
}

.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 4px;
  line-height: 1.15;
}

.svc-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #e09945, #c78b4a);
  margin: 16px 0 20px;
  border-radius: 2px;
}

.svc-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.95;
  color: #52575C;
  margin-bottom: 26px;
}

/* Feature bullets */
.svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #444;
}

.svc-features li i {
  color: #c78b4a;
  font-size: 12px;
  flex-shrink: 0;
}

/* Book button */
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 1px;
  transition: background 0.3s;
  align-self: flex-start;
  border: 1.5px solid #1a1a1a;
}

.svc-btn:hover {
  background: #c78b4a;
  border-color: #c78b4a;
}

/* Testimonial section updated */
.svc-testimonial {
  background: #f5efe6;
  padding: 80px 40px;
  text-align: center;
}

.svc-testimonial-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c78b4a;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
}

.svc-testimonial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 50px;
}

.svc-testimonial-title span {
  color: #c78b4a;
  font-style: italic;
}

.svc-tcard {
  background: #fff;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border-bottom: 3px solid #c78b4a;
  height: 100%;
}

.svc-tcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #c78b4a;
  line-height: 1;
  margin-bottom: 8px;
}

.svc-tcard p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 22px;
}

.svc-tcard-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-tcard-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.svc-tcard-user h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
}

.svc-tcard-user span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #888;
}

.svc-stars {
  color: #e09945;
  font-size: 13px;
  margin-bottom: 2px;
}

.svc-tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-content-side {
    padding: 60px 40px;
  }

  .svc-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 80px 20px 60px;
  }

  .services-hero-title {
    font-size: 44px;
  }

  .services-hero::before {
    font-size: 90px;
  }

  .services-hero-desc {
    font-size: 16px;
  }

  .services-stats {
    flex-wrap: wrap;
  }

  .services-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(199, 139, 74, 0.2);
  }

  .svc-panel,
  .svc-panel.svc-reverse {
    flex-direction: column;
  }

  .svc-img-side {
    min-height: 280px;
    max-height: 320px;
  }

  .svc-content-side {
    padding: 44px 24px;
  }

  .svc-title {
    font-size: 34px;
  }

  .svc-desc {
    font-size: 16px;
  }

  .svc-btn {
    align-self: stretch;
    justify-content: center;
  }

  .svc-testimonial {
    padding: 60px 20px;
  }

  .svc-testimonial-title {
    font-size: 34px;
  }

  .svc-tgrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .svc-tgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   ABOUT PAGE REDESIGN
   =================================== */

/* Split Intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  max-height: 900px;
}

.ai-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  overflow: hidden;
  background: #1a1a1a;
}

.ai-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88);
}

.ai-collage img:hover {
  transform: scale(1.05);
  filter: brightness(1.02);
}

.ai-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.ai-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.ai-bot {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.ai-content {
  background: #fff;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-tag {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c78b4a;
  margin-bottom: 16px;
}

.ai-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.ai-title em {
  color: #c78b4a;
  font-style: italic;
}

.ai-line {
  width: 52px;
  height: 2px;
  background: #c78b4a;
  margin-bottom: 24px;
}

.ai-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 38px;
}

.ai-stats {
  display: flex;
  border: 1px solid #e8d9c5;
}

.ai-stat {
  flex: 1;
  text-align: center;
  padding: 18px 10px;
  border-right: 1px solid #e8d9c5;
}

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

.ai-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: #c78b4a;
  line-height: 1;
}

.ai-stat span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #999;
  text-transform: uppercase;
}

/* Journey Timeline */
.journey-section {
  background: #111;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: 'SINCE 1966';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 12px;
}

.journey-tag {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c78b4a;
  text-align: center;
  margin-bottom: 10px;
}

.journey-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0 0 80px;
  line-height: 1.2;
}

.journey-title em {
  color: #c78b4a;
  font-style: italic;
}

.journey-track {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.journey-track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c78b4a 15%, #c78b4a 85%, transparent);
}

.journey-step {
  padding: 0 20px;
  position: relative;
}

.journey-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c78b4a;
  border: 2px solid #111;
  box-shadow: 0 0 0 2px #c78b4a;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.journey-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  color: #c78b4a;
  line-height: 1;
  margin-bottom: 6px;
}

.journey-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.journey-step p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-intro {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .ai-collage {
    height: 420px;
  }

  .ai-content {
    padding: 60px 48px;
  }

  .ai-title {
    font-size: 42px;
  }

  .journey-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 0;
  }

  .journey-track::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-intro {
    height: auto;
    max-height: none;
  }

  .ai-collage {
    height: 320px;
  }

  .ai-content {
    padding: 48px 24px;
  }

  .ai-title {
    font-size: 34px;
  }

  .ai-stats {
    flex-wrap: wrap;
  }

  .ai-stat {
    min-width: 50%;
  }

  .journey-section {
    padding: 70px 24px;
  }

  .journey-title {
    font-size: 36px;
  }

  .journey-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journey-step {
    border-left: 1px solid rgba(199, 139, 74, 0.4);
    padding: 0 0 40px 28px;
  }

  .journey-dot {
    position: absolute;
    left: -7px;
    top: 4px;
    margin: 0;
  }
}

/* ===================================
   LIVE STATIONS SECTION
   =================================== */
.live-stations {
  background: #0d0d0d;
  padding: 90px 40px;
  text-align: center;
}

.ls-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  font-weight: 400;
  font-style: italic;
  color: #c78b4a;
  margin-bottom: 14px;
  line-height: 1.1;
}

.ls-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  color: #c78b4a;
  font-size: 18px;
}

.ls-divider::before,
.ls-divider::after {
  content: '';
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c78b4a);
}

.ls-divider::after {
  background: linear-gradient(90deg, #c78b4a, transparent);
}

.ls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.ls-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.ls-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.55);
}

.ls-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.75);
}

.ls-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.05) 55%);
  display: flex;
  align-items: flex-end;
  padding: 26px 28px;
  transition: background 0.3s ease;
}

.ls-card:hover .ls-card-overlay {
  background: linear-gradient(to top, rgba(199, 139, 74, 0.35) 0%, rgba(0, 0, 0, 0.1) 55%);
}

.ls-card-text {
  text-align: left;
}

.ls-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
}

.ls-name em {
  color: #e09945;
  font-style: normal;
}

.ls-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  display: block;
}

.ls-cta {
  margin-top: 10px;
}

.ls-cta a {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c78b4a;
  border: 1px solid #c78b4a;
  padding: 14px 44px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ls-cta a:hover {
  background: #c78b4a;
  color: #fff;
}

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

  .ls-heading {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .live-stations {
    padding: 70px 20px;
  }

  .ls-heading {
    font-size: 36px;
  }

  .ls-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .ls-name {
    font-size: 22px;
  }
}

/* ── HAPPY CLIENTS ─────────────────────────────────────────────── */
.happy-clients {
  background: #faf6f0;
  padding: 80px 0 70px;
  overflow: hidden;
  text-align: center;
}

.hc-top {
  padding: 0 40px;
  margin-bottom: 48px;
}

.hc-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c78b4a;
  display: block;
  margin-bottom: 12px;
}

.hc-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
  margin: 0 0 18px;
  line-height: 1.1;
}

.hc-heading em {
  color: #c78b4a;
  font-style: italic;
}

.hc-rule {
  width: 60px;
  height: 1px;
  background: #c78b4a;
  margin: 0 auto;
}

/* Infinite marquee track */
.hc-marquee-wrap {
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.hc-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: hc-scroll 28s linear infinite;
}

.hc-marquee-wrap:hover .hc-marquee-track {
  animation-play-state: paused;
}

@keyframes hc-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hc-logo-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 110px;
  background: #ffffff;
  border: 1px solid rgba(199, 139, 74, 0.22);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  padding: 14px 18px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
  position: relative;
}

.hc-logo-card:hover {
  box-shadow: 0 12px 32px rgba(199, 139, 74, 0.22);
  border-color: #c78b4a;
  transform: translateY(-4px);
  background: #ffffff;
}

.hc-client-logo-img {
  max-width: 175px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hc-logo-card:hover .hc-client-logo-img {
  transform: scale(1.05);
}

.hc-logo-type {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #c78b4a;
  margin-top: 6px;
  background: rgba(199, 139, 74, 0.08);
  padding: 2px 10px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .happy-clients {
    padding: 60px 0 50px;
  }

  .hc-heading {
    font-size: 36px;
  }

  .hc-logo-card {
    width: 175px;
    height: 95px;
    padding: 10px 14px;
  }

  .hc-client-logo-img {
    max-width: 140px;
    max-height: 42px;
  }

  .hc-logo-type {
    font-size: 8.5px;
  }
}

/* ==========================================================================
   Google Business (GMB) Interactive Carousel Component
   ========================================================================== */
.gmb-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 5px 20px;
}

.gmb-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.gmb-carousel-track:active {
  cursor: grabbing;
}

.gmb-review-card {
  background: #ffffff;
  padding: 26px 22px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0ede6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.gmb-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.14);
  border-color: #d4af37;
}

.gmb-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.gmb-reviewer-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}

.gmb-stars {
  color: #ffb400;
  font-size: 0.9rem;
  margin-top: 2px;
}

.gmb-tag {
  color: #888;
  font-size: 0.8rem;
  margin-left: 6px;
  font-weight: 400;
}

.gmb-review-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 15px 0 0 0;
  font-style: italic;
}

.gmb-badge-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #f5f2eb;
  font-size: 0.82rem;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gmb-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.gmb-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #d4af37;
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gmb-nav-btn:hover:not(:disabled) {
  background: #d4af37;
  color: #1a1a1a;
  transform: scale(1.08);
}

.gmb-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: #ccc;
}

.gmb-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gmb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gmb-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #d4af37;
}

.gmb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin-top: 30px;
}

.gmb-cta-btn:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Global Reset: Prevent underlines on links across the site */
a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none !important;
}