/* ===================================================
   L&S Eventtechnik – Stylesheet
   =================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark-2);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--color-white);
}

/* === CSS Variables === */
:root {
  --color-primary:       #f8500c;
  --color-primary-dark:  #d44008;
  --color-primary-light: #fff0ea;
  --color-secondary:     #f59e0b;
  --color-dark:          #0f0f1a;
  --color-dark-2:        #1e293b;
  --color-gray:          #64748b;
  --color-gray-light:    #f1f5f9;
  --color-white:         #ffffff;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:       12px;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.14);
  --transition:   all 0.3s ease;
  --nav-height:   96px;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

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

/* === Layout Utilities === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.85rem; }
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-gray);
  font-size: 1.05rem;
}

.badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font-body);
  line-height: 1;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248,80,12,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.2);
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar.scrolled .nav-link { color: var(--color-dark-2); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo als Bild */
.nav-logo-link { display: flex; align-items: center; }
.nav-logo-img {
  height: 82px;
  width: auto;
  display: block;
  transition: filter 0.35s ease;
}
.navbar.scrolled .nav-logo-img {
  filter: brightness(0);   /* weißes PNG → schwarz auf weißer Navbar */
}

/* Fallback Text-Logo (falls Bild nicht lädt) */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.logo-accent { color: var(--color-secondary); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.navbar.scrolled .nav-link:hover { color: var(--color-primary); }

.nav-cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--color-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(248,80,12,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--color-dark-2); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    url('https://ls-eventtechnik.de/wp-content/uploads/2025/02/stainless-2576185_1280.jpg')
    center/cover no-repeat;
  padding-top: var(--nav-height);
}

/* Dunkles Overlay über dem Foto */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 55%, rgba(248,80,12,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(245,158,11,0.12) 0%, transparent 50%),
    linear-gradient(rgba(8,8,20,0.72), rgba(8,8,20,0.72));
  pointer-events: none;
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-5vh) scale(1); opacity: 0; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-white);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.4rem;
  line-height: 1.12;
}
.hero h1 em {
  color: var(--color-secondary);
  font-style: normal;
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* === Partners === */
.partners {
  background: var(--color-gray-light);
  padding: 3.5rem 0;
}
.partners-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 2.2rem;
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.4rem 2.2rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  min-width: 190px;
  min-height: 110px;
  text-align: center;
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.partner-card img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  display: block;
}
.partner-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark-2);
}
.partner-sub {
  font-size: 0.78rem;
  color: var(--color-gray);
}

/* === Services === */
.services { background: var(--color-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  background: var(--color-white);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #1e1b4b; /* Fallback wenn Bild nicht lädt */
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
  pointer-events: none;
}
.service-body { padding: 1.75rem; }
.service-body h3 { margin-bottom: 0.7rem; color: var(--color-dark-2); }
.service-body p  { color: var(--color-gray); font-size: 0.95rem; margin-bottom: 1.2rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.25s ease, color 0.2s;
}
.service-link:hover { gap: 0.8rem; }

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary) 60%, #ff7a3d);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--color-white); margin-bottom: 0.9rem; }
.cta-banner p  {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* === Footer === */
.footer {
  background: #080d1a;
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.9rem;
  display: block;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.footer-social { display: flex; gap: 0.7rem; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  color: var(--color-white);
}
.footer h4 {
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.45rem;
}
.footer-links a:hover { color: var(--color-white); }
.footer-links a i { font-size: 0.75rem; opacity: 0.5; }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.footer-contact-item i {
  color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.footer-contact-item span {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--color-white); }

/* === Page Hero (Unterseiten) === */
.page-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: linear-gradient(135deg, #0a0806 0%, #1a0d06 50%, #2d1500 100%);
  padding-top: calc(var(--nav-height) + 2rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(248,80,12,0.2) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--color-white); margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 580px; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb i { font-size: 0.65rem; opacity: 0.5; }

/* === Gallery === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/2;
  cursor: pointer;
  background: var(--color-gray-light);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(248,80,12,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 2.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Gallery placeholder (ohne echte Bilder) */
.gallery-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  font-size: 2.8rem;
  color: rgba(0,0,0,0.18);
}
.gallery-ph span { font-size: 0.8rem; color: var(--color-gray); font-family: var(--font-body); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.lb-close:hover { background: var(--color-primary); }
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.lb-nav:hover { background: var(--color-primary); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-caption {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* === Kontakt === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(155deg, var(--color-primary), var(--color-primary-dark) 80%);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--color-white);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.contact-info-card h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.contact-info-card > p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin-bottom: 2.2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.78rem;
  opacity: 0.65;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item-text a { color: var(--color-white); transition: opacity 0.2s; }
.contact-item-text a:hover { opacity: 0.75; }
.contact-item-text span { color: var(--color-white); font-size: 0.95rem; }

.contact-social { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.contact-social p { font-size: 0.82rem; opacity: 0.65; margin-bottom: 0.75rem; }
.contact-social .footer-social { gap: 0.6rem; }
.contact-social .social-btn { background: rgba(255,255,255,0.15); }
.contact-social .social-btn:hover { background: rgba(255,255,255,0.3); }

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-form-card > p { color: var(--color-gray); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-dark-2);
  margin-bottom: 0.45rem;
}
.form-group label .req { color: var(--color-primary); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--color-dark-2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--color-white);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(248,80,12,0.12);
}
.form-group textarea { resize: vertical; min-height: 135px; }

.form-submit { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-note { font-size: 0.83rem; color: var(--color-gray); }
.form-note a { color: var(--color-primary); }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  color: #166534;
  margin-top: 1.25rem;
  text-align: center;
  font-weight: 500;
}
.form-success.show { display: block; }

/* === Über uns === */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  background: linear-gradient(135deg, #1a0e06, #f8500c 50%, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}
.about-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}
.about-text .badge { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--color-gray); line-height: 1.8; }

.stats-row { display: flex; gap: 2.5rem; margin-top: 2.2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--color-gray); margin-top: 0.3rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.value-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: var(--color-gray-light);
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.value-card:hover {
  background: var(--color-white);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--color-gray); }

/* === Legal === */
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-size: 1.35rem;
  color: var(--color-dark-2);
  margin: 2.5rem 0 0.7rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.legal-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 1.4rem 0 0.5rem; }
.legal-content p { color: var(--color-gray); line-height: 1.8; }
.legal-content ul { color: var(--color-gray); padding-left: 1.5rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-content a { color: var(--color-primary); }
.legal-date {
  font-size: 0.83rem;
  color: rgba(100,116,139,0.7);
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

/* === Scroll Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === Responsive === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .about-intro { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links .nav-link { color: var(--color-dark-2) !important; font-size: 1.05rem; padding: 0.6rem 0; }
  .nav-links .nav-cta { text-align: center; margin-top: 0.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row      { grid-template-columns: 1fr; }
  .stats-row     { gap: 1.5rem; }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .partners-grid { gap: 1rem; }
  .partner-card { min-width: 140px; padding: 1rem 1.5rem; }
}
