/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1e293b;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; line-height: 1.25; color: #0f172a; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 20px rgba(15, 23, 42, 0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
}
.logo-icon { color: #0d9488; flex-shrink: 0; }
.logo-accent { color: #0d9488; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-list a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.2s, color 0.2s;
}
.nav-list a:hover { background: #f1f5f9; color: #0f172a; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0d9488 !important;
  color: #f0fdfa !important;
  font-weight: 600;
}
.nav-phone:hover { background: #0f766e !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0f172a;
  border-radius: 10px;
}
.nav-toggle:hover { background: #f1f5f9; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 50%, #f1f5f9 100%);
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-headline {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 0.85rem; color: #64748b; }
.hero-image { position: relative; }
.hero-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #0f172a;
  color: #f8fafc;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}
.float-card-icon {
  width: 44px;
  height: 44px;
  background: #0d9488;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0fdfa;
  flex-shrink: 0;
}
.float-card-body strong { display: block; font-size: 0.9rem; color: #f8fafc; }
.float-card-body span { font-size: 0.78rem; color: #94a3b8; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: #0d9488;
  color: #f0fdfa;
  border-color: #0d9488;
}
.btn-primary:hover { background: #0f766e; border-color: #0f766e; box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3); }
.btn-secondary {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}
.btn-secondary:hover { border-color: #0d9488; color: #0d9488; }
.btn-outline-light {
  background: transparent;
  color: #f8fafc;
  border-color: rgba(248, 250, 252, 0.4);
}
.btn-outline-light:hover { background: rgba(248, 250, 252, 0.1); border-color: #f8fafc; }
.btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #475569;
  max-width: 600px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Services ── */
.services { padding: 96px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
  border-color: #99f6e4;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: #ccfbf1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}
.service-card p { font-size: 0.92rem; color: #475569; line-height: 1.65; }

/* ── About ── */
.about { padding: 96px 0; background: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: #475569; margin-bottom: 16px; line-height: 1.75; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}
.stat-number {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: #64748b; font-weight: 500; }

/* ── Why Us ── */
.why-us { padding: 96px 0; background: #f0fdfa; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.why-card:hover { box-shadow: 0 12px 36px rgba(13, 148, 136, 0.08); transform: translateY(-2px); }
.why-num {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #ccfbf1;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}
.why-card p { font-size: 0.92rem; color: #475569; line-height: 1.65; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #f8fafc;
  margin-bottom: 12px;
}
.cta-text { color: #94a3b8; font-size: 1rem; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 96px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc { font-size: 1.02rem; color: #475569; line-height: 1.7; margin-bottom: 32px; }
.contact-details { margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
  min-width: 80px;
}
.contact-item dt svg { color: #0d9488; flex-shrink: 0; }
.contact-item dd { color: #475569; font-size: 0.95rem; line-height: 1.6; }
.contact-item a { color: #0d9488; transition: color 0.2s; }
.contact-item a:hover { color: #0f766e; text-decoration: underline; }
.contact-map { border-radius: 16px; overflow: hidden; }

/* ── Form ── */
.contact-form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.form-title {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #0f172a;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: #ccfbf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0d9488;
}
.form-success h4 { font-size: 1.2rem; margin-bottom: 8px; color: #0f172a; }
.form-success p { color: #475569; font-size: 0.95rem; }

/* ── Footer ── */
.site-footer { background: #0f172a; color: #94a3b8; padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: #f8fafc; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8fafc;
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: #94a3b8; transition: color 0.2s; }
.footer-links a:hover { color: #99f6e4; }
.footer-contact address { font-style: normal; font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: #94a3b8; transition: color 0.2s; }
.footer-contact a:hover { color: #99f6e4; }
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: #64748b; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Menu ── */
.nav-list.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(12px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  gap: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-list { flex-wrap: wrap; }
  .nav-list.nav-open { display: flex; }
  .nav-list a { padding: 12px 16px; width: 100%; }
  .hero { padding: 56px 0 72px; }
  .hero-inner { gap: 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-float-card { position: relative; bottom: auto; left: auto; margin-top: 16px; display: inline-flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 24px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
