:root {
  --orange: #E8611A;
  --orange-light: #F07A3A;
  --orange-glow: rgba(232, 97, 26, 0.15);
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --grey-dark: #2A2A2A;
  --grey-mid: #666;
  --grey-light: #999;
  --white: #F5F0EB;
  --white-pure: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   TEXTURE OVERLAY
═══════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 97, 26, 0.1);
  transition: all 0.4s ease;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--grey-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--orange) !important;
  color: var(--black) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 0;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 2px !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 97, 26, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232, 97, 26, 0.04) 0%, transparent 60%),
    var(--black);
}

.hero-line {
  position: absolute;
  top: 0;
  right: 35%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(232, 97, 26, 0.2) 40%, rgba(232, 97, 26, 0.2) 60%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(232, 97, 26, 0.1);
  border: 1px solid rgba(232, 97, 26, 0.25);
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  animation: fadeSlideDown 0.8s ease both;
}

.hero-badge::before {
  content: '';
  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 h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

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

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--grey-light);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  border: 1px solid var(--grey-dark);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-stats {
  position: absolute;
  right: 3rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  z-index: 2;
  animation: fadeSlideLeft 0.8s ease 0.8s both;
}

.hero-stat {
  text-align: right;
}

.hero-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════
   SECTION STYLING
═══════════════════════════════════════ */
section {
  padding: 7rem 3rem;
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--grey-light);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
#services {
  background: var(--black-soft);
}

.services-header {
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--grey-dark);
  border: 1px solid var(--grey-dark);
}

.service-card {
  background: var(--black);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}

.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--black-card); }

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Specialist badge */
.service-specialist {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(232, 97, 26, 0.1);
  border: 1px solid rgba(232, 97, 26, 0.3);
  color: var(--orange);
  padding: 0.2rem 0.6rem;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ═══════════════════════════════════════
   ABOUT / EXPERIENCE
═══════════════════════════════════════ */
#about {
  background: var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-visual-block {
  position: absolute;
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
}

.about-visual-block.block-1 {
  width: 75%;
  height: 70%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-block.block-1 .big-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
}

.about-visual-block.block-2 {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #c54e0e 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border: none;
}

.block-2-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--black);
  line-height: 1;
}

.block-2-text {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  font-weight: 700;
  margin-top: 0.25rem;
}

.about-content .section-subtitle {
  margin-bottom: 2.5rem;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(232, 97, 26, 0.1);
  border: 1px solid rgba(232, 97, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about-feature p {
  color: var(--grey-mid);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   SPECIALTIES BANNER
═══════════════════════════════════════ */
.specialties {
  background: var(--orange);
  padding: 4rem 3rem;
  overflow: hidden;
  position: relative;
}

.specialties-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.specialties h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.specialties p {
  color: rgba(0,0,0,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.specialties .btn-dark {
  background: var(--black);
  color: var(--orange);
  padding: 1rem 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.specialties .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════
   TESTIMONIAL / TRUST
═══════════════════════════════════════ */
#testimonial {
  background: var(--black-soft);
  text-align: center;
}

.testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--white);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: -3.5rem;
  left: -1.5rem;
  font-style: normal;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.trust-badge span {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ═══════════════════════════════════════
   AREAS WE COVER
═══════════════════════════════════════ */
#areas {
  background: var(--black);
}

.areas-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.areas-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-tag {
  padding: 0.6rem 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
  font-size: 0.85rem;
  color: var(--grey-light);
  transition: all 0.3s;
  cursor: default;
}

.area-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 97, 26, 0.05);
}

/* ═══════════════════════════════════════
   CONTACT / CTA
═══════════════════════════════════════ */
#contact {
  background: var(--black-soft);
  border-top: 1px solid var(--grey-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-dark);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--white);
}

.contact-method:hover { padding-left: 0.5rem; }

.contact-method-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(232, 97, 26, 0.1);
  border: 1px solid rgba(232, 97, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.contact-method:hover .contact-method-icon {
  background: var(--orange);
  border-color: var(--orange);
}

.contact-method h4 {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.contact-method p {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: var(--black);
  border: 1px solid var(--grey-dark);
  padding: 1rem 1.25rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--grey-mid);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 3rem;
  border-top: 1px solid var(--grey-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.footer-logo span { color: var(--orange); }

footer p {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-strip {
  background: var(--black);
  border-top: 1px solid var(--grey-dark);
  border-bottom: 1px solid var(--grey-dark);
  padding: 1.25rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--grey-dark);
  padding: 0 2rem;
}

.marquee-item .dot {
  color: var(--orange);
  margin-right: 2rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-layout,
  .contact-layout,
  .areas-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual { height: 350px; }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    flex-direction: row;
    gap: 2rem;
    margin-top: 3rem;
  }

  .hero-stat { text-align: left; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--grey-dark);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  section { padding: 4rem 1.5rem; }
  .hero { padding: 0 1.5rem; }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-visual { height: 280px; }
}
