/* ============================================================
   DRA. URETA DENTAL CLINIC — Stylesheet
   Aesthetic: Refined luxury / warm editorial / organic-modern
   Palette: Deep forest green + warm ivory + pale gold
   ============================================================ */

:root {
  --green-900: #1A3830;
  --green-800: #2D5A4E;
  --green-700: #3B6E61;
  --green-600: #4D8275;
  --green-200: #C5DDD8;
  --green-100: #E0EEEB;
  --green-50: #F2F8F6;

  --gold-600: #C4A35A;
  --gold-400: #D4B97A;
  --gold-200: #EDD9A8;
  --gold-100: #F7EDD5;

  --ivory: #F8F5EF;
  --ivory-dark: #EDE8DF;
  --white: #FFFFFF;
  --black: #0D1B17;

  --text-primary: #1A3830;
  --text-secondary: #4A6B62;
  --text-muted: #7A9990;
  --text-light: #B0C8C3;

  --border: #D8E8E4;
  --border-light: #EBF3F1;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(26,56,48,0.06);
  --shadow-md: 0 8px 32px rgba(26,56,48,0.10);
  --shadow-lg: 0 24px 64px rgba(26,56,48,0.14);

  --nav-h: 72px;
  --container: 1180px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 400; }

em { font-style: italic; color: var(--green-700); }

p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--green-800);
  color: white;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--green-200);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--green-600);
  background: var(--green-50);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--green-200);
  border-radius: 100px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(26,56,48,0.10);
}
.sticky-call, .sticky-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  transition: opacity 0.15s;
}
.sticky-call {
  background: var(--green-800);
  color: white;
}
.sticky-whatsapp {
  background: #25D366;
  color: white;
}
.sticky-call:hover, .sticky-whatsapp:hover { opacity: 0.9; }

@media (max-width: 768px) {
  .sticky-mobile { display: flex; }
  body { padding-bottom: 76px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(248,245,239,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-tooth { font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green-700);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

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

.nav-cta {
  padding: 9px 20px;
  background: var(--green-800);
  color: white;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-900); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s;
}
.lang-current:hover { border-color: var(--green-600); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-width: 110px;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: background 0.12s, color 0.12s;
}
.lang-menu button:hover {
  background: var(--green-50);
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { font-size: 1rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.hero-shape-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
  top: -200px;
  right: -150px;
}
.hero-shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-100) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-stars { color: var(--gold-600); font-size: 0.9rem; letter-spacing: 1px; }
.trust-num { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.trust-label { font-size: 0.75rem; color: var(--text-muted); }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-portrait {
  width: 320px;
  height: 400px;
  border-radius: 180px 180px 120px 120px;
  background: var(--green-100);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.portrait-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.portrait-monogram {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--green-700);
  opacity: 0.6;
  letter-spacing: -2px;
  user-select: none;
  position: relative;
  z-index: 1;
}
.portrait-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--gold-200);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.hero-card-float-1 {
  top: 20px;
  left: -30px;
  animation: floatA 4s ease-in-out infinite;
}
.hero-card-float-2 {
  bottom: 40px;
  right: -30px;
  animation: floatB 4s ease-in-out infinite 2s;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
}
.float-icon { font-size: 1.4rem; }
.float-title { font-size: 0.8rem; font-weight: 500; color: var(--text-primary); }
.float-sub { font-size: 0.75rem; color: var(--text-muted); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-portrait { width: 220px; height: 280px; }
  .hero-card-float-1 { left: 0; top: 10px; }
  .hero-card-float-2 { right: 0; bottom: 20px; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-800);
  padding: 32px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tb-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: white;
  line-height: 1;
}
.tb-label {
  font-size: 0.75rem;
  color: var(--green-200);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.service-card--featured {
  background: var(--green-800);
  border-color: var(--green-800);
}
.service-card--featured h3,
.service-card--featured p,
.service-card--featured .sc-duration { color: var(--green-100); }
.service-card--featured .sc-price { color: var(--gold-200); }
.service-card--featured .sc-meta { border-color: rgba(255,255,255,0.1); }

.service-card--emergency {
  border-color: #FFE4E1;
  background: #FFF8F7;
}

.sc-icon { font-size: 2rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 20px;
}
.sc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sc-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-700);
}
.sc-avail {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.sc-duration { font-size: 0.8rem; color: var(--text-muted); }

.sc-cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-700);
  transition: color 0.15s, letter-spacing 0.15s;
  display: inline-block;
}
.sc-cta:hover { color: var(--green-900); letter-spacing: 0.02em; }
.service-card--featured .sc-cta { color: var(--gold-200); }
.sc-cta--urgent { color: #C0392B; }
.sc-cta--urgent:hover { color: #922B21; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: 120px 0;
  background: var(--ivory);
}

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

.team-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.team-portrait-wrap {
  position: relative;
}

.team-portrait {
  width: 280px;
  height: 340px;
  border-radius: 160px 160px 100px 100px;
  background: linear-gradient(160deg, var(--green-100), var(--ivory-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.team-monogram {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--green-700);
  opacity: 0.5;
  letter-spacing: -2px;
}

.team-badge-coec {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--green-800);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
}
.coec-num { color: var(--gold-200); font-size: 0.9rem; font-family: var(--font-display); }

.team-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.lang-tag {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: white;
}

.team-content .section-eyebrow { margin-bottom: 16px; }
.team-content h2 { margin-bottom: 8px; }
.team-role {
  font-size: 0.9rem;
  color: var(--green-700);
  font-weight: 500;
  margin-bottom: 24px;
}
.team-content p { margin-bottom: 16px; }

.team-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 32px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.cred-item svg { color: var(--green-600); flex-shrink: 0; }

@media (max-width: 900px) {
  .team-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .team-visual { order: -1; }
}

/* ============================================================
   INTERNATIONAL
   ============================================================ */
.international {
  padding: 80px 0;
  background: var(--green-800);
}
.intl-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.intl-flags {
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.international h2 { color: white; margin-bottom: 16px; }
.international em { color: var(--gold-200); }
.international p { color: var(--green-100); font-size: 1rem; margin-bottom: 32px; }
.intl-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   PRICES
   ============================================================ */
.prices {
  padding: 120px 0;
  background: var(--white);
}

.price-table-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-table thead tr {
  background: var(--green-800);
}
.price-table th {
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-100);
}
.price-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.12s;
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--green-50); }
.price-table td {
  padding: 16px 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  vertical-align: middle;
}
.price-table td:nth-child(2) {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-700);
  font-weight: 500;
  white-space: nowrap;
}
.price-table td:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.price-disclaimer {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .price-table td:last-child { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 120px 0;
  background: var(--ivory);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.12s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--green-700);
  transition: transform 0.2s, background 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--green-800);
  color: white;
}
.faq-item summary:hover { background: var(--green-50); }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}

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

.contact-block h3 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.contact-block p { font-size: 0.95rem; line-height: 1.7; }

.map-link, .contact-wa {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-700);
  transition: color 0.15s;
}
.map-link:hover, .contact-wa:hover { color: var(--green-900); }

.contact-phone {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  transition: color 0.15s;
}
.contact-phone:hover { color: var(--green-700); }

.transit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.transit-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Form */
.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 40px;
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h3 { margin-bottom: 6px; font-size: 1.4rem; }
.contact-form-header p { font-size: 0.88rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(77,130,117,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A9990' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-privacy input { width: auto; margin-top: 2px; flex-shrink: 0; }
.form-privacy a { color: var(--green-700); text-decoration: underline; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.visible { display: flex; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

/* Map placeholder */
.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-embed-link { display: block; }
.map-placeholder {
  background: linear-gradient(135deg, var(--green-50), var(--ivory-dark));
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: background 0.2s;
}
.map-placeholder:hover { background: linear-gradient(135deg, var(--green-100), var(--gold-100)); }
.map-pin-icon { font-size: 3rem; }
.map-address-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-address-box strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
}
.map-address-box span { font-size: 0.85rem; color: var(--text-secondary); }
.map-open-hint {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-700) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-900);
  padding: 80px 0 0;
  color: var(--green-100);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer .logo-text { color: white; }
.footer .logo-tooth { filter: brightness(1.2); }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.footer-coec {
  font-size: 0.78rem;
  color: var(--gold-400) !important;
  margin-top: 8px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--green-200);
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }

.footer-contact p {
  font-size: 0.88rem;
  color: var(--green-200);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact a { color: var(--green-200); transition: color 0.15s; }
.footer-contact a:hover { color: white; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--green-200);
  transition: border-color 0.15s, color 0.15s;
}
.footer-social a:hover { border-color: white; color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-light);
}
.footer-bottom a { color: var(--green-200); transition: color 0.15s; }
.footer-bottom a:hover { color: white; }
.footer-disclaimer { opacity: 0.5; }

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   UTILITY
   ============================================================ */
@media (max-width: 600px) {
  .prices { padding: 80px 0; }
  .services { padding: 80px 0; }
  .team { padding: 80px 0; }
  .faq-section { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
}
