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

/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: hsl(220 20% 10%);
  --fg: hsl(30 10% 92%);
  --card: hsl(220 18% 14%);
  --primary: hsl(25 95% 53%);
  --primary-fg: hsl(220 20% 6%);
  --secondary: hsl(220 15% 20%);
  --muted: hsl(220 10% 55%);
  --border: hsl(220 15% 22%);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-glow: 0 0 30px hsl(25 95% 53% / 0.2);
  --radius: 0.5rem;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.text-gradient {
  background-image: linear-gradient(135deg, hsl(25 95% 53%), hsl(35 95% 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-glow { border-color: hsl(25 95% 53% / 0.3); box-shadow: 0 0 15px hsl(25 95% 53% / 0.1); }

/* ── Navbar ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsl(220 20% 10% / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.navbar__logo { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.navbar__logo span { color: var(--primary); }
.navbar__links { display: flex; align-items: center; gap: 2rem; }
.navbar__link {
  font-family: var(--font-body); font-size: 0.875rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s;
}
.navbar__link:hover { color: var(--primary); }
.navbar__cta {
  background: var(--primary); color: var(--primary-fg);
  font-family: var(--font-heading); font-size: 0.875rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.5rem 1.25rem; border-radius: var(--radius); border: none; cursor: pointer;
  transition: filter 0.2s;
}
.navbar__cta:hover { filter: brightness(1.1); }

/* Mobile nav toggle */
.navbar__toggle { display: none; background: none; border: none; color: var(--fg); font-size: 1.5rem; cursor: pointer; }
.navbar__mobile { display: none; background: var(--card); border-top: 1px solid var(--border); padding: 1rem 1.5rem; }
.navbar__mobile a { display: block; padding: 0.75rem 0; color: var(--muted); text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; }
.navbar__mobile a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: block; }
  .navbar__mobile.open { display: block; }
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: 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(to bottom, hsl(220 20% 10% / 0.8), hsl(220 20% 10% / 0.6), var(--bg));
}
.hero__content { position: relative; z-index: 10; text-align: center; }
.hero__sub { color: var(--primary); font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
.hero__title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; line-height: 0.95; margin-bottom: 1.5rem; }
.hero__tagline { font-family: var(--font-heading); font-size: clamp(1.25rem, 3vw, 1.875rem); color: hsl(30 10% 92% / 0.9); margin-bottom: 2.5rem; letter-spacing: 0.03em; text-transform: uppercase; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-primary {
  background: var(--primary); color: var(--primary-fg);
  font-family: var(--font-heading); font-size: 1.125rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: var(--radius); border: none; cursor: pointer;
  box-shadow: var(--shadow-glow); transition: filter 0.2s;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary {
  border: 1px solid hsl(25 95% 53% / 0.3);
  box-shadow: 0 0 15px hsl(25 95% 53% / 0.1);
  background: hsl(220 15% 20% / 0.5); color: var(--fg);
  font-family: var(--font-heading); font-size: 1.125rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: var(--radius); cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.75rem;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--secondary); }
.btn-secondary svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 1.5rem; height: 2.5rem; border: 2px solid hsl(30 10% 92% / 0.3);
  border-radius: 9999px; display: flex; justify-content: center; padding-top: 0.5rem;
  animation: bounce 2s infinite;
}
.scroll-indicator__dot { width: 0.375rem; height: 0.75rem; background: var(--primary); border-radius: 9999px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ── Section shared ──────────────────────────────── */
.section { padding: 6rem 0; }
.section--alt { background: var(--card); }
.section__sub { color: var(--primary); font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
.section__header { text-align: center; margin-bottom: 4rem; }

/* ── Services ────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: hsl(220 15% 20% / 0.5); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; transition: all 0.3s;
}
.service-card:hover { border-color: hsl(25 95% 53% / 0.3); box-shadow: 0 0 15px hsl(25 95% 53% / 0.1); }
.service-card__icon {
  width: 3.5rem; height: 3.5rem; border-radius: var(--radius);
  background: hsl(25 95% 53% / 0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-card:hover .service-card__icon { background: hsl(25 95% 53% / 0.2); }
.service-card__icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.service-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card__desc { color: var(--muted); line-height: 1.7; }

/* ── About ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; } }
.about__text p { color: var(--muted); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1.5rem; }
.about__text p:last-child { margin-bottom: 0; }
.about__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1.5rem; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  transition: all 0.3s;
}
.stat-card:hover { border-color: hsl(25 95% 53% / 0.3); box-shadow: 0 0 15px hsl(25 95% 53% / 0.1); }
.stat-card__value { font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; text-transform: uppercase; }
.stat-card__label { color: var(--muted); font-size: 0.875rem; }

/* ── Contact ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: hsl(220 15% 20% / 0.5); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  transition: all 0.3s;
}
.contact-card:hover { border-color: hsl(25 95% 53% / 0.3); box-shadow: 0 0 15px hsl(25 95% 53% / 0.1); }
.contact-card__icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: hsl(25 95% 53% / 0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.contact-card__icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.contact-card__title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; }
.contact-card__info { font-weight: 500; margin-bottom: 0.25rem; }
.contact-card__sub { color: var(--muted); font-size: 0.875rem; }

/* ── Footer ──────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__logo { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.footer__logo span { color: var(--primary); }
.footer__copy { font-size: 0.875rem; color: var(--muted); }
