/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: hsl(0 20% 15%);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TOKENS ===== */
:root {
  --primary: hsl(0, 72%, 42%);
  --primary-dark: hsl(0, 80%, 30%);
  --primary-fg: #fff;
  --secondary: hsl(0, 60%, 92%);
  --secondary-fg: hsl(0, 72%, 35%);
  --accent: hsl(0, 60%, 95%);
  --muted: hsl(0, 10%, 45%);
  --muted-bg: hsl(0, 15%, 95%);
  --border: hsl(0, 15%, 90%);
  --foreground: hsl(0, 20%, 15%);
  --bg: #fff;
  --radius: 0.75rem;
  --shadow-vetkin: 0 10px 40px -10px hsla(0, 72%, 42%, 0.25);
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.gradient-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--primary-fg); padding: 0.875rem 2rem; border-radius: 9999px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  box-shadow: var(--shadow-vetkin); transition: opacity 0.2s; text-align: center;
}
.btn-primary:hover { opacity: 0.9; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-block { display: block; text-align: center; }
.btn-outline {
  display: inline-block; border: 2px solid var(--primary); color: var(--primary);
  padding: 0.875rem 2rem; border-radius: 9999px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem; transition: background 0.2s; text-align: center;
}
.btn-outline:hover { background: var(--accent); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; }
.logo { height: 3rem; border-radius: 0.5rem; }
.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a { font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 600; color: hsla(0,20%,15%,0.8); transition: color 0.2s; }
.nav-desktop a:hover { color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--foreground); border-radius: 2px; transition: 0.3s; }
.nav-mobile { display: none; background: var(--bg); border-top: 1px solid var(--border); padding: 1rem 1.5rem; }
.nav-mobile a { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 600; color: hsla(0,20%,15%,0.8); padding: 0.5rem 0; }
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile.active { display: block; }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { height: 4rem; }
  .logo { height: 2.5rem; }
}

/* ===== HERO ===== */
.hero { position: relative; padding-top: 5rem; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, hsla(0,60%,92%,0.6) 0%, hsla(0,60%,95%,0.3) 100%);
}
.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 2.5rem; padding: 4rem 0; }
.hero-text { flex: 1; text-align: left; }
.hero-text .badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--secondary-fg);
  margin-bottom: 1.5rem;
}
.icon-heart { color: var(--primary); width: 16px; height: 16px; }
.hero-text h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.hero-text p { font-size: 1.125rem; color: var(--muted); max-width: 32rem; margin-bottom: 1.5rem; }
.hero-buttons { display: flex; gap: 1rem; }
.hero-image { flex: 1; max-width: 32rem; position: relative; }
.hero-image-glow { position: absolute; inset: -1rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 1.5rem; opacity: 0.2; filter: blur(2rem); }
.hero-image img { position: relative; border-radius: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); width: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; text-align: center; padding: 3rem 0; }
  .hero-text { text-align: center; }
  .hero-text h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-image { max-width: 20rem; }
}

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label { font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.section-header h2 { font-size: 2rem; font-weight: 800; margin-top: 0.75rem; }
.section-header p { color: var(--muted); margin-top: 0.75rem; max-width: 40rem; margin-left: auto; margin-right: auto; }

/* ===== SERVICES ===== */
.services { padding: 5rem 0; background: var(--muted-bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg); border-radius: 1rem; padding: 1.5rem;
  border: 1px solid var(--border); transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.service-card:hover { border-color: hsla(0,72%,42%,0.3); box-shadow: var(--shadow-vetkin); }
.service-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  transition: transform 0.3s;
}
.service-icon img { filter: brightness(0) invert(1); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

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

/* ===== ABOUT ===== */
.about { padding: 5rem 0; }
.about-text { font-size: 1.125rem; line-height: 1.7; max-width: 48rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.stat { text-align: center; }
.stat-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--accent);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem;
}
.stat-icon img { filter: brightness(0) saturate(100%) invert(22%) sepia(90%) saturate(2000%) hue-rotate(350deg) brightness(80%); }
.stat-value { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; }
.stat-label { font-family: 'Montserrat', sans-serif; font-size: 0.875rem; color: var(--muted); font-weight: 500; }

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

/* ===== LOCATION ===== */
.location { padding: 5rem 0; background: var(--muted-bg); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.location-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; gap: 1rem; }
.info-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-icon img { filter: brightness(0) saturate(100%) invert(22%) sepia(90%) saturate(2000%) hue-rotate(350deg) brightness(80%); }
.info-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.info-item p { font-size: 0.875rem; color: var(--muted); }
.location-map { border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 1px solid var(--border); }

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

/* ===== CONTACT ===== */
.contact { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  background: var(--bg); border-radius: 1rem; padding: 2rem; border: 1px solid var(--border);
  transition: all 0.3s;
}
.contact-card:hover { border-color: hsla(0,72%,42%,0.3); box-shadow: var(--shadow-vetkin); }
.contact-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center; transition: transform 0.3s;
}
.contact-icon img { filter: brightness(0) invert(1); }
.contact-card:hover .contact-icon { transform: scale(1.1); }
.contact-title { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.contact-sub { font-size: 0.875rem; color: var(--muted); }

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

/* ===== FOOTER ===== */
.footer { background: var(--foreground); padding: 2.5rem 0; }
.footer-inner { text-align: center; }
.footer-logo { height: 3rem; margin: 0 auto 1rem; border-radius: 0.5rem; }
.footer-address { font-size: 0.875rem; color: hsla(0,0%,100%,0.6); }
.footer-love { font-size: 0.75rem; color: hsla(0,0%,100%,0.4); margin-top: 0.75rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: hsl(142, 70%, 45%); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25); transition: transform 0.3s;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
