/* ==========================================================================
   Sea Salt Spa - Master Stylesheet (Animated & Premium Edition)
   Color Palette: Burgundy / Wine Maroon (#561726), Soft Rose (#b86275), 
   Warm Silk Cream (#fbf8f5), Champagne Gold (#c5a880), Deep Charcoal (#2d2326)
   ========================================================================== */

:root {
  --primary: #561726;
  --primary-dark: #3a0b17;
  --primary-light: #782136;
  --primary-subtle: #faedf0;
  --accent-gold: #c5a880;
  --accent-gold-dark: #a68453;
  --accent-rose: #b86275;
  --accent-rose-light: #f5e4e8;
  --bg-cream: #fbf8f5;
  --bg-warm: #f6eee7;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --text-main: #2d2326;
  --text-muted: #6e6366;
  --text-light: #988e91;
  --border-color: #ebdcd5;
  --border-subtle: #f2e9e4;
  --shadow-sm: 0 4px 14px rgba(86, 23, 38, 0.06);
  --shadow-md: 0 10px 30px rgba(86, 23, 38, 0.09);
  --shadow-lg: 0 20px 50px rgba(86, 23, 38, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.68;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-rose);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Helper Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-rose { color: var(--accent-rose); }
.text-white { color: #ffffff !important; }
.bg-warm { background-color: var(--bg-warm); }
.bg-cream { background-color: var(--bg-cream); }
.bg-primary { background-color: var(--primary); color: #fff; }

.section-header {
  margin-bottom: 3.5rem;
}
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  background-color: var(--primary-subtle);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
  border: 1px solid rgba(86, 23, 38, 0.15);
  box-shadow: 0 2px 8px rgba(86, 23, 38, 0.05);
}
.section-title {
  font-size: 2.45rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.08rem;
}

/* ==========================================================================
   PREMIUM SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.28s; }
.delay-3 { transition-delay: 0.42s; }
.delay-4 { transition-delay: 0.56s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease-out;
}

.btn:active::after {
  transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
  background: linear-gradient(135deg, #6c1a2e 0%, #561726 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(86, 23, 38, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #7e1e35 0%, #3d0e19 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(86, 23, 38, 0.38);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: linear-gradient(135deg, #d8b88f 0%, #c5a880 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #c5a880 0%, #a8885c 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(197, 168, 128, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2ae06f 0%, #25D366 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.48);
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #3d0e19 0%, #561726 100%);
  color: #ebdcd5;
  font-size: 0.86rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-info {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar-item a {
  color: #ebdcd5;
}
.top-bar-item a:hover {
  color: #ffffff;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 20px rgba(86, 23, 38, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled .navbar {
  padding: 0.6rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-rose);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-main);
  position: relative;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-rose));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

/* Nav Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(86, 23, 38, 0.15);
  border: 1px solid var(--border-color);
  padding: 0.8rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.4rem;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: var(--bg-cream);
  color: var(--primary);
  padding-left: 1.6rem;
}

.dropdown-item i {
  font-size: 0.85rem;
  color: var(--accent-rose);
  transition: transform 0.2s ease;
}

.dropdown-item:hover i {
  transform: translateX(2px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.6rem;
}

/* ==========================================================================
   PROFESSIONAL HERO SLIDER SECTION
   ========================================================================== */

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  background-color: #220810;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Subtle zoom effect for active slide */
.swiper-slide-active .hero-slide-bg {
  animation: zoomInHero 8s linear forwards;
}

@keyframes zoomInHero {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(34, 8, 16, 0.92) 0%, 
    rgba(54, 14, 25, 0.82) 45%, 
    rgba(86, 23, 38, 0.45) 80%,
    rgba(34, 8, 16, 0.6) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-slide-content {
  max-width: 760px;
  padding: 2rem 0;
}

.hero-title {
  color: #ffffff;
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
}

.hero-title span.highlight {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-lead {
  color: #ebdcd5;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  opacity: 0;
  transform: translateY(30px);
}

/* Animate content when slide is active */
.swiper-slide-active .hero-title {
  animation: fadeInUp 0.8s ease forwards 0.2s;
}
.swiper-slide-active .hero-lead {
  animation: fadeInUp 0.8s ease forwards 0.4s;
}
.swiper-slide-active .hero-actions {
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper UI Customization */
.hero-slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
  background: var(--primary);
  border-color: var(--accent-gold);
}

.hero-slider-arrow::after {
  font-size: 1.5rem !important;
}

.swiper-pagination-bullet {
  width: 30px !important;
  height: 6px !important;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 50px !important;
  background: var(--accent-gold) !important;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.6);
}

@media (max-width: 992px) {
  .hero-slider-section {
    height: 70vh;
    min-height: 550px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-slider-arrow {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .hero-slider-section {
    height: 100vh;
    min-height: 580px;
  }
  .hero-slide {
    align-items: center;
  }
  .hero-slide-content {
    padding: 0;
    margin-top: 40px; /* Offset for header */
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-slide-overlay {
    background: linear-gradient(
      180deg, 
      rgba(34, 8, 16, 0.75) 0%, 
      rgba(54, 14, 25, 0.85) 50%, 
      rgba(34, 8, 16, 0.95) 100%
    );
  }
}


/* Service Highlights (Poster Banner Style) */
.poster-highlight-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.highlight-banner-card {
  background: linear-gradient(135deg, #561726 0%, #3d0e19 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.8rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.highlight-banner-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.poster-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.poster-service-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.3rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.poster-service-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.poster-icon-circle {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  background-color: #ffffff;
  color: var(--primary);
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.poster-service-pill:hover .poster-icon-circle {
  transform: scale(1.1) rotate(6deg);
}

.poster-service-title {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

/* Layout Grids */
.hero-grid,
.about-grid,
.contact-grid,
.blog-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.blog-layout-grid {
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.features-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Services Grid & Cards */
.services-section {
  padding: 5.5rem 0;
  background-color: var(--bg-cream);
}

.services-grid,
.services-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 2.2rem;
}

.features-grid-3,
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2.2rem;
}

.checklist-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 0.8rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-rose);
}

.service-card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card-body {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
  padding: 0.75rem 0;
  border-top: 1px dashed var(--border-color);
  border-bottom: 1px dashed var(--border-color);
}

.service-duration {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

/* About Snippet & Page */
.about-section {
  padding: 5.5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  transition: transform 0.5s ease;
}

.about-img-main:hover {
  transform: translateY(-4px);
}

.about-img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-experience-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: linear-gradient(135deg, #561726 0%, #3d0e19 100%);
  color: #fff;
  padding: 1.6rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 4px solid #ffffff;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.about-experience-card .exp-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.about-experience-card .exp-text {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--bg-cream);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}
.swiper-pagination-bullet {
  background-color: var(--text-muted);
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-rose);
}

.testimonial-stars {
  color: #f5a623;
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-main);
  font-size: 1.04rem;
  line-height: 1.68;
  margin-bottom: 1.6rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-subtle), #eedfe2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 3px 8px rgba(86, 23, 38, 0.1);
}

.author-info h4 {
  font-size: 1.08rem;
  margin-bottom: 0.15rem;
}

.author-info span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Blog Cards */
.blog-section {
  padding: 5.5rem 0;
  background-color: var(--bg-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2.2rem;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-rose);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.07);
}

.blog-card-body {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-rose);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--primary);
}
.blog-card-title a:hover {
  color: var(--accent-rose);
}

.blog-card-summary {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text-light);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.95rem;
}

/* Page Header (Internal Pages) */
.page-hero {
  background: linear-gradient(135deg, #561726 0%, #3d0e19 100%);
  padding: 4.8rem 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-title {
  color: #ffffff;
  font-size: 2.85rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #ebdcd5;
  position: relative;
  z-index: 2;
}

.breadcrumbs a {
  color: #ebdcd5;
}
.breadcrumbs a:hover {
  color: #ffffff;
}

/* Contact Section & Form */
.contact-section {
  padding: 5.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
}

.contact-info-panel {
  background: #ffffff;
  padding: 2.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-detail-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(86, 23, 38, 0.08);
}

.contact-detail-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.contact-form-card {
  background: #ffffff;
  padding: 2.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.88rem 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-cream);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(86, 23, 38, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}


.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 380px;
  margin-top: 3.5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Single Blog Page */
.single-blog-content {
  background: #ffffff;
  padding: 3.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

.single-blog-content h2, .single-blog-content h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.single-blog-content p {
  margin-bottom: 1.2rem;
  font-size: 1.06rem;
  line-height: 1.8;
}

.single-blog-content ul, .single-blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.single-blog-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* Floating Action Bars (Bottom Right) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  font-size: 1.45rem;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #2ae06f 0%, #25D366 100%);
  animation: pulseGreen 2.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-call {
  background: linear-gradient(135deg, #752237 0%, #561726 100%);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON (Positioned cleanly on Bottom Left)
   ========================================================================== */

.scroll-to-top {
  position: fixed;
  bottom: 152px; /* 24 (bottom) + 52 (btn) + 12 (gap) + 52 (btn) + 12 (gap) */
  right: 24px;
  left: auto;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #561726 0%, #3d0e19 100%);
  color: #ffffff;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 6px 20px rgba(86, 23, 38, 0.35);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-to-top.visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #a8885c 100%);
  color: #ffffff;
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.6);
  border-color: #ffffff;
}

.scroll-to-top i {
  transition: transform 0.25s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background-color: #220810;
  color: #dfcfd4;
  padding: 5.5rem 0 2.2rem;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-col p {
  color: #bfb0b5;
  font-size: 0.94rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #bfb0b5;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #9e8e93;
}

/* ==========================================================================
   SERVICE DETAIL EXPANSIVE LAYOUT & SIDEBAR
   ========================================================================== */

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: start;
}

.service-main-content {
  min-width: 0;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 10;
}

.service-quick-badge-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.service-quick-badge-item {
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.service-quick-badge-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
}

.service-quick-badge-item i {
  font-size: 1.4rem;
  color: var(--accent-rose);
}

.service-quick-badge-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

.service-quick-badge-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FULLY MOBILE RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Tablet Large (max 1200px) --- */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .service-detail-grid {
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
  }
  .poster-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}

/* --- Tablet (max 992px) --- */
@media (max-width: 992px) {
  /* Nav Menu Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(82vw, 320px);
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 1.08rem;
    border-bottom: 1px solid var(--border-subtle);
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border: 1px solid var(--border-color);
    background: var(--bg-cream);
    margin-top: 0.4rem;
    border-radius: var(--radius-sm);
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0.5rem 0;
  }
  .nav-item.dropdown.dropdown-open .dropdown-menu {
    display: block;
  }
  .dropdown-item {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--primary-subtle);
    font-size: 1.3rem;
  }
  .nav-cta .btn:not(.mobile-toggle) {
    display: none;
  }

  /* Service layout */
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-sidebar {
    position: static;
  }

  /* Page grids */
  .hero-grid,
  .about-grid,
  .contact-grid,
  .blog-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .features-grid-3,
  .about-pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
  .poster-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .service-quick-badge-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Typography */
  .hero-title {
    font-size: 2.6rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .container-wide {
    padding: 0 1.2rem;
  }
}

/* --- Tablet Small (max 768px) --- */
@media (max-width: 768px) {
  /* Hero slider */
  .hero-slider-section {
    min-height: 540px;
  }
  .hero-slide {
    min-height: 540px;
  }
  .hero-slide-content .hero-title {
    font-size: 2rem;
  }
  .hero-slide-content .hero-lead {
    font-size: 0.97rem;
  }
  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(34,8,16,0.82) 0%, rgba(54,14,25,0.9) 60%, rgba(34,8,16,0.95) 100%);
  }
  .hero-floating-badge {
    display: none;
  }

  /* Section hero on inner pages */
  .page-hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2;
  }
  .breadcrumbs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }

  /* Section spacing and typography */
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .section-desc {
    font-size: 1rem;
  }

  /* Service cards - one column */
  .services-grid,
  .services-catalogue-grid {
    grid-template-columns: 1fr;
  }

  /* Service badge bar - 2 col */
  .service-quick-badge-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Poster banner */
  .highlight-banner-card {
    padding: 2.2rem 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Tables scroll */
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Modal */
  #appointmentModal > div {
    padding: 1.8rem 1.4rem;
    max-height: 95vh;
  }

  /* Section padding */
  .services-section,
  .poster-highlight-section {
    padding: 3.5rem 0;
  }
}

/* --- Mobile (max 600px) --- */
@media (max-width: 600px) {
  html, body {
    overflow-x: clip;
    max-width: 100%;
  }

  /* Hide top announcement bar */
  .top-bar {
    display: none;
  }

  /* Header & nav */
  .navbar {
    padding: 0.65rem 0;
  }
  .brand-logo img {
    height: 42px;
    max-width: 148px;
    object-fit: contain;
  }

  /* Containers */
  .container,
  .container-wide {
    padding: 0 1rem;
    max-width: 100%;
    width: 100%;
  }

  /* Typography */
  .section-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }
  .section-desc {
    font-size: 0.95rem;
  }
  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
  }
  .page-hero-title {
    font-size: 1.5rem !important;
    line-height: 1.25;
  }

  /* Hero */
  .hero-slider-section,
  .hero-slide {
    min-height: 500px;
  }
  .hero-slide-content .hero-title {
    font-size: 1.85rem;
  }
  .hero-slide-content .hero-lead {
    font-size: 0.93rem;
  }

  /* Service cards */
  .service-card-body {
    padding: 1.3rem 1rem;
  }
  .service-card-title {
    font-size: 1.2rem;
  }
  .service-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .service-card-img {
    height: 190px;
  }

  /* Poster pills */
  .poster-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .poster-service-pill {
    padding: 1.2rem 0.8rem;
  }
  .poster-icon-circle {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .highlight-banner-card {
    padding: 2rem 1.2rem;
    border-radius: var(--radius-md);
  }

  /* Feature / pillar cards */
  .features-grid-3,
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Service detail badge bar */
  .service-quick-badge-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .service-quick-badge-item {
    padding: 0.8rem 0.9rem;
  }

  /* Buttons */
  .btn {
    font-size: 0.92rem;
    padding: 0.75rem 1.5rem;
  }

  /* Footer */
  .site-footer {
    padding: 3.5rem 0 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.82rem;
  }

  /* Floating WhatsApp/Call - move up to not block content */
  .floating-actions {
    right: 12px;
    bottom: 76px;
    gap: 10px;
  }
  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  /* Scroll to top - bottom right above floating actions */
  .scroll-to-top {
    right: 12px;
    left: auto;
    bottom: 188px; /* 76 + 46 + 10 + 46 + 10 */
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  /* Section spacing */
  .services-section,
  .poster-highlight-section {
    padding: 3rem 0;
  }

  /* Modal form and feature grids - collapse 2-col to single column */
  .form-row-2col,
  .features-2col {
    grid-template-columns: 1fr;
  }
}

/* --- Small Mobile (max 400px) --- */
@media (max-width: 400px) {
  .brand-logo img {
    height: 36px;
    max-width: 130px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .page-hero-title {
    font-size: 1.35rem !important;
  }
  .hero-slide-content .hero-title {
    font-size: 1.65rem;
  }
  .poster-services-grid {
    grid-template-columns: 1fr;
  }
  .service-quick-badge-bar {
    grid-template-columns: 1fr;
  }
  .btn {
    font-size: 0.88rem;
    padding: 0.7rem 1.2rem;
  }
  .floating-actions {
    right: 10px;
    bottom: 72px;
  }
  .scroll-to-top {
    right: 10px;
    left: auto;
    bottom: 184px;
    width: 46px;
    height: 46px;
    font-size: 0.9rem;
  }
}

