/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2D2D2D;
  background: #FAFAF8;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Colors ── */
:root {
  --charcoal: #2D2D2D;
  --charcoal-deep: #1A1A1A;
  --coral: #E8634A;
  --coral-light: #F2856F;
  --coral-dark: #C94E36;
  --cream: #FAFAF8;
  --cream-dark: #F0EFEA;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --gray-light: #E8E8E4;
}

.text-coral { color: var(--coral); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 1rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,99,74,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(45,45,45,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--white);
}
.nav-logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.25s, transform 0.2s !important;
}
.btn-nav:hover { background: var(--coral-dark); transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(45,45,45,0.97);
    flex-direction: column; padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(45,45,45,0.72) 50%, rgba(232,99,74,0.25) 100%);
}
.hero-geo { position: absolute; pointer-events: none; }
.geo-tl { top: -80px; left: -80px; width: 320px; height: 320px; background: var(--coral); opacity: 0.12; clip-path: polygon(0 0, 100% 0, 0 100%); }
.geo-tr { top: 60px; right: -60px; width: 240px; height: 240px; background: var(--coral); opacity: 0.08; border-radius: 50%; }
.geo-bl { bottom: -40px; left: 30%; width: 180px; height: 180px; background: var(--coral); opacity: 0.06; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,99,74,0.15);
  border: 1px solid rgba(232,99,74,0.3);
  padding: 8px 16px; border-radius: 100px;
  color: var(--coral-light);
  font-size: 0.85rem; font-weight: 500;
  margin-bottom: 28px;
}
.hero-tag-dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; }
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  max-width: 780px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 520px;
}
.hero-stat {
  flex: 1; padding: 24px 28px;
  text-align: center;
}
.hero-stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Section Shared ── */
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 16px;
}
.section-label-line { width: 32px; height: 2px; background: var(--coral); border-radius: 2px; }
.section-label-light { color: rgba(255,255,255,0.6); }
.section-label-line-light { background: rgba(255,255,255,0.4); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title-light { color: var(--white); }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── Services ── */
.services {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-accent {
  position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: var(--coral);
  opacity: 0.04;
  border-radius: 50%;
  transition: opacity 0.3s;
}
.service-card:hover .service-card-accent { opacity: 0.08; }
.service-icon { margin-bottom: 20px; }
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.service-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

/* Geo shapes */
.geo-shape { position: absolute; pointer-events: none; }
.geo-services-tr { top: 40px; right: -40px; width: 200px; height: 200px; background: var(--coral); opacity: 0.05; border-radius: 50%; }
.geo-services-bl { bottom: -30px; left: 10%; width: 140px; height: 140px; background: var(--charcoal); opacity: 0.03; clip-path: polygon(50% 0, 0 100%, 100% 100%); }
.geo-about-tr { top: 20%; right: -60px; width: 160px; height: 160px; background: var(--coral); opacity: 0.05; border-radius: 50%; }
.geo-why-tl { top: -50px; left: -50px; width: 260px; height: 260px; background: var(--coral); opacity: 0.06; clip-path: polygon(0 0, 100% 0, 0 100%); }
.geo-contact-tr { top: -40px; right: -40px; width: 180px; height: 180px; background: var(--coral); opacity: 0.05; border-radius: 50%; }

/* ── About ── */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 70%; height: 80%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 50%;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--cream-dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; top: -20px; right: 30%;
  width: 80px; height: 80px;
  background: var(--coral);
  border-radius: 16px;
  opacity: 0.6;
  z-index: -1;
}
.about-content .section-sub { margin-bottom: 24px; }
.about-content p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.about-values { margin-top: 32px; display: grid; gap: 16px; }
.about-value {
  display: flex; align-items: center; gap: 14px;
  font-weight: 500; color: var(--charcoal);
}
.about-value-icon {
  width: 32px; height: 32px;
  background: var(--coral);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
}

/* ── Why Us ── */
.why-us {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.why-us-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(232,99,74,0.12) 0%, transparent 60%);
}
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(232,99,74,0.3); }
.why-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: var(--coral);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0;
  background: var(--coral);
  position: relative;
  overflow: hidden;
}
.cta-geo {
  position: absolute;
  pointer-events: none;
}
.cta-geo-1 { top: -60px; left: -60px; width: 240px; height: 240px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.cta-geo-2 { bottom: -40px; right: 10%; width: 160px; height: 160px; background: rgba(255,255,255,0.06); clip-path: polygon(50% 0, 0 100%, 100% 100%); }
.cta-banner .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-white { color: var(--coral); }
.cta-actions .btn-white:hover { background: var(--white); }

@media (max-width: 768px) {
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-content p { margin: 0 auto; }
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-sub { font-size: 1.05rem; color: var(--gray); line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: grid; gap: 24px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(232,99,74,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal); margin-bottom: 4px; }
.contact-detail span, .contact-detail a { font-size: 1rem; color: var(--gray); }
.contact-detail a:hover { color: var(--coral); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  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: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,99,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 12px; text-align: center; }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success-icon { margin-bottom: 20px; }
.form-success h3 { font-size: 1.5rem; color: var(--charcoal); margin-bottom: 8px; }
.form-success p { color: var(--gray); }

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

/* ── Footer ── */
.footer {
  background: var(--charcoal-deep);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.95rem; margin-top: 16px; line-height: 1.7; max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); }
.footer-logo-icon { width: 36px; height: 36px; }
.footer-links, .footer-contact { display: grid; gap: 12px; }
.footer-links strong, .footer-contact strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.65); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--coral); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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