*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0A1628;
  --navy2: #112040;
  --yellow: #FFD100;
  --yellow2: #E6BC00;
  --white: #FFFFFF;
  --grey: #8A9BB0;
  --light: #F0F4F8;
  --mid: #D0D8E4;
  --text: #1C2B42;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--grey);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--yellow);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 1000;
  padding: 80px 2rem 2rem;
  transition: right 0.3s ease;
  flex-direction: column;
  gap: 1.2rem;
  pointer-events: none;
}

.mobile-menu.active {
  right: 0;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--yellow);
}

.mobile-menu .mobile-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 20px;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  border-bottom: none;
}

.mobile-menu .mobile-cta:hover {
  background: #fff;
  color: #111;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cta-btn {
  background: var(--yellow);
  color: #111 !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
}

.cta-btn:hover {
  background: #fff;
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.75);
  z-index: 0;
}

/* Overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-slash {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45%;
  height: 120%;
  background: var(--yellow);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.hero-slash-outline {
  position: absolute;
  top: -10%;
  right: 4%;
  width: 3px;
  height: 120%;
  background: var(--yellow);
  opacity: 0.25;
  transform: rotate(-8deg) translateX(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--yellow);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: var(--yellow2);
  transform: translateY(-2px);
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 80px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dot.active {
  background: var(--yellow);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--yellow);
  padding: 0;
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat {
  flex: 0 0 auto;
  min-width: 120px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── SECTIONS ── */
section {
  padding: 96px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #6B5600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.0;
  margin-bottom: 24px;
}

.section-title em {
  color: #6B5600;
  font-style: normal;
}

/* ── ABOUT ── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #3a4d62;
  margin-bottom: 20px;
}

.about-card {
  background: var(--navy);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--yellow);
  opacity: 0.15;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 209, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

/* ── PRODUCTS ── */
#products {
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}

.product-card:hover {
  border-bottom-color: var(--yellow);
}

.product-card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: #50678B;
  line-height: 1;
  margin-bottom: 12px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 0.9rem;
  color: #5a6e82;
  line-height: 1.65;
}

/* ── GALLERY ── */
#gallery {
  background: var(--navy);
  padding: 80px 40px;
}

#gallery .section-title {
  color: var(--white);
}

#gallery .section-tag {
  color: var(--yellow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
  padding: 2rem 1rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-inner {
  transform: translateY(0);
}

/* ── WHY US ── */
#why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-item {
  position: relative;
  padding-left: 24px;
}

.why-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: calc(100% - 6px);
  background: var(--yellow);
}

.why-item-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.9rem;
  color: #5a6e82;
  line-height: 1.7;
}

/* ── FAQ ── */
#faq {
  background: var(--white);
  padding: 4rem 0;
}

.faq-grid {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  text-align: left;
  gap: 1rem;
}

.faq-question:hover {
  color: #1a3a0d;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.2rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── CONTACT ── */
#contact {
  background: var(--navy2);
  padding: 96px 40px;
}

#contact .section-title {
  color: var(--white);
}

#contact .section-tag {
  color: var(--yellow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
  align-items: stretch;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--yellow);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 28px;
  margin-bottom: 8px;
  display: block;
}

.contact-map-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  min-height: 280px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-map-wrapper:hover {
  border-color: rgba(255, 209, 0, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.map-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 209, 0, 0.15);
  border: 2px solid transparent;
  width: 100%;
  justify-content: center;
}

.map-button:hover {
  background: var(--yellow2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 209, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
}

.map-button:active {
  transform: translateY(0);
}

/* ── FOOTER ── */
footer {
  background: #060d1a;
  padding: 56px 40px 0;
  font-family: var(--font-body);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.footer-flags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-flags a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 0, 0.65);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.footer-flags img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand span {
  color: var(--yellow);
}

.footer-tagline {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}

.footer-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 40px 0;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-col strong {
  color: rgba(255, 255, 255, 0.85);
}

.footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 36px;
}

.copyright-main {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.9;
  margin-bottom: 14px;
}

.copyright-main span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.copyright-main strong {
  color: rgba(255, 255, 255, 0.55);
}

.ai-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  line-height: 1.8;
}

.ai-meta a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.ai-meta a:hover {
  color: var(--yellow);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .menu-overlay {
    display: block;
  }

  .cta-btn {
    display: none !important;
  }

  .hero-content {
    padding: 0 32px;
  }

  .hero-dots {
    left: 32px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-flags {
    gap: 6px;
  }

  section {
    padding: 64px 24px;
  }

  .contact-map-wrapper {
    min-height: 200px;
    padding: 30px 20px;
  }

  .map-button {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 600px) {
  .footer-flags a {
    width: 30px;
    height: 21px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 0;
  }

  .contact-map-wrapper {
    padding: 24px 16px;
    min-height: 160px;
  }

  .map-button {
    padding: 14px 24px;
    font-size: 0.9rem;
    max-width: 280px;
  }
}
