@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette - Premium Spa & Beauty Aesthetic */
  --primary: hsl(345, 45%, 24%);         /* Premium Burgundy Accent */
  --primary-hover: hsl(345, 45%, 16%);   /* Darker Burgundy Hover */
  --primary-light: hsl(350, 50%, 92%);   /* Light Rose-Plum Tint */
  
  --secondary: hsl(345, 50%, 14%);       /* Deepest Plum/Burgundy */
  --accent: hsl(350, 45%, 60%);         /* Dusty Rose */
  
  --bg-main: hsl(350, 40%, 94.5%);     /* Richer Soft Pink/Rose Backdrop */
  --bg-card: hsl(0, 0%, 100%);          /* Pure White */
  --bg-footer: hsl(345, 45%, 12%);      /* Very Deep Burgundy */
  
  --text-dark: hsl(345, 20%, 15%);      /* Dark Burgundy Tinted Charcoal */
  --text-light: hsl(350, 20%, 95%);      /* Soft Pinkish Tinted Cream */
  --text-muted: hsl(345, 12%, 45%);     /* Muted Burgundy */
  
  --border-color: hsl(36, 30%, 90%);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Typographical Presets --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: 8rem 10% 8rem 10%;
}

@media (max-width: 1200px) {
  .section-padding {
    padding: 6rem 5% 6rem 5%;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 1.5rem 4rem 1.5rem;
  }
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(87, 20, 36, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 20, 36, 0.35);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header span {
  font-family: var(--font-body);
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.75rem;
  color: var(--secondary);
  position: relative;
  padding-bottom: 1.25rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-color);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px; /* Increased height to make the logo even larger */
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 1010;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem 2rem;
  background: linear-gradient(135deg, hsl(36, 40%, 94%) 0%, hsl(36, 30%, 88%) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 138, 68, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  background-color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  width: 100%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--primary);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: morphBlob 15s ease-in-out infinite alternate;
}

.hero-image-container img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

@keyframes morphBlob {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
  }
  100% {
    border-radius: 60% 40% 60% 40% / 40% 50% 50% 60%;
  }
}

/* --- ABOUT SECTION --- */
.about {
  background-color: var(--bg-card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}

.about-img-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-box:nth-child(1) {
  transform: translateY(-20px);
}

.about-img-box:nth-child(2) {
  transform: translateY(20px);
}

.experience-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 20%);
  background-color: var(--secondary);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
  border: 2px solid var(--primary);
}

.experience-badge h3 {
  font-size: 2.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: white;
}

.experience-badge p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content h3 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-features {
  margin: 2rem 0;
  list-style: none;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--secondary);
}

.about-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* --- SERVICES SECTION --- */
.services {
  background-color: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

.service-img-top {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-top img {
  transform: scale(1.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition);
  margin-left: 2rem;
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  padding: 0 2rem;
  margin-top: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  padding: 0 2rem;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.service-learn-more svg {
  transition: var(--transition);
}

.service-card:hover .service-learn-more svg {
  transform: translateX(5px);
}

/* --- DIOT BUZ LAZER HIGHLIGHT --- */
.laser-highlight {
  background-color: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.laser-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.laser-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.laser-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.laser-tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.laser-content h3 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.laser-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

.laser-feature-item {
  display: flex;
  gap: 1rem;
}

.laser-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.laser-feature-item h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.laser-feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- STATS SECTION --- */
.stats {
  background-color: var(--secondary);
  color: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

/* --- CAMPAIGNS SECTION --- */
.campaigns-section {
  background-color: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.campaigns-intro {
  text-align: center;
  max-width: 800px;
  margin: -2rem auto 4rem auto;
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.9;
}

.logos-slider {
  margin: 0 auto 5rem auto;
  max-width: 1000px;
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.logo-slide-track {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.logo-slide-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(70%);
  transition: var(--transition);
}

.logo-slide-track img:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.08);
}

.campaign-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.campaign-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.campaign-logo-box {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.campaign-logo-box img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.campaign-logo-box.double-logos img {
  height: 48px;
}

.campaign-card h4 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.campaign-discount {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: inline-block;
}

.campaign-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.campaign-btn {
  width: 100%;
}

@media (max-width: 992px) {
  .campaign-cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* --- APPOINTMENT / CONTACT SECTION --- */
.contact-section {
  background-color: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  margin: 2.5rem 0;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Map frame style */
.map-container {
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Appointment Form Card */
.appointment-card {
  background-color: var(--bg-card);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.appointment-card h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  text-align: center;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(184, 138, 68, 0.15);
}

.submit-btn {
  width: 100%;
  margin-top: 1.5rem;
}

.form-success-msg {
  display: none;
  text-align: center;
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1.5rem;
  font-weight: 600;
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-footer);
  color: var(--text-light);
  padding: 5rem 10% 2.5rem 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
}

.footer-column h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-about p {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-hours p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-grid, .laser-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-images {
    order: 2;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 1005;
    transition: var(--transition);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .laser-features {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .appointment-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- FLOATING ACTIONS --- */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.phone-float {
  position: fixed;
  bottom: 7.2rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(87, 20, 36, 0.3);
  z-index: 9999;
  transition: var(--transition);
  animation: pulsePhone 2s infinite;
}

.phone-float:hover {
  background-color: var(--primary-hover);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 20, 36, 0.45);
}

.whatsapp-float svg, .phone-float svg {
  fill: currentColor;
}

@keyframes pulseWhatsapp {
  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 pulsePhone {
  0% {
    box-shadow: 0 0 0 0 rgba(87, 20, 36, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(87, 20, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(87, 20, 36, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  
  .phone-float {
    bottom: 5.3rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg, .phone-float svg {
    width: 24px;
    height: 24px;
  }
}

/* --- CAMPAIGN MODAL BANNER --- */
.campaign-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.campaign-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 14, 22, 0.4);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background-color: var(--bg-card);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  max-width: 550px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  z-index: 2010;
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content.image-modal {
  padding: 2.5rem;
  max-width: 550px;
  width: 90%;
  overflow: hidden;
  background: white;
  border-radius: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.campaign-img-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: var(--transition);
}

.campaign-img-banner:hover {
  transform: scale(1.02);
}

.modal-content.image-modal .modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  color: var(--text-muted);
  font-size: 2.2rem;
  line-height: 1;
  z-index: 10;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.modal-content.image-modal .modal-close-btn:hover {
  color: var(--primary);
  background: none;
}

.campaign-modal.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary);
}
