/* ============================================
   PREMIUM MASSAGE MOMBASA - Light Theme Design
   ============================================ */

/* CSS Variables - Light Theme */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9F9F9;
  --bg-card: #FFFFFF;
  --gold: #D4AF37;
  --gold-light: #D1A13D;
  --gold-dark: #B8962E;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-dark: #1D4ED8;
  --text-primary: #0A192F;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #16C65D;
  --border-color: #E5E7EB;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.2;
  display: block;
  text-decoration: none;
}

.logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a.active-link {
  color: var(--gold);
}

.nav-links a.active-link::after {
  width: 100%;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: inherit;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-call {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-call:hover {
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold);
}

.btn-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  opacity: 0.9;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.5)),
              url('https://images.unsplash.com/photo-1540555700478-4be289fbec6b?w=1920&q=80') center/cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Dark Overlay */
.hero.hero-dark {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.6)) center/cover no-repeat,
              var(--bg-image);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Medium Overlay */
.hero.hero-medium {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.65), rgba(10, 25, 47, 0.45)) center/cover no-repeat,
              var(--bg-image);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Light Overlay */
.hero.hero-light {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.3)) center/cover no-repeat,
              var(--bg-image);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Gold Accent Overlay */
.hero.hero-gold-accent {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.5)), 
              radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15), transparent 50%),
              var(--bg-image);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-card-content {
  padding: 25px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-audience {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-style: italic;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.service-duration {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-benefits {
  list-style: none;
  margin-bottom: 20px;
}

.service-benefits li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-actions .btn {
  width: 100%;
  text-align: center;
}

.service-actions .btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.service-actions .btn-outline:hover {
  background: var(--text-primary);
  color: var(--white);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.5rem;
  letter-spacing: 5px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   MASSEUSES SECTION
   ============================================ */
.masseuses {
  background: var(--bg-primary);
}

.masseuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.masseuse-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.masseuse-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.masseuse-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.masseuse-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.masseuse-content {
  padding: 25px;
  text-align: center;
}

.masseuse-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.masseuse-specialization {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.masseuse-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.masseuse-certifications {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.masseuse-certifications span {
  background: var(--bg-secondary);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.masseuse-content .btn {
  width: 100%;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking {
  background: var(--bg-secondary);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.booking-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.booking-form h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-info {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.booking-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.info-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.whatsapp-cta {
  background: var(--whatsapp);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  transition: var(--transition);
}

.whatsapp-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateX(5px);
}

.whatsapp-cta svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: var(--bg-card);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--gold-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0A1120;
  padding: 60px 0 30px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: #9CA3AF;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #9CA3AF;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6B7280;
  font-size: 0.9rem;
}

/* ============================================
   CHAT/BOOKING MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 25px;
  border-radius: 15px 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.modal-header h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.2rem;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

.modal-guide {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  border-left: 4px solid var(--gold);
}

.modal-guide h4 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-guide li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-guide li::before {
  content: '•';
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.modal-form-group {
  margin-bottom: 20px;
}

.modal-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.modal-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-submit {
  width: 100%;
  padding: 15px;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-submit:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.modal-info {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.modal-info a {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   WHATSAPP FLOATING WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp-tooltip {
  background: var(--white);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn 0.5s ease 2s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

.whatsapp-button:hover {
  transform: scale(1.1);
  animation: none;
}

.whatsapp-button svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    display: flex;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1101;
    padding: 10px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid,
  .testimonials-grid,
  .masseuses-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Smooth scroll padding for fixed header */
section[id] {
  scroll-margin-top: 80px;
}

/* Selection styling */
::selection {
  background: var(--gold);
  color: var(--white);
}