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

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: #1F2937;
}
.nav-logo:hover { color: #E85D4A; }
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: #374151;
  transition: color 0.2s; position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: #E85D4A; transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover { color: #E85D4A; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: #E85D4A; color: #fff !important; padding: 10px 22px;
  border-radius: 8px; font-weight: 600; transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #D14A38; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #1F2937;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 28px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 0.95rem; padding: 14px 28px; border-radius: 10px;
  border: none; cursor: pointer; transition: all 0.25s ease;
}
.btn--primary { background: #E85D4A; color: #fff; }
.btn--primary:hover { background: #D14A38; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,74,0.35); }
.btn--ghost { background: transparent; color: #1F2937; border: 2px solid #1F2937; }
.btn--ghost:hover { background: #1F2937; color: #fff; transform: translateY(-2px); }
.btn--white { background: #fff; color: #1F2937; border: 2px solid #fff; }
.btn--white:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn--ghost-sm { background: none; border: none; color: #E85D4A; font-weight: 600; font-size: 0.9rem; cursor: pointer; padding: 8px 0; text-decoration: underline; }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: #1F2937; position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle {
  position: absolute; border-radius: 50%;
  background: rgba(232,93,74,0.08);
}
.geo-circle--1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.geo-circle--2 { width: 300px; height: 300px; bottom: -80px; left: 5%; background: rgba(245,158,11,0.06); }
.geo-diamond {
  position: absolute; width: 120px; height: 120px;
  background: rgba(232,93,74,0.12); transform: rotate(45deg);
  top: 15%; left: 8%;
}
.geo-stripe {
  position: absolute; background: rgba(232,93,74,0.06);
  transform: rotate(-30deg);
}
.geo-stripe--1 { width: 400px; height: 60px; top: 60%; left: -5%; }
.geo-stripe--2 { width: 250px; height: 40px; bottom: 10%; right: 5%; background: rgba(245,158,11,0.05); }
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,74,0.15); color: #E85D4A;
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(232,93,74,0.25);
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem); color: #fff;
  line-height: 1.15; margin-bottom: 24px;
}
.hero-headline em { color: #F59E0B; font-style: normal; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.hero-sub em { color: rgba(255,255,255,0.95); font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.hero-trust-item svg { color: #E85D4A; flex-shrink: 0; }

.hero-right { position: relative; }
.hero-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 780px; object-fit: cover; border-radius: 20px; }
.hero-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 200px; height: 200px; border-radius: 50%;
  background: #E85D4A; opacity: 0.15; z-index: -1;
}
.hero-float-card {
  position: absolute; bottom: 32px; left: -32px;
  background: #fff; border-radius: 16px; padding: 20px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  display: flex; flex-direction: column; gap: 4px;
}
.hfc-number { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: #E85D4A; line-height: 1; }
.hfc-label { font-size: 0.85rem; color: #6B7280; font-weight: 500; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 500px; }
  .hero-img-wrap img { height: 500px; }
  .hero-float-card { left: 16px; bottom: 16px; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 0 40px; }
  .hero-img-wrap img { height: 360px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ========== SECTION COMMON ========== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: #E85D4A;
  margin-bottom: 12px;
}
.section-tag--light { color: rgba(255,255,255,0.7); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #1F2937; margin-bottom: 16px; }
.section-title--light { color: #fff; }
.section-desc { font-size: 1.05rem; color: #6B7280; line-height: 1.7; }
.section-desc--light { color: rgba(255,255,255,0.7); }

/* ========== SERVICES ========== */
.services {
  padding: 100px 0; position: relative; overflow: hidden;
  background: #F9FAFB;
}
.services-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #E85D4A, #F59E0B, #E85D4A);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.svc-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.svc-icon { margin-bottom: 20px; }
.svc-title { font-size: 1.2rem; color: #1F2937; margin-bottom: 10px; }
.svc-desc { font-size: 0.95rem; color: #6B7280; line-height: 1.65; }

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

/* ========== ABOUT ========== */
.about {
  padding: 100px 0; position: relative; overflow: hidden;
  background: #fff;
}
.about-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.about-circle {
  position: absolute; border-radius: 50%;
  background: rgba(232,93,74,0.05);
}
.about-circle--1 { width: 500px; height: 500px; top: -150px; right: -150px; }
.about-diamond {
  position: absolute; width: 100px; height: 100px;
  background: rgba(245,158,11,0.08); transform: rotate(45deg);
  bottom: 10%; left: 3%;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 640px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -40px; right: -24px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 4px solid #fff;
}
.about-img-secondary img { width: 400px; height: 320px; object-fit: cover; }
.about-stat-card {
  position: absolute; top: -20px; left: -20px;
  background: #E85D4A; border-radius: 16px; padding: 20px 28px;
  color: #fff;
}
.asc-number { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.asc-label { font-size: 0.8rem; opacity: 0.85; margin-top: 4px; }

.about-content { padding: 20px 0; }
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-body { font-size: 1rem; color: #4B5563; line-height: 1.8; margin-bottom: 20px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.af-check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: #FFF0ED; display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.about-feature span { font-size: 0.95rem; color: #374151; line-height: 1.6; }

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { right: 10px; bottom: -20px; }
  .about-img-secondary img { width: 280px; height: 220px; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: block; text-align: center; }
}
@media (max-width: 480px) {
  .about-img-main img { height: 400px; }
  .about-img-secondary { display: none; }
  .about-stat-card { left: 10px; top: -10px; }
}

/* ========== WHY US ========== */
.why-us {
  padding: 100px 0; position: relative;
  background: #1F2937; overflow: hidden;
}
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 40px 32px; position: relative;
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-card--accent {
  background: #E85D4A; border-color: #E85D4A;
}
.why-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700;
  color: rgba(232,93,74,0.3); line-height: 1; margin-bottom: 16px;
}
.why-card--accent .why-number { color: rgba(255,255,255,0.25); }
.why-title { font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.why-desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.why-accent-bar {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, #E85D4A, #F59E0B, #E85D4A);
  max-width: 200px; margin: 0 auto;
}

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

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0; position: relative;
  background: #F9FAFB;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06); position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testimonial-card--accent {
  background: #1F2937; border-color: transparent;
}
.tc-quote-mark {
  font-family: 'Space Grotesk', sans-serif; font-size: 5rem;
  color: #E85D4A; line-height: 0.8; position: absolute;
  top: 16px; right: 24px; opacity: 0.2;
}
.testimonial-card--accent .tc-quote-mark { color: #E85D4A; }
.tc-text {
  font-size: 0.95rem; color: #4B5563; line-height: 1.75;
  margin-bottom: 24px; margin-top: 20px;
}
.testimonial-card--accent .tc-text { color: rgba(255,255,255,0.8); }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar { flex-shrink: 0; }
.tc-name { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.95rem; color: #1F2937; }
.tc-detail { display: block; font-size: 0.8rem; color: #9CA3AF; margin-top: 2px; }
.testimonial-card--accent .tc-name { color: #fff; }
.testimonial-card--accent .tc-detail { color: rgba(255,255,255,0.5); }

@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 100px 0; position: relative; overflow: hidden;
  background: #E85D4A;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-circle--1 { width: 400px; height: 400px; top: -120px; left: -80px; }
.cta-circle--2 { width: 250px; height: 250px; bottom: -80px; right: 5%; background: rgba(245,158,11,0.1); }
.cta-stripe {
  position: absolute; width: 500px; height: 80px;
  background: rgba(255,255,255,0.04); transform: rotate(-25deg);
  bottom: -20px; right: -100px;
}
.cta-content {
  text-align: center; position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.cta-title { font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; margin-bottom: 20px; }
.cta-body { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0; position: relative;
  background: #fff;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-body { font-size: 1rem; color: #6B7280; line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.cd-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: #FFF0ED; display: flex; align-items: center; justify-content: center; }
.cd-label { display: block; font-size: 0.8rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.cd-value { display: block; font-size: 0.95rem; color: #1F2937; margin-top: 4px; line-height: 1.6; }
.cd-value--link { color: #E85D4A; font-weight: 600; }
.cd-value--link:hover { text-decoration: underline; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.contact-form-wrap { position: relative; }
.contact-form-bg {
  position: absolute; inset: -20px; border-radius: 24px;
  background: #F9FAFB; z-index: -1;
}
.cf-title { font-size: 1.5rem; color: #1F2937; margin-bottom: 8px; }
.cf-sub { font-size: 0.9rem; color: #6B7280; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: #374151;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid #E5E7EB; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #1F2937;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #E85D4A; box-shadow: 0 0 0 3px rgba(232,93,74,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9CA3AF; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center; padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fs-title { font-size: 1.4rem; color: #1F2937; }
.fs-text { font-size: 0.95rem; color: #6B7280; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-title { text-align: center; }
  .contact-info .section-tag { display: block; text-align: center; }
  .contact-body { text-align: center; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.footer {
  background: #111827; color: rgba(255,255,255,0.7); padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: #fff; margin-bottom: 16px;
}
.footer-logo:hover { color: #E85D4A; }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-heading {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 700;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 0.9rem; transition: color 0.2s; }
.footer-nav a:hover { color: #E85D4A; }
.footer-contact address { font-style: normal; font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.footer-phone { font-size: 0.95rem; color: #E85D4A; font-weight: 600; transition: color 0.2s; }
.footer-phone:hover { color: #F59E0B; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #E85D4A; }

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