/* ===================================================
   Angle Thai Family Spa - Custom Styles
   Primary: #6C1C37 | Secondary: #CBA936
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #6C1C37;
  --primary-dark: #4e1228;
  --primary-light: #8e2549;
  --secondary: #CBA936;
  --secondary-light: #dfc05f;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --bg-light: #faf8f5;
  --bg-cream: #f5f0e8;
  --white: #ffffff;
  --border-light: #e8ddd0;
  --shadow-sm: 0 2px 15px rgba(108, 28, 55, 0.08);
  --shadow-md: 0 8px 35px rgba(108, 28, 55, 0.12);
  --shadow-lg: 0 20px 60px rgba(108, 28, 55, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --topbar-h: 40px;
  --navbar-h: 70px;
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  padding-top: calc(var(--topbar-h) + var(--navbar-h));
  -webkit-overflow-scrolling: touch;
}

img, video {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 16px auto 20px;
}

.divider.left {
  margin-left: 0;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--primary);
  display: inline-block;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--primary);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 11px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--white);
  display: inline-block;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-gold {
  background: var(--secondary);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--secondary);
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold:hover {
  background: transparent;
  color: var(--secondary);
}

/* TOP HEADER */
.top-header {
  background: var(--primary);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060;
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-header-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
}

.top-header-item i {
  color: var(--secondary);
  font-size: 0.72rem;
}

.top-header-item a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.top-header-item a:hover {
  color: var(--secondary);
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-social-btn {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.top-social-btn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.top-timing {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.top-timing i {
  color: var(--secondary);
  margin-right: 4px;
}

.top-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

/* NAVBAR */
.navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(108, 28, 55, 0.1);
  padding: 0;
  height: var(--navbar-h);
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1055;
  /* No transition — prevents layout shift on scroll */
  overflow: visible;
}

/* ── MOBILE MENU: instant open, no animation, no blur ── */
@media (max-width: 991.98px) {

  /* Kill Bootstrap collapse animation completely */
  .navbar-collapse.collapsing {
    transition: none !important;
    height: auto !important;
    display: none !important;
  }

  .navbar-collapse.show {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(108, 28, 55, 0.15);
    border-top: 2px solid var(--border-light);
    padding: 12px 16px 16px;
    z-index: 1054;
    /* No backdrop-filter — too slow on mobile */
  }

  /* Remove black focus outline from toggler */
  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--primary) !important;
  }

  .navbar-nav {
    gap: 2px;
  }

  .navbar-nav .nav-link {
    padding: 11px 14px !important;
    border-radius: 8px;
    color: var(--text-dark) !important;
  }

  .navbar-nav .nav-link:active,
  .navbar-nav .nav-link:focus {
    background: var(--bg-light);
    outline: none;
  }

  /* Book Now button — full width, no delay */
  .navbar-nav .nav-item:last-child {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
  }

  .navbar-nav .nav-item:last-child .btn-primary-custom {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--secondary);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark) !important;
  padding: 6px 14px !important;
  position: relative;
  letter-spacing: 0.03em;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 5px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236C1C37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO - ZERO EXTRA SPACE */
#heroSection {
  margin: 0;
  padding: 0;
}

#heroCarousel {
  margin: 0;
  padding: 0;
  display: block;
}

.carousel-item {
  height: calc(100vh - var(--topbar-h) - var(--navbar-h));
  min-height: 500px;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 28, 55, 0.72) 0%, rgba(26, 10, 18, 0.45) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.carousel-caption-custom {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8%;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title span {
  color: var(--secondary);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(108, 28, 55, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 16px;
  opacity: 0.85;
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--secondary);
  width: 28px;
  border-radius: 4px;
}

/* MARQUEE */
.marquee-strip {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 28px;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

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

/* ABOUT */
#about {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge .years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  display: block;
}

.about-badge .years-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content {
  padding-left: 24px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.about-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.about-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.about-feature h6 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.stats-item {
  text-align: center;
  padding: 22px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-light);
  transition: var(--transition);
}

.stats-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.stats-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stats-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}


/* SERVICES */
#services {
  background: var(--bg-light);
}

.services-table-wrap {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* FIXED HEADER */
.services-heading-row {
  display: grid;
  grid-template-columns: 1fr 150px; /* FIXED */
  background: var(--primary);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* CATEGORY */
.service-category-header {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--secondary);
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-category-header i {
  font-size: 0.8rem;
}

.service-category-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(203, 169, 54, 0.3);
}

/* FIXED ROW */
.service-row {
  display: grid;
  grid-template-columns: 1fr 150px; /* FIXED */
  align-items: center;
  padding: 15px 24px;
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row:hover {
  background: var(--bg-cream);
}

/* NAME */
.service-row-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-row-icon {
  width: 34px;
  height: 34px;
  background: var(--bg-cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.service-row-icon i {
  color: var(--primary);
  font-size: 0.82rem;
}

.service-row-name h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2px 0;
}

.service-row-name span {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
}

/* DURATION */
.service-duration-cell {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* BADGES */
.dur-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  width: fit-content;
}

.dur-badge i {
  color: var(--secondary);
  font-size: 0.68rem;
}




/* WHY CHOOSE US */
#why-us {
  background: var(--white);
}

.why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-icon-wrap {
  width: 66px;
  height: 66px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

.why-card:hover .why-icon-wrap {
  background: var(--primary);
  border-color: var(--primary);
}

.why-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  transition: var(--transition);
}

.why-card:hover .why-icon-wrap svg {
  fill: var(--white);
}

.why-card h5 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* GALLERY */
#gallery {
  background: var(--bg-light);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
  aspect-ratio: 1/1;
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(108, 28, 55, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

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

.gallery-overlay-icon {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--white);
}

.testi-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--secondary);
}

.testi-stars {
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  display: block;
}

.testi-loc {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* CONTACT */
#contact {
  background: var(--bg-cream);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.contact-info-panel {
  background: var(--primary);
  padding: 44px 32px;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}

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

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-item-icon svg {
  width: 17px;
  height: 17px;
  fill: var(--secondary);
}

.contact-item-text a,
.contact-item-text span {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.contact-item-text a:hover {
  color: var(--secondary);
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.88rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form-panel {
  padding: 44px 36px;
}

.contact-form-title {
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 28, 55, 0.1);
  background: var(--white);
  outline: none;
}

/* MAP */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

/* FLOATING */
.floating-contact {
  position: fixed;
  rigtht: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12) translateX(4px);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.phone {
  background: var(--primary);
}

.float-btn.email {
  background: var(--secondary);
}

.float-btn svg {
  width: 19px;
  height: 19px;
  fill: var(--white);
}

.float-tooltip {
  position: absolute;
  left: 56px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 998;
}

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

#backToTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: var(--white);
  font-weight: 700;
}

.footer-brand-tag {
  font-size: 0.7rem;
  color: var(--secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 14px 0 20px;
  opacity: 0.8;
}

.footer-heading {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.73);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--secondary);
  display: inline-block;
  transition: var(--transition);
}

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

.footer-links a:hover::before {
  width: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.76);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  margin-top: 44px;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
}

.footer-bottom-text span {
  color: var(--secondary);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Mobile: opacity only — no transform to avoid scroll jank */
@media (max-width: 991.98px) {
  .reveal, .reveal-left, .reveal-right {
    transform: none !important;
    transition: opacity 0.5s ease !important;
  }
  .reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
  }
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* RESPONSIVE */
@media(max-width:991.98px) {
  :root {
    --topbar-h: 36px;
    --navbar-h: 64px;
  }

  section {
    padding: 68px 0;
  }

  .carousel-item {
    height: calc(85vh - var(--topbar-h) - var(--navbar-h));
    min-height: 420px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 28px;
  }

  .contact-info-panel {
    padding: 32px 26px;
  }

  .contact-form-panel {
    padding: 32px 26px;
  }

  .services-heading-row {
    grid-template-columns: 1fr 120px 120px;
  }

  .service-row {
    grid-template-columns: 1fr 120px 120px;
  }
}

@media(max-width:767.98px) {
  :root {
    --topbar-h: 34px;
    --navbar-h: 60px;
  }

  section {
    padding: 52px 0;
  }

  .carousel-item {
    height: calc(90vh - var(--topbar-h) - var(--navbar-h));
    min-height: 360px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-img-wrap img {
    height: 290px;
  }

  .about-content {
    padding-left: 0;
  }

  .floating-contact {
    right: 10px;
  }

  .float-btn {
    width: 40px;
    height: 40px;
  }

  .top-header-item.hide-sm {
    display: none;
  }

  .top-timing {
    display: none;
  }

  .top-divider {
    display: none;
  }

  .services-heading-row {
    grid-template-columns: 1fr 100px 100px;
    font-size: 0.7rem;
    padding: 12px 14px;
  }

  .service-row {
    grid-template-columns: 1fr 100px 100px;
    padding: 13px 14px;
  }

  .service-row-name h5 {
    font-size: 0.82rem;
  }

  .service-row-icon {
    width: 28px;
    height: 28px;
  }

  .dur-badge {
    font-size: 0.68rem;
    padding: 2px 7px;
  }

  .price-badge {
    font-size: 0.7rem;
    padding: 3px 9px;
  }

  .map-wrap iframe {
    height: 250px;
  }
}

@media(max-width:575.98px) {
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btns a {
    width: 100%;
    text-align: center;
  }

  .contact-form-panel {
    padding: 24px 18px;
  }

  .contact-info-panel {
    padding: 24px 18px;
  }

  .services-heading-row {
    grid-template-columns: 1fr 85px 85px;
    padding: 10px 12px;
  }

  .service-row {
    grid-template-columns: 1fr 85px 85px;
    padding: 11px 12px;
  }

  .service-row-icon {
    display: none;
  }

  .service-row-name h5 {
    font-size: 0.78rem;
  }
}

@media(max-width:400px) {
  .services-heading-row {
    display: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .service-duration-cell,
  .service-price-cell {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ============================================================
   PREMIUM SERVICE CARDS
============================================================ */
.premium-cards-section {
  margin-top: 56px;
}

.premium-cards-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.pch-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.pch-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  white-space: nowrap;
  padding: 6px 18px;
  border: 1.5px solid var(--secondary);
  border-radius: 50px;
  background: rgba(203, 169, 54, 0.07);
  margin: 0;
}

.pch-label i {
  margin-right: 6px;
}

/* Card Shell */
.svc-premium-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.svc-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.svc-premium-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 4px 28px rgba(203, 169, 54, 0.18);
}

.svc-premium-card.featured:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* Image area */
.svc-img-container {
  position: relative;
  height: 230px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.svc-premium-card:hover .svc-img-container img {
  transform: scale(1.08);
}

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 0%, rgba(108, 28, 55, 0.55) 100%);
  transition: var(--transition);
}

.svc-premium-card:hover .svc-img-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(108, 28, 55, 0.72) 100%);
}

/* Top badges row */
.svc-top-meta {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.svc-badge-tag {
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.svc-badge-tag.gold {
  background: linear-gradient(90deg, var(--secondary), #e8c247);
  color: var(--primary-dark);
}

.svc-badge-tag i {
  font-size: 0.65rem;
}

.svc-category-tag {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hover CTA over image */
.svc-hover-cta {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
}

.svc-premium-card:hover .svc-hover-cta {
  opacity: 1;
  transform: translateY(0);
}

.svc-book-btn {
  background: var(--white);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.svc-book-btn:hover {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}

.svc-book-btn i {
  font-size: 0.72rem;
  transition: var(--transition);
}

.svc-book-btn:hover i {
  transform: translateX(3px);
}

/* Content Area */
.svc-content {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-icon-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.svc-icon-circle {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
}

.svc-icon-circle i {
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition);
}

.svc-premium-card:hover .svc-icon-circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
}

.svc-premium-card:hover .svc-icon-circle i {
  color: var(--white);
}

.featured-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light)) !important;
  border-color: var(--secondary) !important;
}

.featured-icon i {
  color: var(--primary-dark) !important;
}

.svc-title-group {
  flex: 1;
  min-width: 0;
}

.svc-title {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0 0 2px 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
}

.svc-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.svc-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

/* Benefit chips */
.svc-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(108, 28, 55, 0.07);
  border: 1px solid rgba(108, 28, 55, 0.12);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.benefit-chip i {
  font-size: 0.6rem;
  color: var(--secondary);
}

.svc-premium-card:hover .benefit-chip {
  background: rgba(108, 28, 55, 0.12);
  border-color: rgba(108, 28, 55, 0.22);
}

/* Pricing row */
.svc-pricing-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  margin-top: auto;
  transition: var(--transition);
}

.svc-premium-card:hover .svc-pricing-row {
  background: var(--bg-cream);
  border-color: rgba(108, 28, 55, 0.15);
}

.svc-price-option {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.svc-dur-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.svc-dur-label i {
  color: var(--secondary);
  font-size: 0.65rem;
}

.svc-price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  white-space: nowrap;
}

.svc-price-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
  flex-shrink: 0;
}

.svc-call-pill {
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
  letter-spacing: 0.04em;
}

.svc-call-pill:hover {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}
.bg-overlayy {
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("b1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    height: 331px;
    padding-top: 142px;
}

/* Responsive */
@media(max-width:767.98px) {
  .svc-img-container {
    height: 200px;
  }

  .svc-content {
    padding: 18px;
  }

  .svc-title {
    font-size: 1.05rem;
  }

  .premium-cards-header {
    gap: 10px;
  }

  .pch-label {
    font-size: 0.72rem;
    padding: 5px 14px;
  }

  .svc-hover-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:575.98px) {
  .svc-img-container {
    height: 180px;
  }

  .svc-icon-circle {
    width: 40px;
    height: 40px;
  }

  .svc-icon-circle i {
    font-size: 0.88rem;
  }

  .svc-price-val {
    font-size: 1.05rem;
  }
}