:root {
  --bg: #fffaf3;
  /* warm cream */
  --primary: #b54c2a;
  /* saffron-maroon */
  --primary-700: #8f3b20;
  --accent: #d9a31a;
  /* gold */
  --ink: #2d2620;
  /* deep brown */
  --muted: #6b625b;
  --card: #ffffff;
  --ring: 0 10px 30px rgba(181, 76, 42, .15);
  --soft: 0 6px 16px rgba(0, 0, 0, .08);
  --radius: 18px;
}

h1 h2 h3 h4 h5 h6 {  }

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: var(--primary);
  text-decoration: none
}

.container {
  width: min(1200px, 90%);
  margin-inline: auto
}

.badge {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .35rem .6rem;
  border: 1px solid #ead9c9;
  border-radius: 999px;
  background: #fff7ef;
  color: var(--primary-700);
  font-size: .8rem
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, .9);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #f1e6d6
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .4rem 0;
  font-size: .9rem
}

.topbar .cta {
  display: flex;
  gap: .6rem;
  align-items: center
}

.topbar .cta a {
  background: var(--primary);
  color: #fff;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 600
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 0
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: black;
}

.logo span {
  font-size: 1.25rem
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0
}

nav a {
  padding: .55rem .75rem;
  font-size: 15px;
  border-radius: 10px;
  color: var(--ink)
}

nav a:hover {
  color: var(--primary);
  text-decoration: none
}

.menu-btn {
  display: none
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding: 0
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .7rem;
  border: 1px dashed #e8d8c6;
  border-radius: 999px;
  background: #fff
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  margin: .6rem 0;
  color: var(--primary-700)
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch
}

.actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1rem
}

.btn {
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600
}

.btn.primary {
  background: var(--primary);
  color: #fff
}

.btn.ghost {
  background: #fff;
  border-color: #f0e7da
}

.hero-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--ring)
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 70% 20%, rgba(217, 163, 26, .15), transparent), radial-gradient(40% 40% at 0% 100%, rgba(181, 76, 42, .13), transparent)
}

/* Section base */
section {
  padding: 1rem 0
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  margin: 0;
  font-size: clamp(1.4rem, 2.1vw, 2rem)
}

.section-header p {
  color: var(--muted);
  max-width: 66ch
}

/* Cards grid */
/* GRID SYSTEM */
.grid {
  display: grid;
  gap: 1rem;
}

/* Desktop columns */
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.grid.cols-6 { grid-template-columns: repeat(6, 1fr); }

/* Tablet */
@media (max-width: 980px) {
  .grid.cols-6,
  .grid.cols-5,
  .grid.cols-4,
  .grid.cols-3,
  .grid.cols-2 {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 560px) {
  .grid.cols-6,
  .grid.cols-5,
  .grid.cols-4,
  .grid.cols-3,
  .grid.cols-2 {
      grid-template-columns: 1fr;
  }
}


.card {
  background: var(--card);
  border: 1px solid #f1e7da;
  border-radius: 16px;
  padding:0 0 1rem 0;
  box-shadow: var(--soft);
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff7ef;
  border: 1px solid #f2e0d6
}

.card h3 {
  margin: .2rem 0 .1rem;
  font-size: 1.05rem;
  padding:0 1rem;
}

.card p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0px;
  padding:0 1rem;
}
.card-img{ width:100%; height:180px; object-fit:cover; border-radius:10px 10px 0px 0px; }

.card a.more {
  margin:0  1rem;
  align-self: flex-start;
  font-weight: 600
}

/* Packages carousel */
.carousel {
  display: flex;
  gap: 1rem;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem
}

.carousel .pkg {
  scroll-snap-align: start;
  min-width: 260px
}

.pkg {
  background: #fff;
  border: 1px solid #f1e6d6;
  border-radius: 16px;
  padding: 1rem; 
  box-shadow: var(--soft)
}

.pkg h4 {
  padding: 0 1rem;
  margin:0px;
}

.pkg img {
  margin-bottom:10px;
  border-radius:12px 12px 0 0;
}

.pkg .mini {
  color: var(--muted);
  font-size: .92rem;
  padding: 0 1rem;
}

.pkg a.more {
  margin:0  1rem;
  align-self: flex-start;
  font-weight: 600
}

/* Tabs */
.tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem
}

.tabs button {
  padding: .55rem .8rem;
  border: 1px solid #eadccc;
  background: #fff;
  border-radius: 999px;
  cursor: pointer
}

.tabs button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.tab-panel {
  display: none
}

.tab-panel.active {
  display: block
}

/* Testimonial */
.testimonial {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid #f2e6d8;
  border-radius: 16px;
  padding: 1rem
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0e0c8
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem
}

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.field input,
.field textarea {
  padding: .8rem 1rem;
  border: 1px solid #eadccc;
  border-radius: 12px;
  background: #fff
}

.field textarea {
  min-height: 120px
}

/* Footer */
footer {
  background: #1c1713;
  color: #e9e1d9;
  margin-top: 2rem
}

footer a {
  color: #f6d38b
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0
}

.foot-bottom {
  border-top: 1px solid #3b332c;
  padding: 1rem 0;
  color: #b9afa7;
  font-size: .9rem
}

/* Utilities */
.hidden {
  display: none
}

/* Responsive */
@media (max-width: 980px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .contact {
    grid-template-columns: 1fr
  }

  .grid.cols-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid.cols-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  nav ul {
    display: none
  }

  .menu-btn {
    display: inline-flex;
    padding: .6rem .7rem;
    border: 1px solid #eadccc;
    border-radius: 10px;
    background: #fff
  }
}

@media (max-width: 560px) {

  .grid.cols-4,
  .grid.cols-3 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* --- FIX HERO SLIDER LAYOUT --- */
.hero-art {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin-left: auto;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-swiper .swiper-wrapper {
  width: 100%;
}

.hero-swiper .swiper-slide {
  width: 100% !important;
}

/* image fix */
.hero-swiper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

/* --- NAVIGATION BUTTONS FIX --- */
/* Small Circular Navigation Buttons */
.hero-prev, .hero-next {
    width: 25px !important;
    height: 25px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
}

/* Position left/right */
.hero-prev { left: 10px !important; }
.hero-next { right: 10px !important; }

/* Arrow icon styling */
.hero-prev::after,
.hero-next::after {
    font-size: 12px !important;
    color: #000 !important;
    font-weight: 700;
}


/* --- PAGINATION FIX --- */
.hero-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 30;
}

.hero-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 15px;
  margin: 20px 0;
  opacity: 0;
  animation: fadeUp 1.4s ease-out forwards;
}

.breadcrumbs a {
  color: #444;
}

.breadcrumbs span {
  color: #888;
}

/* TWO COLUMN LAYOUT */
.service-wrapper {
  display: flex;
  width: 100%;
  gap: 35px;
  margin-top: 30px;
}

/* LEFT */
.service-left {
  flex: 0 0 70%;
  max-width: 70%;
}

/* RIGHT - STICKY SIDEBAR */
.service-right {
  flex: 0 0 30%;
  max-width: 30%;
  position: sticky;
  top: 120px;
  height: fit-content;
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* ANIMATION */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .service-wrapper {
    flex-direction: column;
  }

  .service-left,
  .service-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-right {
    position: static;
  }
}

/* FAQ Accordion */
.faq-accordion {
  margin-top: 30px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 14px 18px;
  cursor: pointer;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q h4 {
  margin: 0;
  font-size: 16px;
}

.faq-a {
  padding: 14px 18px;
  background: #fafafa;
  display: none;
  line-height: 1.6;
}

/* Related Slider (Swiper) */
.related-section {
  margin-top: 40px;
}

.swiper {
  padding: 10px 0;
}

.swiper-slide {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}

.related-card {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.related-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

/* Floating Consult Button */
.consult-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00f123;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.fab-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.fab-item {
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.fab-item a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

/* Share Buttons */
.share-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.share-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* small responsiveness */
@media(max-width:900px) {
  .related-card img {
    height: 100px;
  }

  .fab-menu {
    right: 0;
  }
}





/* Swiper navigation buttons – small circle style */
.related-swiper .swiper-button-prev,
.related-swiper .swiper-button-next {
  width: 34px !important;
  height: 34px !important;
  background: #ffffff;
  color: #000000 !important;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  top: 50%;
  transform: translateY(-50%);
}

/* Force Swiper icons to become black arrows */
.related-swiper .swiper-button-prev:after,
.related-swiper .swiper-button-next:after {
  font-size: 16px !important;
  color: #000000 !important;
  font-weight: 700;
}

/* Hover effect */
.related-swiper .swiper-button-prev:hover,
.related-swiper .swiper-button-next:hover {
  background: #f1f1f1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}




/* Packages Slider */
.packages-swiper {
    width: 100%;
    padding: 10px 0 40px;
}

.packages-swiper .swiper-wrapper {
    display: flex !important;
}

.packages-swiper .swiper-slide {
    flex-shrink: 0 !important;
    width: auto !important; /* Allow Swiper to control width */
}


.pkg {
    background:#fff;
    border:1px solid #f1e6d6;
    border-radius:16px;
    padding:0rem;
    box-shadow:var(--soft);
    width:280px;
}

.pkg img {
    width:100%;
    height:160px;
    border-radius:12px 12px 0px 0px;
    object-fit:cover;
}

/* Nav buttons */
.pkg-prev, .pkg-next {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    color:#000 !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
}

.pkg-prev:after, .pkg-next:after {
    font-size:14px !important;
    font-weight:700;
    color:#000 !important;
}

/* Pagination Dots */
.pkg-pagination .swiper-pagination-bullet {
    background:#ccc;
}
.pkg-pagination .swiper-pagination-bullet-active {
    background:var(--primary);
}
