@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #1a1a1a;
  --secondary: #faf8f5;
  --accent: #e8b4b8;
  --accent-dark: #d49aa0;
  --text-light: #ffffff;
  --text-dark: #2d2d2d;
  --text-muted: #666666;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-solid: rgba(255, 255, 255, 0.95);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  --transition: 0.3s ease;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgb(6 6 6 / 72%);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--text-light);
}

.btn-dark:hover {
  background: #333;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 150;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--secondary);
  z-index: 200;
  padding: 100px 32px 32px;
  transition: var(--transition);
}

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

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-close::before,
.mobile-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.mobile-menu .nav-link {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary);
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: heroZoom 20s ease infinite;
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1.1); }
  50% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-features {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.icon-check {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 2px;
}

.scroll-indicator .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
}

/* Services Section */
.services {
  background: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent-dark);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.service-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-dark);
}

.service-link span {
  transition: var(--transition);
}

.service-link:hover span {
  transform: translateX(4px);
}

.section-link {
  text-align: center;
  margin-top: 48px;
}

/* About Section */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  background: url('https://s3-media0.fl.yelpcdn.com/bphoto/STslytR99x6FsddQAju4TQ/o.jpg');
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
}

.about-content .section-subtitle {
  color: var(--accent-dark);
}

.about-text {
  color: var(--text-muted);
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--accent-dark);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.about-features p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 14px;
}

.about-features .icon-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Features Section */
.features {
  background: var(--secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
}

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

.feature-icon {
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent-dark);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 5%;
  left: 8%;
  font-family: var(--font-heading);
  font-size: 300px;
  color: rgba(232, 180, 184, 0.05);
  line-height: 1;
}

.testimonial-slider {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.testimonial-service {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Location Teaser */
.location-teaser {
  background: var(--primary);
  color: var(--text-light);
  padding: 80px 0;
}

.location-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.location-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 16px;
}

.location-content > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-size: 16px;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.location-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: left;
}

.location-item strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.location-item strong svg {
  width: 18px;
  height: 18px;
}

.location-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d2d 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 16px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-size: 16px;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: var(--text-light);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-light);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Page Hero */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 180, 184, 0.15) 0%, transparent 60%);
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 10px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 400;
  color: var(--text-light);
}

/* Services Full Page */
.services-full {
  background: var(--secondary);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-full-card {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: var(--transition);
}

.service-full-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-full-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 180, 184, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-full-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-dark);
}

.service-full-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--primary);
}

.service-full-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.service-includes li {
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
  padding-left: 14px;
}

.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: var(--accent-dark);
  border-radius: 50%;
}

.service-full-meta {
  text-align: right;
}

.service-full-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-dark);
}

.service-full-duration {
  font-size: 12px;
  color: var(--text-muted);
}

/* Story Section */
.story-section {
  background: var(--secondary);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.story-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 20px;
}

/* Values Section */
.values-section {
  background: var(--primary);
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
}

.value-icon {
  margin-bottom: 20px;
}

.value-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

/* Commitment Section */
.commitment-section {
  background: var(--secondary);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.commitment-item {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.commitment-number {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.commitment-item h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
}

.commitment-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact Section */
.contact-section {
  background: var(--secondary);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--primary);
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-dark);
}

.contact-item h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--primary);
}

.contact-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-item a {
  color: var(--accent-dark);
}

.contact-link {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-top: 6px;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 28px;
  color: var(--primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--secondary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
}

/* Map Section */
.map-section {
  background: var(--primary);
}

.map-placeholder {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.15), rgba(232, 180, 184, 0.05));
}

.map-content {
  text-align: center;
  color: var(--text-light);
}

.map-content svg {
  stroke: var(--accent);
  margin-bottom: 12px;
}

.map-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 12px 24px;
  z-index: 1000;
  font-weight: 600;
  font-size: 14px;
}

.skip-link:focus {
  top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
  
  .nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .services-grid,
  .features-grid,
  .services-full-grid,
  .about-grid,
  .story-grid,
  .values-grid,
  .commitment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid .about-image {
    order: -1;
  }
  
  .location-info {
    grid-template-columns: 1fr;
  }
  
  .service-full-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-full-icon,
  .service-full-meta {
    justify-self: center;
  }
  
  .footer-grid {
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
