:root {
  --primary-gold: #c4a052;
  --dark-bg: #1a1a1a;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-gray: #6c757d;
  --teal-dark: #004d4d;
  --teal-medium: #006666;
  --btn-background:
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  --btn-button-border: 1px solid #efbf04;
  --btn-background-hover: #000;
    --gold:       #c4a052;
  --gold-light: #f5edda;
  --gold-dark:  #a8863d;
  --dark:       #1a1208;
  --white:      #ffffff;
  --muted:      #7a6a50;
  --bg:         #faf8f3;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold) !important;
}

.navbar-nav .nav-link {
  color: var(--dark-bg) !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}


.logo{
    height: 70px;
    transform: scale(1.8);
  }

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 1.5rem;
}

.nav-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.nav-social-link:hover {
  background: var(--primary-gold);
  color: var(--white);
}

/* Mobile: center icons below nav links */
@media (max-width: 991px) {
  .nav-social {
    margin-left: 0;
    margin-top: 1rem;
    justify-content: center;
  }
}
/* Golden Button Style */
.btn-golden {
  background: var(--btn-background);
  color: var(--white);
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 50px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 160, 82, 0.3);
}

.btn-golden:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 160, 82, 0.5);
  color: var(--primary-gold);
  background: var(--dark-bg);
}

/* Hero Carousel */
.hero-carousel {
  margin-top: 76px;
}

.carousel-item {
  height: 650px;
  background: linear-gradient(
    to right,
    rgba(0, 51, 51, 0.9) 0%,
    rgba(0, 77, 77, 0.7) 50%,
    rgba(0, 102, 102, 0.5) 100%
  );
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  z-index: 1;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-caption {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: 10%;
  right: auto;
  text-align: left;
  max-width: 600px;
}

.carousel-caption h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.carousel-caption h1 {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: "Playfair Display", serif;
}

.carousel-caption h1 .gold-text {
  color: var(--primary-gold);
  display: block;
}

.carousel-caption h1 .white-text {
  color: var(--white);
  display: block;
}

.carousel-caption p {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: var(--white);
  line-height: 1.6;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 400;
  padding: 12px 35px;
  border-radius: 50px;
  border: 2px solid var(--white);
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark-bg);
  border-color: var(--white);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: #faf8f3;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

/* Longevity Centre Section */
.longevity-centre-section {
  padding: 0;
  margin: 0;
}

.longevity-content {
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  padding: 80px 60px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.content-wrapper {
  max-width: 700px;
  margin-left: auto;
  padding-right: 40px;
}

.longevity-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.longevity-text {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
}

.longevity-image {
  padding: 0;
  height: 600px;
  overflow: hidden;
}

.longevity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}



/* Tier Programs Section */
 .tier-programs-section {
    padding: 0;
    background: #f8f9fa;
  }

  /* ── SWIPER CONTAINER ── */
  .swiper {
    width: 100%;
    height: 400px;
  }

  /* ── EACH SLIDE / CARD ── */
  .swiper-slide {
    position: relative;
    overflow: hidden;
    cursor: grab;
    background: linear-gradient(135deg, #c4a052 0%, #a8863d 60%, #8c6e2a 100%);
    border-right: 1px solid rgba(255,255,255,0.12);
    user-select: none;
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .swiper-slide:active { cursor: grabbing; }

  /* subtle texture */
  .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1' height='1' fill='rgba(0,0,0,0.07)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
    z-index: 1;
  }

  /* ── TITLE — bottom left, always visible ── */
  .tier-title {
    bottom: 2rem;
    left: 1.8rem;
    right: 1.8rem;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 1.45;
    z-index: 2;
    transition: opacity 0.35s ease, transform 0.35s ease;
    padding: 20px 45px;
    text-align: center;
  }

  .swiper-slide:hover .tier-title {
    opacity: 0;
    transform: translateY(10px);
  }

  /* ── HOVER REVEAL — centered price + button ── */
  .tier-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 3;
  }

  .swiper-slide:hover .tier-hover {
    opacity: 1;
    transform: translateY(0);
  }

  .hover-title {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .hover-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .hover-tax {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    margin-bottom: 1.4rem;
  }

  .btn-book {
    padding: 0.6rem 2rem;
    background: #fff;
    color: #a8863d;
    border: none;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.25s, color 0.25s, transform 0.2s;
  }

  .btn-book:hover {
    background: #c4a052;
    color: #fff;
    transform: scale(1.04);
  }

  /* ── SWIPER NAVIGATION ARROWS ── */
  .swiper-button-prev,
  .swiper-button-next {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c4a052;
    color: #c4a052 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: background 0.25s, color 0.25s;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #c4a052;
    color: #fff !important;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 0.95rem !important;
    font-weight: 700;
  }

  /* ── SWIPER PAGINATION DOTS ── */
  .swiper-pagination {
    bottom: 0 !important;
    padding: 1rem 0;
    background: #f8f9fa;
    position: relative !important;
  }

  .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #ddd;
    opacity: 1;
    transition: background 0.3s, transform 0.3s;
  }

  .swiper-pagination-bullet-active {
    background: #c4a052 !important;
    transform: scale(1.3);
  }
.about_img{
        width:90%;
    }
  /* ── RESPONSIVE HEIGHT ── */
  @media (max-width: 768px) {
    .swiper { height: 400px; }
    .hover-price { font-size: 2rem; }
    .section-subtitle{text-align:center;}
    .about_img{
        width:100%;
    }
  }

  @media (max-width: 480px) {
    .swiper { height: 360px; }
  }

/* Teal Section */
.teal-info-section {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal-medium) 100%
  );
  padding: 80px 0;
  color: var(--white);
}

.teal-info-section h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
}

.teal-info-section p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
}

/* Process Steps Section */
.process-section {
  padding: 100px 0;
  background-color: var(--white);
}

.process-step {
  text-align: center;
  padding: 0 15px;
}

.step-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.step-title {
  font-size: 1.1rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-weight: 600;
  min-height: 50px;
}

.step-description {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: var(--white);
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 0 15px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(196, 160, 82, 0.2);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 30px;
  background: var(--white);
  text-align: center;
}

.team-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark-bg);
}

.team-info p {
  color: var(--primary-gold);
  font-weight: 500;
}


/***************** FAQ *****************/

 /* ── SECTION ── */
  .faq-section {
    margin: 0 auto;
    padding: 60px 24px;
      background-color: #faf8f3;

  }

  .faq-heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .faq-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #2a2217;
    margin-bottom: 0.5rem;
  }

  .faq-heading h2 span {
    font-style: italic;
    color: #c4a052;
  }

  .faq-divider {
    width: 50px;
    height: 3px;
    background: #c4a052;
    margin: 0.8rem auto 0;
    border-radius: 2px;
  }

  /* ── LIST ── */
  .faq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
        max-width: 860px;
        margin:0 auto;

  }

  /* ── ITEM ── */
  .faq-item {
      background-color: #faf8f3;
    border: 1.5px solid rgba(196, 160, 82, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(196, 160, 82, 0.08);
    transition: border-color .3s ease, box-shadow .3s ease;
  }

  .faq-item.open {
    border-color: #c4a052;
    box-shadow: 0 8px 32px rgba(196, 160, 82, 0.18);
  }

  /* ── QUESTION BUTTON ── */
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    transition: background .25s ease;
  }

  .faq-question:hover {
    background: #fdf6e9;
  }

  .faq-item.open .faq-question {
    background: #fdf6e9;
  }

  /* Number badge */
  .faq-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f5edda;
    color: #a8863d;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, color .25s;
  }

  .faq-item.open .faq-num {
    background: #c4a052;
    color: #fff;
  }

  /* Question text */
  .faq-q-text {
    flex: 1;
    font-size: 15.5px;
    font-weight: 700;
    color: #2a2217;
    line-height: 1.4;
  }

  /* Toggle icon */
  .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5edda;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, transform .35s cubic-bezier(.22,.68,0,1.3);
  }

  .faq-item.open .faq-icon {
    background: #c4a052;
    transform: rotate(45deg);
  }

  .faq-icon svg {
    display: block;
    transition: stroke .25s;
  }

  .faq-item.open .faq-icon svg line {
    stroke: #fff;
  }

  /* ── ANSWER PANEL ── */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22,.68,0,1.1);
  }

  .faq-answer-inner {
    padding: 4px 24px 24px 70px;
  }

  .faq-answer-inner p {
    font-size: 14.5px;
    color: #6b5c3e;
    line-height: 1.8;
    margin: 0;
    border-left: 3px solid #c4a052;
    padding-left: 16px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 560px) {
    .faq-question     { padding: 16px 18px; gap: 12px; }
    .faq-answer-inner { padding: 4px 18px 20px 62px; }
    .faq-heading h2   { font-size: 1.7rem; }
  }

















/* Multi-card carousel wrapper */
.multi-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.multi-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-card-wrapper {
  flex: 0 0 33.333%;
  padding: 0 15px;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--btn-background);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
  background-color: #b8941e;
}

.carousel-nav-btn.prev {
  left: 0;
}

.carousel-nav-btn.next {
  right: 0;
}

/* Review Section */
.review-section {
  padding: 100px 0;
}

.review-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 0 15px;
}

.review-stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--dark-bg);
}

.reviewer-name {
  font-weight: 600;
  color: var(--primary-gold);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.footer-logo i {
  font-size: 2rem;
}

.footer-desc {
  color: #999;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--btn-background);
  color: var(--white);
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  color: #999;
  display: flex;
  justify-content: space-between;
}

.footer-bottom a {
  color: var(--primary-gold);
  text-decoration: none;
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--btn-background);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(196, 160, 82, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(196, 160, 82, 0.6);
  background: var(--dark-bg);
  color: var(--primary-gold);
}

/* Modal Styling */
.modal-content {
  border-radius: 15px;
  border: none;
}

.modal-header {
  background: linear-gradient(135deg, #d4af37 0%, #c4a052 50%, #b8941e 100%);
  color: var(--dark-bg);
  border-radius: 15px 15px 0 0;
  padding: 20px 30px;
}

.modal-title {
  font-weight: 600;
}

.modal-body {
  padding: 30px;
}

.form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(196, 160, 82, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px;
    }
}



/* Responsive */
@media (max-width: 992px) {
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .tier-item {
    height: 350px;
  }

  .carousel-card-wrapper {
    flex: 0 0 50%;
  }

  .multi-carousel-wrapper {
    padding: 0 40px;
  }

  .longevity-content {
    padding: 60px 40px;
    min-height: auto;
  }

  .content-wrapper {
    max-width: 100%;
    padding-right: 0;
    margin-left: 0;
  }

  .longevity-title {
    font-size: 2.5rem;
  }

  .longevity-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 3rem;
  }

  .tier-grid {
    grid-template-columns: 1fr;
  }

  .tier-item {
    height: 300px;
  }

  .tier-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .teal-info-section h2 {
    font-size: 2rem;
  }

  .carousel-card-wrapper {
    flex: 0 0 100%;
  }

  .multi-carousel-wrapper {
    padding: 0 30px;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .step-title {
    font-size: 1rem;
    min-height: auto;
  }

  .longevity-content {
    padding: 40px 30px;
  }

  .longevity-title {
    font-size: 2rem;
  }

  .longevity-image {
    height: 300px;
  }
  .logo{
    height: 40px;
    transform: scale(2.5) translateX(10px);
  }
}






/* ── SECTION ── */
.services-section { padding: 80px 0 60px; background: var(--bg); }

.section-label {
  display: block; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem; font-weight: 700;
}
.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400; color: var(--dark); margin-bottom: 0.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-divider {
  width: 50px; height: 3px; background: var(--gold);
  border-radius: 2px; margin: 0.8rem auto 2.5rem;
}

/* ── TABS ── */
.tabs-wrapper {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem; padding: 0 1rem;
}
.tab-btn {
  padding: 0.55rem 1.3rem;
  border: 1.5px solid rgba(196,160,82,0.3);
  background: var(--white); color: var(--muted);
  border-radius: 50px; font-family: 'Lato', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.tab-btn i { font-size: 0.8rem; }
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--white); box-shadow: 0 4px 14px rgba(196,160,82,0.3);
}

/* ── PANELS ── */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ══════════════════════
   DESKTOP GRID ≥ 769px
══════════════════════ */
.desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .desktop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════
   MOBILE GSAP STACK ≤ 768px
══════════════════════════════ */
.mobile-carousel { display: none; }

@media (max-width: 768px) {
  .desktop-grid    { display: none; }
  .mobile-carousel { display: block; }
}

/* The viewport window — shows exactly 4 cards */
.gsap-viewport {
  overflow: hidden;
  position: relative;
  /* height = 4 cards × cardHeight + 3 gaps */
  /* will be set by JS after render */
}

/* The track that GSAP moves */
.gsap-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.mob-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  color: var(--gold);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  flex-shrink: 0;
}
.mob-btn:hover  { background: var(--gold); color: var(--white); transform: scale(1.08); }
.mob-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

/* counter text */
.mob-counter {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
  min-width: 60px;
  text-align: center;
}
.mob-counter span { color: var(--gold); }

/* dots */
.mob-dots {
  display: flex; gap: 5px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.mob-dot {
  width: 7px; height: 7px;
  background: #ddd; border-radius: 50%;
  cursor: pointer; border: none;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.mob-dot.active { background: var(--gold); transform: scale(1.35); }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #ede8dd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(196,160,82,0.18);
  border-color: var(--gold);
}

.card-bar { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.card-body { padding: 1.6rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

.service-icon {
  width: 50px; height: 50px;
  background: var(--gold-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(196,160,82,0.2);
}
.service-icon i { font-size: 1.4rem; color: var(--gold); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--muted); font-size: 0.86rem;
  line-height: 1.7; margin-bottom: 1rem; 
  /*flex: 1;*/
}
.service-card ul { list-style: none; padding: 0; margin-bottom: 0; }
.service-card ul li {
  padding: 5px 0 5px 20px;
  color: #555; font-size: 0.83rem; position: relative;
}
.service-card ul li::before {
  content: "→"; color: var(--gold);
  position: absolute; left: 0; font-weight: 700;
}

.card-footer {
  border-top: 1px solid #f0e8d8;
  padding: 1rem 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 0.5rem;
  background: #fffdf8; flex-wrap: wrap;
}
.card-price {
  /*font-family: 'Playfair Display', serif;*/
  font-size: 1.25rem; font-weight: 600; color: var(--gold);
}
.card-price small {
  font-size: 0.72rem; color: var(--muted);
  font-family: 'Lato', sans-serif; font-weight: 400;
  display: block; margin-top: 1px;
}
.btn-service {
  /*display: inline-flex;*/
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--gold); color: var(--white);
  border: none; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
  width:100%;
}
.btn-service:hover { background: var(--gold-dark); transform: translateX(3px); }