/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1F2937;
  background: #F9FAFB;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== PALETTE ========== */
:root {
  --charcoal: #1F2937;
  --charcoal-light: #374151;
  --charcoal-dark: #111827;
  --coral: #E85D4A;
  --coral-dark: #D14A38;
  --coral-light: #FF7A66;
  --offwhite: #F9FAFB;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
}

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.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,93,74,0.35); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }
.btn-white { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; padding: 16px 28px; font-size: 1rem; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(31,41,55,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;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.logo-icon { flex-shrink: 0; }
.logo-light { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.92) 0%, rgba(31,41,55,0.82) 50%, rgba(232,93,74,0.25) 100%);
}
.hero-geo {
  position: absolute;
  z-index: 2;
  opacity: 0.12;
  pointer-events: none;
}
.hero-geo--bl {
  width: 500px;
  height: 500px;
  background: var(--coral);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}
.hero-geo--br {
  width: 300px;
  height: 300px;
  background: var(--coral);
  border-radius: 50%;
  top: 10%;
  right: 5%;
  opacity: 0.08;
}
.hero-geo--tl {
  width: 120px;
  height: 120px;
  background: var(--coral);
  top: 15%;
  right: 25%;
  transform: rotate(45deg);
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  color: var(--white);
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,74,0.2);
  border: 1px solid rgba(232,93,74,0.5);
  color: var(--coral-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.trust-item svg { color: var(--coral); }

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== SERVICES ========== */
.services { background: var(--offwhite); }
.geo-accent {
  position: absolute;
  pointer-events: none;
}
.geo-accent--top {
  width: 200px;
  height: 200px;
  background: var(--coral);
  opacity: 0.05;
  border-radius: 50%;
  top: -60px;
  right: -40px;
}
.geo-accent--bottom {
  width: 160px;
  height: 160px;
  background: var(--coral);
  opacity: 0.05;
  border-radius: 50%;
  bottom: -40px;
  left: -30px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  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 40px rgba(31,41,55,0.1); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { margin-bottom: 20px; }
.service-card h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== ABOUT ========== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(31,41,55,0.15);
}
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--coral);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 32px rgba(232,93,74,0.4);
}
.accent-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.accent-label { font-size: 0.85rem; opacity: 0.9; line-height: 1.4; }
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content > p { color: var(--gray-600); margin-bottom: 16px; font-size: 1.02rem; }
.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.about-content .btn { margin-top: 8px; }

/* ========== PROCESS ========== */
.process { background: var(--charcoal); color: var(--white); }
.process .section-tag { color: var(--coral-light); }
.process .section-title { color: var(--white); }
.process .section-desc { color: rgba(255,255,255,0.6); }
.geo-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
}
.geo-shape--circle {
  width: 400px;
  height: 400px;
  border: 3px solid var(--coral);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(232,93,74,0.3);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step-dot {
  width: 16px;
  height: 16px;
  background: var(--coral);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 4px rgba(232,93,74,0.2);
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}
.process-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--offwhite); position: relative; }
.testimonials-bg-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--coral);
  opacity: 0.04;
  border-radius: 50%;
  top: -200px;
  left: -200px;
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(31,41,55,0.08); border-color: transparent; }
.testimonial-quote { margin-bottom: 20px; opacity: 0.8; }
.testimonial-text {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
}
.author-location { font-size: 0.85rem; color: var(--gray-400); }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--coral);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-geo {
  position: absolute;
  pointer-events: none;
}
.cta-geo--left {
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  bottom: -100px;
  left: -80px;
}
.cta-geo--right {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -60px;
  right: 10%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 32px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232,93,74,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-item span, .contact-item a {
  font-size: 0.98rem;
  color: var(--gray-600);
}
.contact-item a:hover { color: var(--coral); }
.contact-map { border-radius: 12px; overflow: hidden; }
.contact-form-wrap {
  background: var(--offwhite);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.form-title {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,93,74,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin: 16px 0 8px;
}
.form-success p { color: var(--gray-600); font-size: 0.95rem; }

/* ========== FOOTER ========== */
.footer { background: var(--charcoal-dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-contact p { font-size: 0.92rem; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--coral-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ========== SCROLL REVEAL (progressive enhancement) ========== */
@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);
  }
}

/* ========== MOBILE MENU ========== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(31,41,55,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content .section-title { text-align: center; }
  .about-content { text-align: left; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info .section-title { text-align: center; }
  .contact-info > p { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: none; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .about-accent-box { position: relative; bottom: auto; right: auto; margin-top: 16px; display: inline-flex; }
}
