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

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

:root {
  --dark:    #0f172a;
  --dark2:   #1e293b;
  --dark3:   #334155;
  --orange:  #f97316;
  --orange2: #ea580c;
  --light:   #f8fafc;
  --muted:   #94a3b8;
  --white:   #ffffff;
  --text:    #1e293b;
  --radius:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── Utilities ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange2); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); }
.section-label {
  display: inline-block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--dark); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 17px; color: #64748b; max-width: 560px; line-height: 1.6;
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--white); line-height: 1.1;
}
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--orange); }
.nav-cta { margin-left: 16px; padding: 10px 20px; font-size: 14px; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--white);
}
.nav-hamburger svg { width: 24px; height: 24px; }
.nav-mobile {
  display: none; flex-direction: column; padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile a {
  display: block; padding: 12px 0;
  font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0, transparent 40px,
      rgba(249,115,22,0.03) 40px, rgba(249,115,22,0.03) 41px
    );
}
.hero-accent {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  font-size: 13px; font-weight: 600; color: #fb923c;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(48px, 9vw, 96px);
  color: var(--white); margin-bottom: 8px; line-height: 1;
}
.hero-title .accent { color: var(--orange); }
.hero-subtitle {
  font-size: clamp(20px, 3vw, 30px);
  color: var(--muted); margin-bottom: 32px; font-weight: 400;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-desc {
  font-size: 17px; color: #94a3b8; max-width: 500px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Services preview ── */
.services-preview { padding: 100px 0; background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-top: 48px;
}
.service-card {
  background: var(--white); border-radius: 12px;
  padding: 28px 24px; border: 1px solid #e2e8f0;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.service-icon {
  width: 48px; height: 48px; background: rgba(249,115,22,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; margin-bottom: 8px;
}
.service-desc { font-size: 14px; color: #64748b; line-height: 1.5; }

/* ── Why us ── */
.why-us {
  padding: 100px 0;
  background: var(--dark);
}
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px; margin-top: 56px;
}
.why-item { padding: 32px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); }
.why-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 48px;
  font-weight: 800; color: rgba(249,115,22,0.25); line-height: 1;
  margin-bottom: 16px;
}
.why-title {
  font-size: 22px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; text-transform: uppercase;
}
.why-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── Location strip ── */
.location { padding: 100px 0; background: var(--white); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-top: 56px;
}
.location-info h3 {
  font-size: 26px; color: var(--dark); margin-bottom: 24px;
  text-transform: uppercase;
}
.info-row {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.info-icon {
  width: 40px; height: 40px; background: rgba(249,115,22,0.1);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.info-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.info-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.info-value { font-size: 16px; color: var(--dark); font-weight: 500; }
.info-value a { color: var(--orange); }
.map-frame {
  border-radius: 12px; overflow: hidden;
  border: 1px solid #e2e8f0; height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.hours-table { width: 100%; margin-top: 8px; }
.hours-table td { padding: 5px 0; font-size: 15px; color: var(--dark); }
.hours-table td:last-child { text-align: right; color: #64748b; }
.hours-badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 12px; font-weight: 600; background: #dcfce7; color: #15803d;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: var(--orange);
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px); color: var(--white);
  text-transform: uppercase;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-top: 8px; }
.btn-white { background: var(--white); color: var(--orange2); }
.btn-white:hover { background: #f1f5f9; }

/* ── Footer ── */
.footer {
  background: #080e1a;
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px; color: var(--muted); margin-top: 16px;
  max-width: 280px; line-height: 1.7;
}
.footer-col h4 {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent 0, transparent 40px,
    rgba(249,115,22,0.03) 40px, rgba(249,115,22,0.03) 41px
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 500px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ── Contact ── */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-form { background: var(--light); border-radius: 16px; padding: 40px; }
.contact-form h3 {
  font-size: 28px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; margin-bottom: 8px;
}
.contact-form p { font-size: 15px; color: #64748b; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--dark); margin-bottom: 6px; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e2e8f0; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--dark);
  background: var(--white); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-map-full { border-radius: 16px; overflow: hidden; height: 380px; border: 1px solid #e2e8f0; }
.contact-map-full iframe { width: 100%; height: 100%; border: none; }

/* ── Services page ── */
.services-full { padding: 80px 0; }
.services-full-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}
.service-full-card {
  border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 32px; transition: border-color 0.2s, transform 0.2s;
  background: var(--white);
}
.service-full-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.service-full-card .service-icon { margin-bottom: 20px; }
.service-full-name {
  font-size: 22px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; margin-bottom: 10px;
}
.service-full-desc { font-size: 15px; color: #64748b; line-height: 1.6; }
.service-full-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-tag {
  background: rgba(249,115,22,0.08); color: var(--orange2);
  font-size: 12px; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ── About ── */
.about-story { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-placeholder {
  border-radius: 16px; overflow: hidden; position: relative;
  height: 440px;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-image-placeholder svg { width: 100px; height: 100px; opacity: 0.15; fill: var(--white); }
.about-image-label {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(249,115,22,0.9); border-radius: 8px;
  padding: 12px 16px; font-size: 14px; color: var(--white); font-weight: 600;
}
.about-text h2 { font-size: 42px; color: var(--dark); margin-bottom: 20px; }
.about-text p { font-size: 16px; color: #475569; line-height: 1.8; margin-bottom: 16px; }
.about-values { padding: 80px 0; background: var(--light); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--white); border-radius: 12px; padding: 28px 24px;
  border: 1px solid #e2e8f0; text-align: center;
}
.value-card-icon {
  width: 56px; height: 56px; background: rgba(249,115,22,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-card-icon svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.value-card h3 { font-size: 19px; font-weight: 700; color: var(--dark); text-transform: uppercase; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: #64748b; line-height: 1.5; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .location-grid, .contact-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}
