/* Rumah Sehat Maryam - Clean Design System & Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #ec4899;
  --primary-dark: #db2777;
  --primary-light: #fce7f3;
  --secondary: #0d9488;
  --secondary-light: #ccfbf1;
  --accent: #881337;
  --bg-main: #fffbfa;
  --bg-surface: #ffffff;
  --bg-subtle: #fff5f5;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #fce7f3;
  --gold: #f59e0b;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(236, 72, 153, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 30px -10px rgba(136, 19, 55, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
}

main, section, header, footer {
  width: 100%;
  max-width: 100%;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 251, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(252, 231, 243, 0.8);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 251, 250, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.logo-title span {
  color: var(--primary);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-right-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  z-index: 1002;
}

.mobile-nav-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-nav-toggle.active .bar:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

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

.nav-cta-simple {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.nav-cta-simple:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
  padding: 9rem 0 5rem;
  background: radial-gradient(circle at top right, #fce7f3 0%, transparent 60%),
    radial-gradient(circle at bottom left, #ccfbf1 0%, transparent 50%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 800;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  background: #fce7f3;
  color: var(--primary-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-section {
  padding: 4rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: var(--bg-subtle);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.service-badge.popular {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.tag {
  background: var(--primary-light);
  color: var(--accent);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
}

.service-footer {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.btn-add-service {
  background: var(--primary-light);
  color: var(--accent);
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  text-align: center;
}

.btn-add-service:hover {
  background: var(--primary);
  color: white;
}

/* Reviews Section (Google Reviews 5.0★) */
.reviews-section {
  padding: 6rem 0;
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: white;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--accent);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Booking Reservation Section */
.booking-section {
  padding: 5rem 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.booking-box {
  background: linear-gradient(135deg, #fff5f8, #fce7f3);
  border: 2px solid #fbcfe8;
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.booking-form-clean {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-grid-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}

.input-field {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-main);
  transition: var(--transition);
}

.input-field:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
  background-color: white;
}

/* Custom Select Card Trigger Button */
.custom-select-card {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-main);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.custom-select-card:hover, .custom-select-card:focus {
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.15);
  outline: none;
}

.select-card-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.select-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.select-card-text {
  display: flex;
  flex-direction: column;
}

.select-card-text strong {
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
}

.select-card-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.select-card-badge {
  background: var(--primary-light);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.custom-select-card:hover .select-card-badge {
  background: var(--primary);
  color: white;
}

/* Modal Pop-Up Overlay & Mobile Bottom Sheet */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 92%;
  max-width: 520px;
  max-height: 85vh;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(136, 19, 55, 0.3);
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.modal-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #fff5f8, #fce7f3);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-header-icon {
  font-size: 1.6rem;
}

.modal-header h3 {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 800;
  margin: 0;
}

.modal-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-close-modal {
  background: white;
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.btn-close-modal:hover {
  background: var(--primary);
  color: white;
}

.modal-body {
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-main);
  cursor: pointer;
  transition: var(--transition);
}

.option-card:hover {
  border-color: var(--primary);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.12);
}

.option-card.active {
  border-color: var(--primary);
  background: #fff0f6;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.18);
}

.option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.option-details {
  flex-grow: 1;
}

.option-details h4 {
  font-size: 0.98rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.option-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.option-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: transparent;
  flex-shrink: 0;
  transition: var(--transition);
}

.option-card.active .option-check {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  font-weight: 800;
}

/* Location Maps & Socials Section */
.location-section {
  padding: 6rem 0;
  background: white;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info h2 {
  font-size: 2.3rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.location-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.social-links-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-social {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-social.ig {
  background: linear-gradient(135deg, #c13584, #e1306c);
  color: white;
}

.btn-social.fb {
  background: #1877f2;
  color: white;
}

.btn-social:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-subtle);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.8rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

.faq-icon {
  transition: var(--transition);
}

/* Footer */
footer {
  background: #331525;
  color: #fbcfe8;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-title {
  color: white;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: 'Outfit', sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(252, 207, 232, 0.2);
  font-size: 0.85rem;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.action-float {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.action-float.wa {
  background: #25d366;
}

.action-float.call {
  background: var(--primary);
}

.action-float:hover {
  transform: scale(1.1);
}

/* Media Queries (Mobile First Responsive) */
@media (max-width: 992px) {
  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.9rem 1.25rem;
  }

  .nav-right-wrap {
    gap: 0.8rem;
  }

  .mobile-nav-toggle {
    display: flex;
    margin-left: 0.2rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    padding: 6rem 2rem 2rem;
    z-index: 1001;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
  }

  .form-grid-clean {
    grid-template-columns: 1fr;
  }

  .booking-box {
    padding: 1.5rem 1rem;
  }

  .booking-form-clean {
    padding: 1.2rem 1rem;
  }

  .modal-popup {
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    width: 100vw;
    max-width: 100vw;
    border-radius: 28px 28px 0 0;
    max-height: 82vh;
  }

  .modal-popup.active {
    transform: translateY(0);
  }

  .custom-select-card {
    padding: 0.85rem 1rem;
    border-radius: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    width: 92%;
    padding: 0;
  }

  .nav-container {
    padding: 0.85rem 1rem;
  }

  .logo-group {
    gap: 0.5rem;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .logo-sub {
    font-size: 0.6rem;
  }

  .logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .hero {
    padding: 6.5rem 0 3rem;
  }

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

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: space-between;
  }

  .stat-item h3 {
    font-size: 1.4rem;
  }

  .hero-image-card img {
    height: 280px;
  }

  .floating-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 0.75rem;
    max-width: calc(100% - 24px);
  }

  .floating-badge .badge-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .action-float {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}