/* =====================================================
   Spa Soul Bellandur — FULL MOBILE-OPTIMIZED CSS
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ========================= ROOT ========================= */
:root {
  --primary:      #4fd1c5;
  --primary-dark: #14b8a6;
  --primary-glow: rgba(79, 209, 197, 0.4);
  --dark:         #0b1220;
  --dark-card:    #111c2e;
  --dark-card2:   #0d1626;
  --light:        #f8fafc;
  --white:        #ffffff;
  --text:         #334155;
  --text-muted:   #64748b;
  --whatsapp:     #25d366;
  --call:         #3b82f6;
  --border:       rgba(226, 232, 240, 0.1);
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    32px;
  --shadow-sm:    0 4px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 12px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 24px 60px rgba(0,0,0,0.18);
  --transition:   all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:     75px;
}

/* ========================= RESET ========================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  padding-bottom: 70px; /* space for mobile CTA bar */
}
img { width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; outline: none; cursor: pointer; font-family: inherit; }

/* ========================= SCROLLBAR ========================= */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #e2e8f0; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 100px; }

/* ========================= HELPERS ========================= */
.container-custom { width: 100%; max-width: 1280px; margin: auto; padding: 0 20px; }
.section-padding { padding: 90px 0; scroll-margin-top: var(--header-h); }
.bg-dark  { background: var(--dark); }
.bg-light { background: var(--light); }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.section-title.dark {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title.light {
  color: transparent;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 650px;
}
.section-subtitle.light { color: rgba(255,255,255,0.75); }
.section-subtitle.dark  { color: var(--text-muted); }

.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* ========================= BUTTONS ========================= */
.btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--call);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(59,130,246,0.35);
}
.btn-call:hover { transform: translateY(-2px); background: #2563eb; }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #1da851; }

/* Full-width variants for mobile menu */
.btn-call-full, .btn-whatsapp-full {
  display: block; text-align: center;
  padding: 14px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
}
.btn-call-full    { background: var(--call); color: var(--white); }
.btn-whatsapp-full{ background: var(--whatsapp); color: var(--white); }
.btn-call-full:hover    { background: #2563eb; }
.btn-whatsapp-full:hover{ background: #1da851; }

/* (Old floating styles removed to prevent overlap with the new desktop action hub) */

/* ========================= HEADER ========================= */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  background: rgba(11,18,32,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
header.scrolled {
  background: rgba(11,18,32,0.95);
  padding: 5px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  padding: 0 20px;
  max-width: 1280px; margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

@media (max-width: 480px) {
  .logo img {
    height: 36px;
    max-width: 150px;
  }
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500; font-size: 0.9rem;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.nav-book-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.875rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; top: var(--header-h); left: 0; width: 100%; height: calc(100vh - var(--header-h));
  background: rgba(11,18,32,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 20px;
  flex-direction: column; gap: 20px;
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-menu.open { 
  display: flex; transform: translateY(0); opacity: 1; pointer-events: auto; 
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.mobile-menu ul li {
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.open ul li {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu.open ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open ul li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open ul li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu ul li a {
  display: block; padding: 14px 20px;
  color: var(--white);
  font-weight: 600; font-size: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.mobile-menu ul li a:hover { background: rgba(79,209,197,0.15); color: var(--primary); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; }

/* ========================= HERO SLIDER ========================= */
.hero-section {
  min-height: 100svh;
  display: flex; align-items: center;
  color: var(--white);
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

/* Stacked slide layers */
.hero-slider {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Gradient dark overlay on top of slides */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(11,18,32,0.82) 0%,
    rgba(11,18,32,0.60) 60%,
    rgba(11,18,32,0.75) 100%
  );
  pointer-events: none;
}

/* Subtle teal accent overlay */
.hero-section::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  
  pointer-events: none;
}


/* Dot navigation */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; gap: 10px; align-items: center;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active,
.hero-dot:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.3);
}

/* Right image fade transition */
#heroRightImg { transition: opacity 0.35s ease; }


.hero-inner {
  position: relative; z-index: 3;
  max-width: 1280px; margin: auto; padding: 80px 20px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}


.hero-badge {
  display: inline-block;
  background: rgba(79,209,197,0.18);
  border: 1px solid rgba(79,209,197,0.3);
  color: var(--primary);
  padding: 8px 18px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-title span { color: var(--primary); }

.hero-desc {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px; max-width: 540px;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 30px;
}
.hero-feature-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-feature-item::before { content: '✓'; color: var(--primary); font-weight: 800; }

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  height: 520px; object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--primary);
  color: var(--dark);
  padding: 16px 22px; border-radius: var(--radius-md);
  font-weight: 800; font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  opacity: 0.8;
}
.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
.arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  margin: -4px;
  animation: scrollArrows 2s infinite;
}
.arrows span:nth-child(2) { animation-delay: 0.2s; }
.arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}
@keyframes scrollArrows {
  0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* ========================= ABOUT ========================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1280px; margin: auto; padding: 0 20px;
}
.about-img { border-radius: var(--radius-lg); height: 480px; box-shadow: var(--shadow-lg); }
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.8; font-size: 1rem; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px;
}
.stat-box {
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px; text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--primary-dark); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========================= SERVICES ========================= */
.section-header { text-align: center; margin-bottom: 50px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.service-card {
  background: rgba(17, 28, 46, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  border-color: rgba(79, 209, 197, 0.4);
}

.service-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.service-card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

.service-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-duration {
  display: inline-block;
  background: rgba(79, 209, 197, 0.15);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 18px;
  width: fit-content;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.service-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.service-actions a {
  flex: 1;
  padding: 12px 10px;
  font-size: 0.85rem;
  border-radius: 12px;
}

.service-card:hover .service-actions a {
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .service-card img {
    height: 200px;
  }
}

/* ========================= OFFERS ========================= */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

.offer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 580px; /* Increased height to show full image content */
  background: var(--dark);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid var(--border);
}

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

.offer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.offer-card:hover .offer-img {
  transform: scale(1.05);
  filter: brightness(0.5);
}

.offer-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(11, 18, 32, 0.3);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.offer-card:hover .offer-overlay {
  opacity: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(11, 18, 32, 0.6);
}

.offer-overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
  width: 100%;
}

.offer-card:hover .offer-overlay-content {
  transform: translateY(0);
}

.offer-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.offer-actions a {
  width: 220px;
  font-size: 1rem;
  padding: 14px 20px;
}

@media (max-width: 768px) {
  .offer-card {
    height: 520px;
  }
}

@media (max-width: 480px) {
  .offer-card {
    height: 480px;
  }
}

/* ========================= GALLERY ========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1280px; margin: auto; padding: 0 20px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }

/* ========================= WHY CHOOSE ========================= */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1280px; margin: auto; padding: 0 20px;
}
.why-img { border-radius: var(--radius-lg); height: 480px; box-shadow: var(--shadow-lg); }
.why-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.why-point {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 20px;
  color: var(--text); font-size: 0.95rem; font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.why-points { margin: 25px 0 35px; }
.why-point {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
}
.why-point:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  background: var(--bg-light);
}

.why-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========================= FAQ ========================= */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-card2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.01);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================= REVIEWS ========================= */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; max-width: 1280px; margin: auto; padding: 0 20px;
}
.review-card {
  background: var(--dark-card);
  border: 1px solid rgba(79,209,197,0.1);
  border-radius: var(--radius-lg); padding: 28px;
}
.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.review-text { color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 20px; font-size: 0.95rem; }
.review-name { color: var(--primary); font-weight: 700; }

/* ========================= CONTACT ========================= */
.contact-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 60px 50px; box-shadow: var(--shadow-lg);
  max-width: 1100px; margin: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 45px;
}

.contact-header .section-label { display: block; margin-bottom: 8px; }
.contact-header .section-subtitle { max-width: 700px; margin: 15px auto 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.contact-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #e2e8f0;
  text-align: left;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-card-icon {
  font-size: 1.8rem;
  width: 54px;
  height: 54px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-card-label {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-card-val {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-actions-wrap {
  background: #f8fafc;
  padding: 35px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.contact-action-hint {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-actions a {
  width: 100%;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .contact-box { padding: 40px 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-actions-wrap { padding: 30px; }
}

@media (max-width: 768px) {
  .contact-card { padding: 20px; gap: 15px; }
  .contact-card-icon { width: 48px; height: 48px; font-size: 1.5rem; }
  .contact-map { height: 320px; }
}

@media (max-width: 768px) {
  .contact-map {
    height: 300px;
    margin-top: 28px;
    border-radius: var(--radius-md);
  }
}


/* ========================= FOOTER ========================= */
footer { background: #060d1a; color: rgba(255,255,255,0.75); padding: 70px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 50px;
}
.footer-col h3, .footer-col h4 { color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; }
.footer-col p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-btn-call, .footer-btn-wa {
  flex: 1; min-width: 120px; text-align: center;
  padding: 11px 16px; border-radius: 999px;
  font-weight: 700; font-size: 0.85rem; transition: var(--transition);
}
.footer-btn-call { background: var(--call); color: var(--white); }
.footer-btn-call:hover { background: #2563eb; }
.footer-btn-wa { background: var(--whatsapp); color: var(--white); }
.footer-btn-wa:hover { background: #1da851; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}

/* ========================= FLOATING ACTIONS (DESKTOP) ========================= */
.floating-actions-desktop {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: white;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.float-btn.wa {
  background: var(--whatsapp);
  animation: float-pulse-wa 2.5s infinite;
}

.float-btn.call {
  background: var(--call);
  animation: float-pulse-call 2.5s infinite;
  animation-delay: 1.25s;
}

@keyframes float-pulse-wa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes float-pulse-call {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,0.5); }
  70%  { box-shadow: 0 0 0 15px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

/* ========================= MOBILE CTA BAR ========================= */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 850;
  display: none; /* shown on mobile via media query */
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px; font-weight: 700; font-size: 0.95rem;
}
.mobile-call    { background: var(--call); color: var(--white); }
.mobile-whatsapp{ background: var(--whatsapp); color: var(--white); }

/* ========================= PREMIUM ANIMATIONS ========================= */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.scale-in {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Apply scale-in to specific elements */
.gallery-item, .contact-card {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover { transform: scale(1.05); z-index: 2; }

/* =============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 20px 50px; }
  .hero-img-wrap { display: none; }
  .hero-desc { max-width: 100%; }
  .about-grid, .why-grid { grid-template-columns: 1fr; }
  .about-img, .why-img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================= */
@media (max-width: 768px) {
  :root { --header-h: 62px; }

  body { padding-bottom: 72px; }

  .section-padding { padding: 60px 0; }

  /* Header */
  .nav-links, .nav-book-btn { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-section { min-height: 100svh; }
  .hero-inner { padding: 70px 18px 50px; }
  .hero-features { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; text-align: center; }

  /* About */
  .about-grid { padding: 0 16px; }
  .about-img { height: 260px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-actions { flex-direction: column; }
  .about-actions a { text-align: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .service-actions { flex-direction: column; }
  .service-actions a { text-align: center; }

  /* Offers */
  .offers-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .offer-actions { flex-direction: column; }
  .offer-actions a { text-align: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; gap: 10px; }

  /* Why */
  .why-grid { padding: 0 16px; }
  .why-img { height: 240px; }
  .why-actions { flex-direction: column; }
  .why-actions a { text-align: center; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; padding: 0 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-row { flex-direction: column; }
  footer { padding-bottom: 32px; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: grid; }

  /* Floating actions hide on mobile (bar replaces them) */
  .floating-actions-desktop { display: none; }
}

/* =============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================= */
@media (max-width: 480px) {
  .container-custom { padding: 0 14px; }
  .hero-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .logo { font-size: 1.1rem; }
  .section-label { font-size: 0.7rem; letter-spacing: 2px; }
}
