@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Figtree:wght@400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --surface: #dcefe4;
  --accent: #3ecaa7;
  --accent-hover: #35b596;
  --text: #25282b;
  --text-muted: #52575c;
  --border: rgba(0, 0, 0, 0.08);
  --accent-rgb: 62, 202, 167;
  --bg-rgb: 255, 255, 255;
  --heading-font: 'IBM Plex Sans', sans-serif;
  --body-font: 'Figtree', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text overflow prevention */
.service-card, .team-card, .hero h1, .section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ==================== PRELOADER ==================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 24px;
}

.preloader-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--surface);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==================== NAVIGATION ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  color: var(--text);
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 1px;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 100%;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition);
  padding: 100px 32px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 1.0625rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--surface);
  color: var(--accent);
}

.mobile-menu .btn {
  margin-top: 16px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.3);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
  min-height: 44px;
}

/* ==================== HERO ==================== */
.hero {
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 790px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--surface);
  border-radius: 40px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent-hover);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-value {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1.2;
}

.hero-stat .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 100px 20px;
  position: relative;
}

.section--surface {
  background: var(--surface);
}

.section--blue {
  background: #e8f1f7;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--surface);
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--accent-hover);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section--surface .section-badge {
  background: rgba(255,255,255,0.7);
}

/* Curved corner cutouts */
.section--surface::before {
  content: '';
  position: absolute;
  top: -49px;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0 0 50px 0;
  box-shadow: 24px 24px 0 var(--surface);
  pointer-events: none;
}

.section--surface::after {
  content: '';
  position: absolute;
  top: -49px;
  left: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0 0 0 50px;
  box-shadow: -24px 24px 0 var(--surface);
  pointer-events: none;
}

.section--blue::before {
  content: '';
  position: absolute;
  top: -49px;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0 0 50px 0;
  box-shadow: 24px 24px 0 #e8f1f7;
  pointer-events: none;
}

.section--blue::after {
  content: '';
  position: absolute;
  top: -49px;
  left: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0 0 0 50px;
  box-shadow: -24px 24px 0 #e8f1f7;
  pointer-events: none;
}

/* Bottom cutouts for transitioning back to white */
.cutout-bottom-white::before {
  content: '';
  position: absolute;
  bottom: -49px;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0 50px 0 0;
  box-shadow: 24px -24px 0 var(--surface);
  pointer-events: none;
  z-index: 1;
}

.cutout-bottom-white::after {
  content: '';
  position: absolute;
  bottom: -49px;
  left: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50px 0 0 0;
  box-shadow: -24px -24px 0 var(--surface);
  pointer-events: none;
  z-index: 1;
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.service-card:nth-child(3n+2) {
  background: var(--surface);
}

.service-card:nth-child(3n+3) {
  background: #e8f1f7;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  margin-top: 16px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
}

.service-card .promo {
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--accent-hover);
  font-weight: 500;
}

/* ==================== FEATURES / USP ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  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: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Large first image */
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

/* ==================== PROCESS ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 20px;
}

.process-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--surface);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(var(--accent-rgb), 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item p,
.contact-item a {
  font-size: 1.0625rem;
  color: var(--text);
  font-weight: 500;
}

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

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: var(--radius);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 20px 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -49px;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0 0 50px 0;
  box-shadow: 24px 24px 0 var(--text);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  top: -49px;
  left: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0 0 0 50px;
  box-shadow: -24px 24px 0 var(--text);
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .nav-logo {
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  padding: 140px 20px 60px;
  text-align: center;
  background: var(--surface);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -49px;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0 50px 0 0;
  box-shadow: 24px -24px 0 var(--surface);
  pointer-events: none;
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -49px;
  left: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50px 0 0 0;
  box-shadow: -24px -24px 0 var(--surface);
  pointer-events: none;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

/* ==================== SERVICE DETAIL CARDS ==================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-detail-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ==================== SCHEDULE / HOURS ==================== */
.hours-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.hours-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.hours-value {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.hours-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 120px 16px 60px;
  }

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

  .hero-stats {
    gap: 24px;
  }

  .hero-stat .stat-value {
    font-size: 1.5rem;
  }

  .section {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-inner {
    padding: 40px 24px;
  }

  .page-header {
    padding: 120px 16px 40px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .section-header h2 {
    font-size: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}
