@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B35;
  --orange-dark: #e55a24;
  --dark: #0D0D0D;
  --dark2: #1a1a1a;
  --dark3: #252525;
  --light: #F5F2EE;
  --muted: #888;
  --white: #fff;
  --radius: 12px;
  --radius-sm: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5%;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo img { height: 40px; }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.nav-links a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all 0.3s; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 5%;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255,107,53,0.12) 0%, transparent 70%);
}

.hero-content { max-width: 720px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero h1 .accent { color: var(--orange); }

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-secondary {
  color: rgba(255,255,255,0.75);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

.hero-image {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48%;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 40%);
}

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: var(--dark2);
}

.stat-item {
  flex: 1; padding: 2rem 5%;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 0.25rem;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
}
.stat-label { font-size: 0.875rem; color: var(--muted); }

/* ── SECTIONS ─────────────────────────────────────────── */
section { padding: 7rem 5%; }

.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.8;
}

/* ── ABOUT ─────────────────────────────────────────────── */
.about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.about-image-wrap { position: relative; }

.about-image-wrap img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, var(--orange) 0%, transparent 60%);
  z-index: -1;
}

.about-content { display: flex; flex-direction: column; gap: 1.5rem; }

.team-member {
  display: flex; align-items: center; gap: 1rem;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.team-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.team-name { font-family: 'Syne', sans-serif; font-weight: 700; }
.team-role { font-size: 0.875rem; color: var(--muted); }

/* ── SERVICES ─────────────────────────────────────────── */
.services { background: var(--dark2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(255,107,53,0.2); transform: translateY(-4px); }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,53,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── TEAM ──────────────────────────────────────────────── */
.team { background: var(--dark); }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials { background: var(--dark2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-quote::before { content: '"'; color: var(--orange); font-size: 1.5rem; font-style: normal; }
.testimonial-quote::after { content: '"'; color: var(--orange); font-size: 1.5rem; font-style: normal; }

.testimonial-author {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CTA SECTION ──────────────────────────────────────── */
.cta-section {
  background: var(--orange);
  padding: 6rem 5%;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none; cursor: pointer;
  transition: transform 0.15s;
  display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-page { padding-top: 140px; min-height: 100vh; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
}

.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,107,53,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.contact-detail-text h4 {
  font-size: 0.875rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-detail-text p { color: rgba(255,255,255,0.8); }

.contact-form {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }

.form-group label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

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

.form-submit {
  background: var(--orange);
  color: var(--white);
  border: none; cursor: pointer;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }

.form-success {
  display: none;
  background: rgba(26, 188, 100, 0.1);
  border: 1px solid rgba(26, 188, 100, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  color: #1abc64;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-top: 1rem;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: #080808;
  padding: 3rem 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img { height: 36px; }

.footer-links {
  display: flex; gap: 2rem; list-style: none;
  font-size: 0.875rem; color: var(--muted);
}
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* ── MAP IMAGE ─────────────────────────────────────────── */
.map-image { border-radius: var(--radius); overflow: hidden; }
.map-image img { width: 100%; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 72px;
    background: var(--dark); padding: 3rem 5%;
    gap: 2rem; font-size: 1.5rem;
    z-index: 99;
  }
  nav.open .nav-cta {
    display: block;
    position: fixed; bottom: 2rem; left: 5%; right: 5%;
    text-align: center; font-size: 1.1rem; padding: 1rem;
    z-index: 99;
  }
  .hero-image { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 5rem 5%; }
  footer { flex-direction: column; text-align: center; }
}
