/* === Theme Variables === */
:root {
  --color-primary: #f5a623;
  --color-primary-dark: #e0911a;
  --color-primary-light: #fef9f0;
  --color-accent: #4a3728;
  --color-text: #3a3a3a;
  --color-text-light: #6b6b6b;
  --color-bg: #ffffff;
  --color-bg-warm: #fffcf5;
  --color-bg-section: #fdf6e9;
  --color-card-bg: #ffffff;
  --color-card-border: #f0e6d3;
  --color-featured-bg: #fef3dc;
  --color-featured-border: #f5a623;
  --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
  --max-width: 1000px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 12px;
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 64px 24px 56px;
}

.hero-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 6px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === CTA Button === */
.cta-button {
  display: inline-block;
  background: white;
  color: var(--color-primary-dark);
  font-family: var(--font-family);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.contact .cta-button {
  background: var(--color-primary);
  color: white;
}

.contact .cta-button:hover {
  background: var(--color-primary-dark);
}

/* === Services === */
.services {
  padding: 64px 24px;
  background: var(--color-bg-warm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.service-card {
  background: var(--color-card-bg);
  border: 2px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

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

.service-card.featured {
  background: var(--color-featured-bg);
  border-color: var(--color-featured-border);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

.price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.service-card ul {
  list-style: none;
  text-align: left;
}

.service-card ul li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.service-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* === Highlights === */
.highlights {
  padding: 56px 24px;
  background: var(--color-bg);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.highlight {
  text-align: center;
  padding: 24px 16px;
}

.highlight-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.highlight h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.highlight p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 280px;
  margin: 0 auto;
}

/* === About === */
.about {
  padding: 64px 24px;
  background: var(--color-bg-section);
}

.about p {
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* === Service Area === */
.service-area {
  padding: 56px 24px;
  background: var(--color-bg);
}

.service-area p {
  text-align: center;
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--color-text-light);
  font-size: 1.02rem;
}

/* === Contact === */
.contact {
  padding: 64px 24px;
  background: var(--color-bg-section);
  text-align: center;
}

.contact p {
  max-width: 480px;
  margin: 12px auto 24px;
  color: var(--color-text-light);
  font-size: 1.02rem;
}

.schedule-note {
  margin-top: 16px !important;
  font-size: 0.9rem !important;
  color: var(--color-text-light);
}

.disclaimer {
  margin-top: 12px !important;
  font-size: 0.8rem !important;
  color: var(--color-text-light);
  font-style: italic;
}

/* === Footer === */
footer {
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
}

/* === Mobile === */
@media (max-width: 600px) {
  .hero {
    padding: 48px 20px 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button {
    padding: 12px 32px;
    font-size: 1rem;
  }
}
