/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #ffffff;
  --gray-100: #f9f0f2;
  --gray-200: #f0dde3;
  --gray-400: #b0909a;
  --gray-600: #6b4a55;
  --gray-800: #2d1a20;
  --black: #1a0a10;
  --accent: #e03131;
  --accent-dark: #b91c1c;
  --accent-light: #ffe4e6;
  --pink: #f472b6;
  --pink-dark: #db2777;
  --pink-bg: #fce7f3;
  --turquoise: #06b6d4;
  --turquoise-light: #e0f7fa;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.section { padding-block: clamp(80px, 10vw, 140px); }

.label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-sub {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
p  { color: var(--gray-600); font-size: .97rem; line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-1px); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--gray-800);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 450;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gray-800); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 980px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gray-800);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 0 20px;
  border-top: 1px solid var(--gray-200);
  background: rgba(255,255,255,.96);
}
.nav-mobile.open { display: flex; }
.mobile-link {
  padding: 12px clamp(20px,5vw,64px);
  font-size: .95rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,.72) 0%,
    rgba(224,49,49,.40) 60%,
    rgba(219,39,119,.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  width: clamp(260px, 30vw, 440px);
  height: auto;
  animation: floatSvg 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

@keyframes floatSvg {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
.hero-eyebrow {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── STATS ── */
.stats {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding-block: 56px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.03em;
}
.stat-label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 6px;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
}

/* ── MISSION & VISION ── */
.mv { background: var(--white); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mv-card--accent { border-top: 3px solid var(--pink); }
.mv-icon {
  width: 56px; height: 56px;
  background: var(--turquoise-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.mv-card h3 { font-size: 1.5rem; margin-bottom: 16px; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 28px; }
.service-num {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.service-body h3 { margin-bottom: 10px; }

/* ── WHY ── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.why-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 56px; height: 56px;
  background: var(--turquoise-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink-dark) 100%);
  padding-block: clamp(80px, 10vw, 120px);
}
.cta-inner {
  text-align: center;
  max-width: 700px;
}
.cta-inner .contact-form { margin-inline: auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 1.05rem; }

/* ── CONTACT FORM ── */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  backdrop-filter: blur(8px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.2);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { align-self: flex-start; }

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.footer {
  background: var(--pink-bg);
  padding-top: clamp(56px, 8vw, 96px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(219,39,119,.15);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--gray-800); }
.footer-brand p { color: var(--gray-600); font-size: .9rem; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h5 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-block: 24px;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--gray-400);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .hero-content { flex-direction: column; align-items: flex-start; }
  .hero-visual { display: none; }

  .about-grid  { grid-template-columns: 1fr; }
  .about-visual { order: -1; }

  .mv-grid         { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr 1fr; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-inner    { grid-template-columns: 1fr; }
  .footer-links    { grid-template-columns: repeat(2, 1fr); }
}

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