/* ===== Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap');

/* ===== Variables ===== */
:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(210, 50%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(210, 50%, 10%);
  --primary: hsl(210, 70%, 28%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(174, 42%, 51%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(210, 20%, 94%);
  --muted-foreground: hsl(210, 15%, 45%);
  --accent: hsl(174, 42%, 94%);
  --accent-foreground: hsl(174, 42%, 25%);
  --border: hsl(210, 20%, 90%);
  --input: hsl(210, 20%, 90%);
  --ring: hsl(210, 70%, 28%);
  --radius: 0.75rem;
  --hero-gradient: linear-gradient(135deg, hsl(210, 70%, 28%) 0%, hsl(174, 42%, 51%) 100%);
  --card-shadow: 0 4px 24px -4px hsla(210, 70%, 28%, 0.08);
  --card-shadow-hover: 0 8px 32px -4px hsla(210, 70%, 28%, 0.14);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; }

/* ===== Typography helpers ===== */
.font-title { font-family: 'Outfit', sans-serif; }
.font-subtitle { font-family: 'Outfit', sans-serif; }
.font-body { font-family: 'Zen Kaku Gothic Antique', sans-serif; }

/* ===== Container ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 95px;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; padding-top: 6px; padding-bottom: 6px; }
.navbar-brand { display: inline-flex; align-items: center; height: 100%; }
.navbar-logo { height: 83px; max-height: 83px; width: auto; max-width: 200px; object-fit: contain; display: block; }
@media (max-width: 768px) {
  .navbar { height: 75px; }
  .navbar-logo { height: 63px; max-height: 63px; max-width: 160px; }
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-family: 'Outfit', sans-serif; font-size: 0.875rem; color: hsla(210, 50%, 10%, 0.7); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

/* Mobile menu */
.nav-toggle { display: none; background: none; font-size: 1.5rem; color: var(--foreground); }
.mobile-menu { display: none; background: var(--card); border-bottom: 1px solid var(--border); padding: 1rem; }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 0.5rem 0; font-family: 'Outfit', sans-serif; font-size: 0.875rem; color: hsla(210, 50%, 10%, 0.7); }

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

/* ===== Hero ===== */
.hero {
  padding-top: 95px; position: relative; overflow: hidden;
  background: var(--hero-gradient);
}
.hero .container {
  display: flex; align-items: center; gap: 2.5rem;
  padding-top: 4rem; padding-bottom: 5rem;
}
.hero-text { flex: 1; text-align: left; }
.hero-text .subtitle {
  font-family: 'Outfit', sans-serif; font-size: 0.875rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: hsla(0, 0%, 100%, 0.7); margin-bottom: 0.75rem;
}
.hero-text h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--primary-foreground); line-height: 1.15; margin-bottom: 1.5rem;
}
.hero-text p {
  font-size: 1.125rem; color: hsla(0, 0%, 100%, 0.85);
  max-width: 32rem; margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--card); color: var(--primary);
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  font-family: 'Outfit', sans-serif; font-weight: 600; transition: box-shadow 0.2s;
}
.btn-white:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid hsla(0, 0%, 100%, 0.3); color: var(--primary-foreground);
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  font-family: 'Outfit', sans-serif; font-weight: 600; transition: background 0.2s;
}
.btn-outline-white:hover { background: hsla(0, 0%, 100%, 0.1); }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-portrait {
  width: 280px; height: 280px; border-radius: 50%; object-fit: cover; object-position: top;
  border: 4px solid hsla(0, 0%, 100%, 0.2); box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; }

@media (max-width: 768px) {
  .hero .container { flex-direction: column; text-align: center; padding-top: 3rem; padding-bottom: 4rem; }
  .hero-text { text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-portrait { width: 200px; height: 200px; }
}

/* ===== Section Common ===== */
.section { padding: 5rem 0; }
.section-muted { background: hsla(210, 20%, 94%, 0.5); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .label {
  font-family: 'Outfit', sans-serif; font-size: 0.875rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--secondary); margin-bottom: 0.5rem;
}
.section-header h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700;
}

/* ===== About ===== */
.about-grid { display: flex; gap: 3rem; align-items: center; }
.about-images { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-images img { border-radius: 1rem; object-fit: cover; width: 100%; height: 280px; box-shadow: var(--card-shadow); }
.about-images img:nth-child(2) { margin-top: 2rem; }
.about-content { flex: 1; }
.about-content p { font-size: 1.125rem; color: hsla(210, 50%, 10%, 0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.highlight-card {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--accent); border-radius: 0.75rem; padding: 1rem;
}
.highlight-card .icon { font-size: 1.5rem; }
.highlight-card span { font-family: 'Outfit', sans-serif; font-size: 0.875rem; font-weight: 500; color: var(--accent-foreground); }

@media (max-width: 768px) {
  .about-grid { flex-direction: column; }
  .about-images img { height: 200px; }
  .highlights { grid-template-columns: 1fr; }
}

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
  background: var(--card); border-radius: 1rem; padding: 1.5rem;
  box-shadow: var(--card-shadow); transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: var(--card-shadow-hover); }
.service-card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.service-card h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.service-card p { font-size: 0.875rem; color: var(--muted-foreground); }

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

/* ===== Locations ===== */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
.location-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card); border-radius: 1rem; padding: 1.5rem;
  box-shadow: var(--card-shadow);
}
.location-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--secondary); font-size: 1.25rem;
}
.location-card span { font-family: 'Outfit', sans-serif; font-size: 0.875rem; font-weight: 500; }

@media (max-width: 560px) { .locations-grid { grid-template-columns: 1fr; } }

/* ===== Contact ===== */
.contact-grid { display: flex; gap: 3rem; align-items: center; max-width: 64rem; margin: 0 auto; }
.contact-illustration { flex: 1; }
.contact-illustration img { border-radius: 1.5rem; max-width: 20rem; margin: 0 auto; box-shadow: var(--card-shadow); }
.contact-form-wrap { flex: 1; width: 100%; }
.contact-form {
  background: var(--card); border-radius: 1rem; padding: 2rem;
  box-shadow: var(--card-shadow);
}
.contact-form label { font-family: 'Outfit', sans-serif; font-size: 0.875rem; font-weight: 500; display: block; margin-bottom: 0.25rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; border: 1px solid var(--input); background: var(--background);
  border-radius: 0.75rem; padding: 0.75rem 1rem; font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 0.875rem; color: var(--foreground); outline: none; margin-bottom: 1.25rem;
  transition: box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { box-shadow: 0 0 0 2px var(--ring); }
.contact-form textarea { resize: none; }
.btn-secondary {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--secondary); color: var(--secondary-foreground);
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  transition: opacity 0.2s;
}
.btn-secondary:hover { opacity: 0.9; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.contact-info strong { font-family: 'Outfit', sans-serif; color: var(--foreground); display: block; margin-bottom: 0.15rem; }
.contact-info a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .contact-grid { flex-direction: column; }
  .contact-illustration { display: none; }
}

/* ===== Footer ===== */
.footer { background: var(--hero-gradient); padding: 3rem 0; color: hsla(0, 0%, 100%, 0.8); }
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.footer-brand .name { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--primary-foreground); }
.footer-brand .spec { font-size: 0.875rem; }
.footer-socials { display: flex; gap: 1.25rem; }
.footer-socials a { color: hsla(0, 0%, 100%, 0.7); transition: color 0.2s; font-size: 1.25rem; }
.footer-socials a:hover { color: var(--primary-foreground); }
.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.2); padding-top: 1.5rem; margin-top: 0.5rem;
  width: 100%; text-align: center; font-size: 0.75rem; color: hsla(0, 0%, 100%, 0.5);
}

@media (max-width: 768px) {
  .footer-top { flex-direction: column; text-align: center; gap: 1rem; }
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25); transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }
