/* ============================================
   205 SPA — Custom CSS Framework
   Modern, mobile-first, SEO-optimized
   Color palette: Dusty Rose #b5637c, Warm Charcoal #3a3a3a
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #b5637c;
  --primary-light: #cc8a9d;
  --primary-dark: #964e65;
  --dark: #3a3a3a;
  --text: #555555;
  --text-light: #8a8a8a;
  --bg: #ffffff;
  --bg-warm: #faf8f6;
  --bg-accent: #f5f0ed;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s ease;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-body);
  margin-bottom: 8px;
  display: block;
}

.section-title { margin-bottom: 16px; }

.section-divider {
  width: 80px;
  height: 1px;
  background: var(--primary);
  border: none;
  margin-bottom: 24px;
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--primary);
}
.section-divider.center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-gold { color: var(--primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(181,99,124,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 2px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 2px solid var(--primary);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Main menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--primary);
  background: transparent;
}

/* Nav arrow */
.nav-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.nav-arrow svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.nav-menu > li:hover .nav-arrow {
  transform: rotate(180deg);
}

/* ---- MEGA MENU (Services) ---- */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  min-width: 280px;
}
.nav-menu > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mega menu - multi-column for services */
.dropdown.mega {
  min-width: 660px;
  padding: 24px 28px;
  display: flex;
  gap: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}
.nav-menu > li:hover > .dropdown.mega {
  transform: translateX(-50%) translateY(0);
}

.mega-col {
  flex: 1;
  min-width: 0;
}

.dropdown-label {
  display: block;
  padding: 0 0 8px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  border-bottom: 2px solid rgba(181, 99, 124, 0.15);
  margin-bottom: 6px;
  pointer-events: none;
}

.dropdown a {
  display: block;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.dropdown a:hover {
  background: rgba(181, 99, 124, 0.08);
  color: var(--primary);
  transform: translateX(3px);
}

/* Simple dropdown (packages) */
.dropdown.simple {
  min-width: 240px;
  padding: 12px;
  display: block;
}
.dropdown.simple a {
  padding: 10px 14px;
}

/* ---- NAV CTA ---- */
.nav-cta { margin-left: 8px; }
.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* ---- MOBILE TOGGLE ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1002;
  position: relative;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ---- NAV OVERLAY (mobile) ---- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: opacity 1s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,58,58,0.75) 0%, rgba(181,99,124,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  max-width: 700px;
  text-align: center;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.bg-warm { background: var(--bg-warm); }
section.bg-cream { background: var(--bg-accent); }
section.bg-dark {
  background: var(--dark);
  color: var(--white);
}
section.bg-dark h2,
section.bg-dark h3 { color: var(--white); }
section.bg-gold {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
section.bg-gold h2,
section.bg-gold h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  text-align: left;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--white);
  border-left: 4px solid transparent;
}
.feature-card:hover {
  border-left-color: var(--primary);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 20px;
}
.feature-card h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--primary);
}
.service-card:hover {
  border-top-width: 5px;
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex: 1;
}
.service-card-body .service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.service-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}
.service-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 8px; }

/* Service Category Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.service-tab {
  padding: 10px 24px;
  border-radius: 6px;
  background: var(--bg-warm);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.service-tab:hover,
.service-tab.active {
  background: var(--primary);
  color: var(--white);
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--text-light); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  font-family: var(--font-heading);
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-accent);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.testimonial-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}
.testimonial-stars {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  padding: 64px 24px;
}
.cta-banner h2 {
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(181,99,124,0);
  transition: var(--transition);
}
.gallery-item:hover::after {
  background: rgba(181,99,124,0.25);
}

/* ---------- Contact / Map ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
}
.contact-info-item h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 350px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-brand img { height: 45px; margin-bottom: 8px; }
.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer ul a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Serving Areas (Footer SEO) */
.footer-areas {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  line-height: 1.6;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }
.breadcrumb .separator { margin: 0 8px; color: var(--text-light); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #12122a 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(181,99,124,0.2) 100%);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  font-size: 1.05rem;
  position: relative;
}
.page-hero .breadcrumb {
  position: relative;
  margin-bottom: 16px;
}
.page-hero .breadcrumb span { color: rgba(255,255,255,0.5); }

/* ---------- Service Detail Page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
}
.service-content p {
  color: var(--text);
  line-height: 1.8;
}
.service-content ul {
  list-style: none;
  margin: 16px 0;
}
.service-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
}
.service-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--bg-accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}
.price-table {
  width: 100%;
}
.price-table tr {
  border-bottom: 1px solid #d5e0e0;
}
.price-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
}

/* Related Services */
.related-services {
  list-style: none;
}
.related-services li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #d5e0e0;
  font-size: 0.9rem;
  color: var(--text);
}
.related-services li a:hover {
  color: var(--primary);
}
.related-services li a::after {
  content: '\2192';
  color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}
.related-services li a:hover::after { opacity: 1; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.05rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: var(--font-body);
}
.faq-question .faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}
.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- Sticky Phone Bar (mobile) ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--primary);
}
.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}
.mobile-bar a:first-child {
  border-right: 1px solid rgba(255,255,255,0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 60px 0; }

  /* Mobile Nav */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 24px;
    gap: 0;
    box-shadow: -16px 0 48px rgba(0,0,0,0.12);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1001;
  }
  .nav-menu.open { right: 0; }

  .nav-menu > li {
    width: 100%;
  }
  .nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--dark);
    width: 100%;
  }
  .nav-menu > li > a:hover,
  .nav-menu > li.active > a {
    background: rgba(181, 99, 124, 0.06);
    color: var(--primary);
  }
  .nav-menu > li > a .nav-arrow {
    margin-left: auto;
  }

  /* Mobile dropdown */
  .dropdown,
  .dropdown.mega,
  .dropdown.simple {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    background: var(--bg-warm);
    display: block !important;
    min-width: unset !important;
    left: auto !important;
    gap: 0 !important;
    width: 100% !important;
  }
  .dropdown.open {
    max-height: 2000px;
    padding: 8px 0;
  }
  .dropdown a {
    display: block;
    padding: 10px 32px;
    font-size: 0.85rem;
    border-radius: 0;
    color: var(--text);
    white-space: normal;
  }
  .dropdown a:hover {
    transform: none;
    padding-left: 36px;
    color: var(--primary);
  }
  .mega-col {
    display: block !important;
    flex: none !important;
    width: 100% !important;
    min-width: unset !important;
    margin-bottom: 4px;
  }
  .dropdown-label {
    display: block;
    padding: 14px 24px 6px;
    border-bottom: none;
    margin-top: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .hero-content { padding: 120px 0 80px; }
  .hero-content h1 { font-size: 2rem; }

  .mobile-bar { display: block; }
  body { padding-bottom: 56px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Service Hero Image ---------- */
.service-hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

/* ---------- Packages Grid ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}
.package-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.package-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(181,99,124,0.04) 0%, var(--white) 100%);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.package-card h3 { margin-bottom: 8px; }
.package-card .package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0;
  font-family: var(--font-heading);
}
.package-card .package-price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}
.package-includes {
  text-align: left;
  margin: 24px 0;
}
.package-includes li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid #e8f0f0;
}
.package-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
