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

:root {
  --blue: #0071e3; /* Apple Blue */
  --blue-hover: #0077ed;
  --dark: #1d1d1f; /* Apple Dark Text/Bg */
  --text: #1d1d1f;
  --muted: #86868b; /* Apple Muted Text */
  --bg: #ffffff;
  --card: #f5f5f7; /* Apple Gray Card */
  --border: #d2d2d7;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.47059; overflow-x: hidden; letter-spacing: -0.022em; }

a { color: var(--blue); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; text-decoration: none; }

/* SKIP NAV */
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 0 0 12px 12px; z-index: 200; font-weight: 600; }
.skip-link:focus { top: 0; }

/* NAV - Glassmorphism */
nav { background: rgba(255, 255, 255, 0.8); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); padding: 0 6%; display: flex; align-items: center; justify-content: space-between; height: 48px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.1); transition: background 0.3s; }
nav.scrolled { background: rgba(255, 255, 255, 0.95); }
.nav-brand { color: var(--dark); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
.nav-brand span { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: #515154; font-size: 0.75rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }

/* Language Toggle */
.lang-toggle { background: transparent; border: 1px solid #d2d2d7; color: #1d1d1f; padding: 3px 10px; border-radius: 980px; font-size: 0.7rem; font-weight: 400; cursor: pointer; transition: 0.2s; }
.lang-toggle:hover { background: #f5f5f7; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 18px; height: 1.5px; background: #1d1d1f; border-radius: 1px; transition: .3s; }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; top: 48px; left: 0; right: 0; bottom: 0; background: #fff; z-index: 99; padding: 20px 40px; flex-direction: column; gap: 0; opacity: 0; transition: opacity .3s; }
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a { color: #1d1d1f; font-size: 1.7rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid #d2d2d7; display: block; }

/* HERO - Clean & Centered */
.hero { background: #fff; color: var(--dark); padding: 60px 6% 40px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 600; letter-spacing: -0.015em; line-height: 1.05; margin-bottom: 12px; }
.hero h1 span { color: var(--blue); }
.hero p { font-size: clamp(1.2rem, 3vw, 1.7rem); color: #86868b; max-width: 700px; margin: 0 auto 30px; line-height: 1.2; font-weight: 400; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; }
.btn { display: inline-block; background: var(--blue); color: #fff; padding: 12px 24px; border-radius: 980px; font-size: 1.05rem; font-weight: 400; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); }
.btn:hover { background: var(--blue-hover); transform: scale(1.02); }
.btn-outline { background: transparent; color: var(--blue); }
.btn-outline::after { content: ' >'; font-size: 0.9em; }
.btn-outline:hover { background: transparent; text-decoration: underline; transform: none; }

/* SECTION */
section { padding: 100px 6%; }
.section-label { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; text-align: center; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; margin-bottom: 20px; text-align: center; letter-spacing: -0.01em; }
.section-sub { color: var(--muted); max-width: 600px; margin: 0 auto 60px; text-align: center; font-size: 1.2rem; }

/* SCROLL ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { border-radius: 24px; padding: 40px; background: var(--card); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 380px; }
.card:hover { transform: scale(1.01); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }
.card h3 { font-size: 1.7rem; font-weight: 600; margin-bottom: 12px; }
.card p { font-size: 1rem; color: var(--text); margin-bottom: 20px; max-width: 320px; }
.price-tag { font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; font-weight: 400; }
.pay-btn { background: var(--blue); color: #fff; padding: 8px 16px; border-radius: 980px; font-size: 0.85rem; }

/* SUB-SERVICES */
.sub-toggle { color: var(--blue); font-size: 1rem; margin-top: auto; cursor: pointer; background: none; border: none; }
.sub-toggle:hover { text-decoration: underline; }
.sub-list { overflow: hidden; max-height: 0; transition: max-height 0.5s ease-in-out; width: 100%; }
.sub-list.open { max-height: 1000px; margin-top: 20px; }
.sub-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid #d2d2d7; width: 100%; text-align: left; }
.sub-item-name { font-weight: 500; font-size: 0.95rem; }
.sub-item-price { color: var(--muted); font-size: 0.95rem; }
.sub-pay { color: var(--blue); font-weight: 500; margin-left: 10px; }

/* BOOKING BANNER */
.booking-banner { background: var(--card); border-radius: 24px; padding: 30px 40px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.booking-banner-text strong { font-size: 1.2rem; font-weight: 600; }
.booking-banner-text span { color: var(--muted); display: block; margin-top: 4px; }

/* CUSTOM PAYMENT */
.custom-pay { background: #f5f5f7; border-radius: 30px; margin: 0 6% 100px; }
.pay-form-wrap { max-width: 500px; margin: 0 auto; padding: 60px 0; }
.pay-form-wrap input { width: 100%; padding: 18px; border-radius: 12px; border: 1px solid #d2d2d7; margin-bottom: 15px; font-size: 1rem; background: #fff; }
.pay-submit { width: 100%; padding: 18px; border-radius: 12px; background: var(--blue); color: #fff; font-weight: 600; font-size: 1.1rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-item h4 { font-size: 1.5rem; margin-bottom: 10px; }
.contact-item a, .contact-item p { font-size: 1.2rem; color: var(--muted); }
.hours-table { width: 100%; margin-top: 20px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid #d2d2d7; color: var(--muted); }

/* POLICIES */
.policy-tabs { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; }
.tab-btn { background: none; border: none; font-size: 1rem; color: var(--muted); cursor: pointer; padding-bottom: 5px; }
.tab-btn.active { color: var(--dark); border-bottom: 2px solid var(--dark); }
.policy-content { max-height: 600px; overflow-y: auto; padding: 20px; background: #fff; border-radius: 20px; }

/* FOOTER */
footer { padding: 60px 6%; background: #f5f5f7; color: #86868b; font-size: 0.8rem; }
.footer-links { display: flex; gap: 20px; margin: 20px 0; }
.footer-links a { color: #515154; }

/* RESPONSIVE */
@media (max-width: 834px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
