html, body {
  width: 100%;
  overflow-x: hidden;
  background: #111111; 
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}

.form-group input {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #1a1a1a;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.25);
}

/* =========================
   CONTACT INFO SECTION
========================= */
.contact-info-section {
  background: #111111;
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-info-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* =========================
   WORKING HOURS
========================= */
.working-hours-box {
  color: #cccccc;
}

.working-title {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.working-divider {
  width: 80px;
  height: 3px;
  background: #c62828;
  margin: 0 auto 40px auto;
}

.working-description {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.7;
  color: #b5b5b5;
}

.working-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  font-size: 1.1rem;
}

/* =========================
   MAP
========================= */
.map-box {
  width: 100%;
  height: 100%;
}

.map-box iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 16px;
  filter: grayscale(100%) contrast(1.1);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1000px) {
  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }

  .map-box iframe {
    height: 400px;
  }
}


/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  background: #111111;
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h3 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-header p {
  color: #b5b5b5;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #cccccc;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 16px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c62828;
  box-shadow: 0 0 0 2px rgba(198,40,40,0.2);
}

/* BUTTON */
.contact-btn {
  align-self: center;
  padding: 14px 40px;
  background: #c62828;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  background: #a91f1f;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .contact-container {
    padding: 0 20px;
  }

  .contact-header h3 {
    font-size: 1.8rem;
  }
}

/* =========================
   ABOUT INTRO (MATCH SITE STYLE)
========================= */

.about-intro {
  background: #111111; /* same as your sections */
  padding: 160px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.about-intro-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* RED SMALL TITLE */
.about-intro-subtitle {
  display: block;
  color: #c62828; /* your red */
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* BIG BOLD HEADLINE */
.about-intro-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff; /* white like your headings */
  margin-bottom: 50px;
}

/* PARAGRAPH */
.about-intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #b5b5b5; /* same grey used across site */
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-intro {
    padding: 120px 0;
  }

  .about-intro-title {
    font-size: 2.8rem;
  }

  .about-intro-text {
    font-size: 1rem;
  }

  .about-intro-container {
    padding: 0 20px;
  }
}


/* =========================
   ABOUT PAGE STRUCTURE
========================= */

.about-section {
  background: #111111;
  padding: 140px 0;
}

.about-row {
  max-width: 1300px;
  margin: 0 auto 120px auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Reverse layout */
.about-row.reverse {
  direction: rtl;
}

.about-row.reverse .about-text {
  direction: ltr;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* TEXT */
.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #cccccc;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    padding: 0 20px;
  }

  .about-row.reverse {
    direction: ltr;
  }

  .about-text p {
    font-size: 1.05rem;
  }
}



/* =========================
   MOBILE ONLY
========================= */
@media (max-width: 1000px) {
  /* STOP logo overflow */
  .header-logo img {
    height: 64px;
    margin-top: 0;
  }

  /* STOP absolute images breaking layout */
  .img-front {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
  }

  .img-back {
    width: 100%;
  }

  .nav-masthead {
    display: none;
  }

  /* Show burger */
  .burger {
    display: flex;
    margin-left: auto;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }

  .feature-card {
    max-width: 100%;
  }

  .feature-image {
    max-width: 100%;
  }
  /* HEADER */
  .site-header {
    height: 64px;
    background: rgba(14,14,14,0.95);
  }

  /* LOGO */
  .header-logo img {
    height: 56px;
    margin-top: 0;
  }

  /* BURGER BUTTON */
  .burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 500;
  }

  .burger span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* BURGER ACTIVE */
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* MOBILE NAV */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(14,14,14,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav .nav-link {
    font-size: 1.6rem;
    border: none;
    background: none;
  }

  /* HIDE DESKTOP NAV LOOK */
  .nav-masthead {
    gap: 0;
  }

  /* ===== INFO IMAGES STACK ===== */
  .info-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .info-images {
    position: relative;
  }

  .img-front {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
  }

  /* ===== FEATURES STACK ===== */
  .features-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* ===== FOOTER STACK ===== */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-text {
    max-width: 100%;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }
}

/* HIDE BURGER ON DESKTOP */
@media (min-width: 1000px) {
  .burger {
    display: none;
  }
}

.products-hero {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 120px;

  background-image: url("/css/img/products-header.jpg");
  background-size: cover;
  background-position: center;
}

/* DARK OVERLAY */
.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* CONTENT */
.products-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 0 30px;
}

/* TITLE */
.products-hero-content h2 {
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 18px;
}

/* LINE */
.products-divider {
  width: 70px;
  height: 3px;
  background: #c62828;
  margin-bottom: 22px;
  border-radius: 2px;
}

/* SUBTITLE */
.products-hero-content p {
  font-size: 1.15rem;
  color: #f8f9fa;
  max-width: 700px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .products-hero {
    height: 320px;
    margin-bottom: 80px;
  }

  .products-hero-content h2 {
    font-size: 2.2rem;
  }
}

.products-section {
  background: #0f0f0f;
  padding: 140px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.products-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER */
.products-header {
  text-align: center;
  margin-bottom: 100px;
}

.products-header h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.products-header p {
  font-size: 1.15rem;
  color: #b5b5b5;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

/* CARD */
.product-card {
  color: #cccccc;
  text-align: center;
}

/* IMAGE */
.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 26px;
  background: #1a1a1a;
}

.product-image img {
  width: 107%;;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER */
.product-card:hover img {
  transform: scale(1.08);
}

/* TITLE */
.product-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 14px;
}

/* TEXT */
.product-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b5b5b5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-header h2 {
    font-size: 2.2rem;
  }
}


.page-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity, transform;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}


.site-header.scrolled {
  background: #0e0e0e;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.site-header.scrolled .header-logo img {
  height: 64px;  
  margin-top: 0;
}

.nav-masthead {
  display: flex;
  gap: 18px;
}

.nav-masthead .nav-link {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.nav-masthead .nav-link:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.nav-masthead .active {
  background: #c62828;
  border-color: #c62828;
}


/* =========================
   HEADER BUTTON LINKS
========================= */
.site-header .nav-link {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
  transition: 
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease;
}

/* Hover */
.site-header .nav-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

/* Active page */
.site-header .nav-link.active {
  background: #c62828;
  border-color: #c62828;
  color: #ffffff;
}


@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-logo {
    height: 60px;
  }
}


/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0e0e0e;
  padding: 100px 0 0;
  color: #cccccc;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* LAYOUT */
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
}

/* LOGO */
.footer-logo {
  height: 80px;
  margin-bottom: 20px;
}

/* TEXT */
.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b5b5b5;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #c62828;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 80px;
  padding: 25px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
}


/* FEATURE IMAGE CONTAINER (REQUIRED) */
.feature-image {
  width: 100%;
  aspect-ratio: 1 / 1;   /* square card */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 28px;
  background: #222;     /* prevents collapse before image loads */
}

/* IMAGE */
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Info section: drop DOWN */
.info-section .reveal {
  transform: translateY(40px);
}

/* Features section: drop DOWN */
.features-section .reveal {
  transform: translateY(40px);
}

/* Active state */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.features-section .feature-card {
  opacity: 1;
}

/* Animation state still applies */
.features-section .feature-card.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.features-section .feature-card.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .feature-icon {
    width: 100px;
    height: 100px;
  }
}

.features-section {
  background: #111111; /* same as info-section */
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.features-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  text-align: center;
}

/* =========================
   FEATURE CARD
========================= */
.feature-card {
  color: #cccccc;
}


/* HEADING */
.feature-card h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 16px;
}

/* TEXT */
.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b5b5b5;
  margin-bottom: 30px;
}

/* BUTTON (MATCH INFO BUTTON STYLE) */
.feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #c62828;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.feature-btn:hover {
  background: #a91f1f;
  transform: translateY(-2px);
}




.img-front.reveal,
.img-back.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.img-front.reveal.active,
.img-back.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* Delay helpers */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}


/* =========================
   SECTION
========================= */
.info-section {
  padding: 120px 0;
  background: #111111; /* dark premium background */
}

/* =========================
   LAYOUT
========================= */
.info-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* =========================
   TEXT
========================= */
.info-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #cccccc; /* soft white for readability */
  margin-bottom: 40px;
}

/* =========================
   BUTTON
========================= */
.info-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #c62828; /* chili red */
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.info-btn:hover {
  background: #a91f1f;
}

/* =========================
   IMAGE COLLAGE
========================= */
.info-images {
  position: relative;
}

.info-images img {
  display: block;
  border-radius: 4px;
}

/* BACK IMAGE */
.img-back {
  width: 100%;
}

/* FRONT IMAGE (OVERLAP) */
.img-front {
  position: absolute;
  bottom: -66px;
  left: -66px;
  width: 35%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* =========================
   HEADER
========================= */
/* =========================
   FIXED HEADER
========================= */
.site-header {
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;               /* STABLE */
  z-index: 300;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;   /* IMPORTANT */
}




/* LOGO */

.header-logo img {
    height: 200px;
    margin-top: 116px;
    transform-origin: left center;
    transition: transform 0.35s, height 0.35s;
}


/* =========================
   NAVIGATION
========================= */
.nav-left,
.nav-right {
  display: flex;
  gap: 24px;
  font-size: 18px;
}

.nav-masthead .nav-link {
    padding: -0.75rem 0;
    font-weight: 500;
    color: rgb(255 255 255);
    background-color: #ee0c0c;
    border-bottom: 0.25rem solid transparent;
    margin: 10px;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1.5rem;
}

.nav-masthead .active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .header-logo img {
    height: 64px;
    margin-top: 0px;
  }

  .info-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .img-front {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 1000px) {

  .features-container {
    grid-template-columns: 1fr !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}
