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

:root {
  --red: #B91C1C;
  --red-dark: #7F1D1D;
  --red-light: #EF4444;
  --orange: #EA580C;
  --orange-light: #FB923C;
  --black: #0A0A0A;
  --black2: #141414;
  --black3: #1E1E1E;
  --gray: #2A2A2A;
  --gray2: #3A3A3A;
  --text: #F5F5F5;
  --text-muted: white;
  --wa: #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem 0em 4rem;
  height: 64px;
  /* background: rgba(255, 255, 255, 0.80); */
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.4rem; letter-spacing: 0.05rem;
  color: var(--text);
  margin:0;
  text-decoration: none;
  display: flex; align-items: center; 
}
.nav-logo img {
  margin-right: 0rem;
}
.nav-logo span { color: var(--orange); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red); color: white;
  border: none; padding: 0.5rem 1.25rem;
  cursor: pointer; text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); display: block; transition: 0.3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 64px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(185,28,28,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 80%, rgba(234,88,12,0.08) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 2rem 4rem 4rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 2px; background: var(--orange);
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95; letter-spacing: -0.01em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title .line-red { color: var(--red-light); display: block; }
.hero-title .line-orange { color: var(--orange); display: block; }
.hero-desc {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted); max-width: 420px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red); color: white;
  border: 2px solid var(--red);
  padding: 0.85rem 2rem; cursor: pointer; text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, border-color 0.2s;
}
.btn-primary:hover { background: var(--orange); border-color: var(--orange); }
.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent; color: var(--text);
  border: 2px solid var(--gray2);
  padding: 0.85rem 2rem; cursor: pointer; text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--gray);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2rem; color: var(--orange);
}
.stat-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; padding: 4rem 4rem 4rem 2rem;
}
.hero-visual {
  width: 100%; max-width: 480px; aspect-ratio: 1;
  position: relative;
}
.hero-hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-main {
  width: 72%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--red-dark), var(--black3));
  border: 2px solid var(--red);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem; font-weight: 900; color: var(--red-light);
  z-index: 2;
  animation: pulse-hex 3s ease-in-out infinite;
}
@keyframes pulse-hex {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185,28,28,0.4); }
  50% { box-shadow: 0 0 40px 10px rgba(185,28,28,0.15); }
}
.hex-orbit {
  width: 20%; aspect-ratio: 1;
  background: var(--black3); border: 1px solid var(--orange);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  animation: orbit 12s linear infinite;
  transform-origin: 250% 250%;
}
.hex-orbit:nth-child(2) { animation-delay: -4s; }
.hex-orbit:nth-child(3) { animation-delay: -8s; }
@keyframes orbit {
  from { transform: rotate(0deg) translate(140%) rotate(0deg); }
  to { transform: rotate(360deg) translate(140%) rotate(-360deg); }
}
.hex-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90%; aspect-ratio: 1;
  border: 1px dashed rgba(234,88,12,0.2);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ── SECTION SHARED ── */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap;
}
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-tag::before { content: '◆'; font-size: 0.5rem; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase; line-height: 1;
}
.section-title em { color: var(--red-light); font-style: normal; }


/* summit */
  .spacer { height: 60vh; display:flex; align-items:center; justify-content:center; color:#555; }

  /* The scroll-driven summit section */
  .summit-section {
    position: relative;
    height: 300vh; /* controls how long the scroll effect lasts */
    background: #0a0a0a;
  }

  .summit-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    overflow: hidden;
  }

  /* Ghost watermark motif */
  .summit-sticky::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,90,0,0.08), transparent 60%);
    pointer-events: none;
  }

  .summit-flyer {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
  }
  .summit-flyer img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,90,0,0.25);
  }

  /* Countdown — pinned at the top of the text column, doesn't cross-fade with the text blocks */
  .summit-countdown-wrap {
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    z-index: 2;
  }
  .summit-countdown {
    display: flex;
    gap: 10px;
  }
  .summit-countdown .box {
    border: 2px solid #B91C1C;
    border-radius: 8px;
    min-width: 58px;
    padding: 8px 6px;
    text-align: center;
    background: rgba(255,90,0,0.05);
  }
  .summit-countdown .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    display: block;
    line-height: 1;
  }
  .summit-countdown .label {
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ccc;
  }
  .summit-countdown-note {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #B91C1C;
    margin-bottom: 8px;
  }

  .summit-text-col {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px;
    padding-top: 130px; /* keeps centered text clear of the pinned countdown */
  }

  .summit-text-block {
    position: absolute;
    left: 60px;
    right: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none; /* invisible blocks can't intercept clicks */
  }
  .summit-text-block.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* only the visible block is clickable */
  }

  .summit-text-block .tag {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    color: #B91C1C;
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
  }
  .summit-text-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1.05;
    margin: 0 0 18px 0;
    letter-spacing: 1px;
  }
  .summit-text-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cfcfcf;
    font-weight: 300;
    max-width: 480px;
  }

  .bles_btn a {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 28px;
    background: #B91C1C;
    color: #fff;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 0.95rem;
    border-radius: 3px;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .bles_btn a:hover {
    background: #af2b2b;
    transform: translateY(-2px);
  }

  /* progress dots */
  .summit-dots {
    position: absolute;
    left: 60px;
    bottom: 60px;
    display: flex;
    gap: 10px;
  }
  .summit-dots span {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .summit-dots span.active {
    background: #5c2000;
    transform: scale(1.3);
  }

  /* ---- MOBILE: sticky/cross-fade trick is dropped entirely ---- */
  @media (max-width: 800px) {
    .summit-section {
      height: auto;           /* no more 300vh scroll-jack */
    }
    .summit-sticky {
      position: static;       /* unpin the flyer */
      height: auto;
      flex-direction: column;
      padding: 50px 20px;
      gap: 30px;
    }
    .summit-flyer {
      flex: none;
      padding: 0;
    }
    .summit-flyer img {
      max-height: 50vh;
    }
    .summit-countdown .box {
      min-width: 50px;
      padding: 6px 4px;
    }
    .summit-countdown .num {
      font-size: 1.15rem;
    }
    .summit-text-col {
      position: static;
      padding: 0;
      display: block;
    }
    .summit-countdown-wrap {
      position: static;
      margin-bottom: 30px;
    }
    .summit-text-block {
      position: static;       /* stacked normally, not absolutely positioned */
      left: auto; right: auto;
      opacity: 0;
      transform: translateY(20px);
      margin-bottom: 40px;
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .summit-text-block.active {
      opacity: 1;
      transform: translateY(0);
    }
    .summit-text-block h2 { font-size: 2rem; }
    .summit-dots { display: none; } /* not needed when all 3 are visible/stacked */
  

    @media (max-width: 800px) {
  /* ...keep everything you already have, then add: */

  .summit-text-block {
    text-align: center;
  }

  .summit-text-block p {
    margin-left: auto;
    margin-right: auto;
  }

  .summit-countdown-wrap {
    text-align: center;
  }

  .summit-countdown {
    justify-content: center;
  }

  .bles_btn {
    display: flex;
    justify-content: center;
  }
}
  }
/* summit */

/* ── SERVICES ── */
#services {
  padding: 6rem 4rem;
  background: var(--black2);
  position: relative;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--black3);
  padding: 2.5rem 2rem;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, rgba(185,28,28,0.08) 0%, transparent 100%);
  transition: height 0.3s;
}
.service-card:hover { border-color: var(--red); background: #1a1111; }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(185,28,28,0.15);
  border: 1px solid rgba(185,28,28,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--gray2); text-transform: uppercase; margin-bottom: 0.5rem;
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.4rem; text-transform: uppercase;
  margin-bottom: 0.75rem; color: var(--text);
}
.service-desc {
  font-size: 0.875rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted);
}
.service-arrow {
  display: inline-block; margin-top: 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── VIDEO SECTION ── */
#work {
  padding: 6rem 4rem;
  background: var(--black);
}
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.video-card {
  position: relative; background: var(--black3);
  border: 1px solid var(--gray);
  overflow: hidden; cursor: pointer;
  transition: border-color 0.3s;
}
.video-card:hover { border-color: var(--red); }
.video-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--gray); display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
}
.play-btn {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s, transform 0.2s;
}
.video-card:hover .play-btn { background: var(--orange); transform: scale(1.1); }
.video-info { padding: 1.25rem; }
.video-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.4rem;
}
.video-meta { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }
.thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--black3) 0%, var(--red-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.1);
}

/* ── GALLERY / CAROUSEL ── */
#gallery {
  padding: 6rem 0;
  background: var(--black2);
  overflow: hidden;
}
.carousel-outer {
  width: 100%; overflow: hidden;
  cursor: grab; user-select: none;
}
.carousel-outer:active { cursor: grabbing; }
.carousel-track {
  display: flex; gap: 1.5rem;
  padding: 0 4rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gslide {
  min-width: 380px; max-width: 380px;
  position: relative; overflow: hidden;
  border: 1px solid var(--gray);
  flex-shrink: 0;
}
.gslide img {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
  pointer-events: none;
}
.gslide:hover img { transform: scale(1.05); }
.gslide-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 2rem 1.25rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text);
}
.gslide-label::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: var(--orange); margin-bottom: 0.4rem;
}
.carousel-dots {
  display: flex; justify-content: center;
  gap: 0.5rem; margin-top: 2rem;
}
.cdot {
  width: 8px; height: 8px;
  background: var(--gray2); border-radius: 50%;
  cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.cdot.active { background: var(--orange); transform: scale(1.4); }

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 6rem 4rem;
  background: var(--black2);
}
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: var(--black3); padding: 2rem;
  border-top: 3px solid var(--red);
  position: relative;
}
.testi-quote {
  font-size: 2.5rem; color: var(--red); line-height: 1;
  margin-bottom: 1rem; font-family: Georgia, serif;
}
.testi-text {
  font-size: 0.9rem; font-weight: 300; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.9rem;
}
.testi-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase; font-size: 0.95rem;
}
.testi-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── CONTACT ── */
#contact {
  padding: 6rem 4rem;
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(185,28,28,0.15); border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-item-text p { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-item-text strong { font-size: 0.95rem; font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--black3); border: 1px solid var(--gray2);
  color: var(--text); padding: 0.85rem 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red);
}
.form-group select option { background: var(--black3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red); color: white;
  border: none; padding: 1rem 2rem;
  cursor: pointer;
  clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  transition: background 0.2s;
}
.form-submit:hover { background: var(--orange); }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }
#form-success {
  display: none; background: rgba(37,211,102,0.1);
  border: 1px solid var(--wa); padding: 1rem;
  text-align: center; color: var(--wa); margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.08em;
}

/* ── QUOTE SECTION ── */
#quote {
  padding: 5rem 4rem;
  background: linear-gradient(135deg, var(--red-dark) 0%, #1a0a0a 100%);
  text-align: center; position: relative; overflow: hidden;
}
#quote::before {
  content: 'Amacity Engineering'; position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 10rem;
  color: rgba(255,255,255,0.03); top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; white-space: nowrap;
}
.quote-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase; margin-bottom: 1rem;
}
.quote-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem; max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.quote-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-wa {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--wa); color: #000;
  border: none; padding: 1rem 2.5rem;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.75rem;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: opacity 0.2s;
}
.btn-wa:hover { opacity: 0.9; }

/* ── FOOTER ── */
footer {
  background: var(--black2); padding: 3rem 4rem 2rem;
  border-top: 1px solid var(--gray);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.5rem; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--gray); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--wa); color: #000;
  padding: 0.85rem 1.25rem 0.85rem 0.85rem;
  border-radius: 50px;
  text-decoration: none; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  animation: wa-bounce 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.05); animation: none; }
.wa-icon { width: 32px; height: 32px; }
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--black2); padding: 1.5rem;
    border-bottom: 1px solid var(--gray); gap: 1rem;
  }
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  #services, #work, #testimonials { padding: 4rem 1.5rem; }
  #contact { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  #quote { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 0.85rem; border-radius: 50%; }
  .carousel-track { padding: 0 1.5rem; gap: 1rem; }
  .gslide { min-width: 280px; max-width: 280px; }
  .gslide img { height: 200px; }
  #gallery { padding: 4rem 0; }
}

/* ════════════════════════════════
   PORTFOLIO — BEFORE / AFTER
════════════════════════════════ */
#portfolio {
  padding: 6rem 0;
  background: var(--black);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 4rem;
}
.pf-card {
  background: var(--black3);
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: border-color 0.3s;
  position: relative;
}
.pf-card:hover { border-color: var(--red); }
.pf-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 10;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red); color: white;
  padding: 0.25rem 0.75rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.pf-slider {
  position: relative; width: 100%; height: 290px;
  overflow: hidden; cursor: ew-resize; user-select: none;
}
.pf-before, .pf-after {
  position: absolute; inset: 0;
}
.pf-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.pf-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
}
.pf-img-placeholder img { 
  object-fit: cover;
  object-position: top;
  filter: grayscale(10%) brightness(0.8);}
.pf-img-placeholder span { font-size: 3rem; }
.pf-img-placeholder p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.pf-before-bg { background: linear-gradient(135deg, #1a0a0a, #2a1010); }
.pf-after-bg  { background: linear-gradient(135deg, #0a1a0a, #0d2a1a); }
.pf-divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 2px;
  background: white; z-index: 5;
  pointer-events: none;
}
.pf-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  gap: 2px; z-index: 6; cursor: ew-resize;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  font-size: 0.65rem; color: var(--black);
  font-weight: 900;
}
.pf-label {
  position: absolute; bottom: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 0.7rem; letter-spacing: 0.2em;
  padding: 0.2rem 0.5rem;
  z-index: 4;
}
.pf-label-before { left: 0.75rem; background: rgba(0,0,0,0.6); color: #aaa; }
.pf-label-after  { right: 0.75rem; background: rgba(0,0,0,0.6); color: var(--orange); }
.pf-info { padding: 1.25rem; }
.pf-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.3rem;
}
.pf-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ════════════════════════════════
   CERTIFICATIONS
════════════════════════════════ */
#certifications {
  padding: 6rem 4rem;
  background: var(--black2);
}
.certs-inner { max-width: 1100px; margin: 0 auto; }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.cert-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--black3); padding: 1.75rem;
  border: 1px solid var(--gray);
  border-left: 3px solid var(--red);
  transition: border-color 0.3s, background 0.3s;
}
.cert-card:hover { border-color: var(--orange); background: #1a1010; }
.cert-icon {
  font-size: 2rem; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.15rem;
}
.cert-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.05rem; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.3rem;
}
.cert-org {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.5; margin-bottom: 0.75rem;
}
.cert-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(234,88,12,0.15); color: var(--orange);
  border: 1px solid rgba(234,88,12,0.3);
  padding: 0.15rem 0.6rem;
}

/* ════════════════════════════════
   TEAM
════════════════════════════════ */
#team {
  padding: 6rem 0;
  background: var(--black);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 0 4rem;
}
.team-card {
  background: var(--black3);
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: var(--red); }
.team-photo {
  position: relative; height: 260px; overflow: hidden;
}
.team-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--black2), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.15);
  transition: transform 0.4s;
}
.team-card:hover .team-photo-placeholder { transform: scale(1.04); }
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.4s;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-socials {
  position: absolute; bottom: 1rem; right: 1rem;
  display: flex; gap: 0.5rem;
}
.team-socials a {
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.7); border: 1px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--text);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.team-socials a:hover { background: var(--red); border-color: var(--red); }
.team-info { padding: 1.5rem; }
.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.2rem; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.2rem;
}
.team-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.3rem;
}
.team-speciality {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.05em; margin-bottom: 0.85rem;
  padding-bottom: 0.85rem; border-bottom: 1px solid var(--gray);
}
.team-bio {
  font-size: 0.85rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted);
}

/* ── RESPONSIVE: NEW SECTIONS ── */
@media (max-width: 768px) {
  nav { padding:0; 
  padding-right: 1rem;
  }

  .portfolio-grid, .team-grid { padding: 0 1.5rem; }
  #certifications { padding: 4rem 1.5rem; }
  #portfolio .section-header,
  #team .section-header { padding: 0 1.5rem !important; }
}
