:root {
  --red: #e53935;
  --dark: #111;
  --gray: #666;
  --light: #f9f9f9;
  --font-sans: "Montserrat", sans-serif;
  --font-serif: "Playfair Display", serif;
  --header-height: 80px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  background: var(--light);
  color: var(--dark);
  padding-top: var(--header-height); /* account for fixed header height */
}

/* Arabic RTL support */
body.rtl {
  direction: rtl;
  text-align: right;
}
body.rtl .nav,
body.rtl .hero-content,
body.rtl .header-actions {
  direction: rtl;
  flex-direction: row-reverse;
}


/******* Custom Scrollbar **********/

/* WebKit Browsers (Chrome, Edge, Safari, Opera)*/
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red), #ff6a4d);
  border: 2px solid var(--light);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--red), #ff6a4d);
}

/* Firefox */
@supports (scrollbar-color: var(--red)) {
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--light);
  }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  height: 80px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 65px;
  margin: auto 0;
  margin-right: auto;
}
.nav {
  display: flex;
  gap: 30px;
  margin: 180px;
}
.nav a {
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.nav a:hover {
  color: var(--red);
}
.nav a.active {
  color: var(--red);
  font-weight: 600;
}
.nav a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--red);
  margin-top: 6px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
/* Online Shop Button */
.header-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff6a4d);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease;
}
.header-shop-btn i {
  font-size: 14px;
}
.header-shop-btn:hover {
  background: linear-gradient(200deg, var(--red), #ff6a4d);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .header-shop-btn {
    display: none;
  }
  .logo {
    height: 45px;
    margin: 0;
  }
  .header-inner {
    height: 75px;
    padding: 0 16px;
  }
  :root {
    --header-height: 75px;
  }
}

/* LANGUAGE */

/* Hide Google Translate UI completely */
body > .skiptranslate,
.gskiptranslate,.goog-te-gadget span, div#goog-gt- {
  display: none !important;
}

.goog-logo-link,
.goog-te-gadget,
#goog-gt-tt,
.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}
body {
  top: 0 !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  visibility: hidden !important;
}
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
  background: none !important;
  box-shadow: none !important;
  box-sizing: hidden !important;
  -webkit-box-sizing: none !important;
  -moz-box-sizing: none !important;
  position: hidden !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
  display: none !important;
  visibility: hidden !important;
}

/* Prevent page jump */
html {
  margin-top: 0 !important;
}

.lang-switch {
  position: relative;
  cursor: pointer;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}
.lang-current i {
  font-size: 12px;
  margin-top: 1px;
  transition: transform 0.35s ease;
}
.lang-switch.open .lang-current i {
  transform: rotate(180deg);
}

.lang-current svg {
  width: 20px;
  height: 12px;
}
.lang-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: none;
}
.lang-switch.open .lang-menu {
  display: block;
}
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  font-size: 15px;
}

/* Hover effect */
.lang-menu button:hover {
  background: linear-gradient(135deg, var(--red), #ff6a4d);
  color: #fff;
  border-radius: 10px;
  
}

/* Active language */
.lang-menu button.active {
  background: rgba(239,67,35,0.12);
  color: var(--red);
}

.lang-menu svg {
  width: 20px;
  height: 12px;
}

/* RTL support */
body.rtl .lang-menu {
  right: auto;
  left: 0;
}

/* MOBILE */
.open-main-nav {
  position: absolute;
  top: 15px;
  padding-top: 20px;
  right: 15px;
  z-index: 1000;
  background: none;
  border: 0;
  cursor: pointer;
}
.open-main-nav:focus {
  outline: none;
}
.open-main-nav .burger {
  margin: 0;
}
.burger {
  position: relative;
  display: block;
  width: 28px;
  height: 4px;
  margin: 0 auto;
  background: var(--red);
  transform: skew(5deg);
  transition: all 0.275s;
}
.burger:after,
.burger:before {
  content: "";
  display: block;
  height: 100%;
  background: var(--red);
  transition: all 0.275s;
}
.burger a {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
}

.burger:after {
  transform: translateY(-12px) translateX(-2px) skew(-20deg);
}

.burger:before {
  transform: translateY(-16px) skew(-10deg);
}

/* Toggle State part */
.is-open .burger {
  transform: skew(5deg) translateY(-8px) rotate(-45deg);
}

.is-open .burger:before {
  transform: translateY(0px) skew(-10deg) rotate(75deg);
}

.is-open .burger:after {
  transform: translateY(-12px) translateX(10px) skew(-20deg);
  opacity: 0;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 14px;
  text-decoration: none;
  color: var(--dark);
  border-top: 1px solid #eee;
}
.mobile-nav a:hover {
  background: var(--red);
  color: var(--light);
}
.open-main-nav {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .lang-switch {
    display: block;
    margin-left: 16px;
  }
  .burger {
    display: block;
  }
  .open-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px; /* touch-friendly */
    width: 44px;
  }
  .mobile-nav.open {
    display: flex;
  }
  .burger {
    display: block;
  }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    top: 78px;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  .open-main-nav {
    display: block;
  }
}

@media (max-width: 600px) {
  .brand-intro h2 {
    font-size: 24px;
  }
  .product-showcase .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .made-germany .two-col {
    flex-direction: column;
  }
  .product-carousel {
    overflow-x: scroll;
  }
  .product-card {
    min-width: 200px;
  }
}

/* ========= Hero Slider Styles ========== */

.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: #000;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  will-change:auto;
}
.hero-slider,
.hero-slider *,
.hero-track {
  direction: ltr !important;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 560px;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--red);
}

.hero-content p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 34px;
  color: #eeeeee;
}

/* Buttons */
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

.hero-btn.outline {
  background: transparent;
  border: 2px solid #fff;
}

.hero-btn.outline:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--red);
  font-size: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}
.hero-nav {
  display: flex;
  justify-content: center;
}

.hero-nav:hover {
  background: var(--red);
  color: #fff;
}

.hero-nav.prev {
  left: 20px;
}

.hero-nav.next {
  right: 20px;
}

/* Pagination Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--red);
  border-color: var(--red);
}

/* Mobile */
@media (max-width: 991px) {
  .hero-slider {
    height: calc(72vh - var(--header-height));
  }

  .hero-content {
    left: 0;
    padding: 0 20px;
    text-align: center;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-nav {
    display: none;
  }
}

/* ADDITIONAL STYLES CAN BE ADDED BELOW */
/* ================= COMMON ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px;
}
h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 20px;
}
p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
}
.btn {
  background: white;
  color: var(--red);
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline {
  border: 1px solid var(--red);
  color: var(--red);
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
  margin: 20px auto;
}
.btn-text {
  color: var(--red);
  text-decoration: none;
  font-size: 14px;
}
.btn:hover {
  background: var(--red);
  color: white;
}
.btn-primary:hover {
  background: var(--red);
  color: white;
}
.btn-outline:hover {
  background: var(--red);
  color: white;
}
.btn-text {
  color: var(--red);
  text-decoration: none;
  font-size: 14px;
}

/* ================= BRAND INTRO ================= */
.brand-intro {
  background: white;
  text-align: left;
  padding: 40px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.visual-box {
  height: 320px;
}
.visual-box img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.brand-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .brand-intro h2 {
    font-size: 32px;
  }
}

/* ================= why choose ================= */
.why-choose {
  background: var(--red);
  text-align: center;
  padding: 25px 0;
  color: white;
}
.why-choose p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 40px; /* Combined margin properties */
  font-size: 18px;
  line-height: 1.7;
}
.why-choose .btn-group {
  display: inline-flex; /* KEY FIX */
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0 auto; /* centers the group as a unit */
}
.why-choose .btn-group .btn-primary {
  background: var(--light);
  color: var(--red);
}
.why-choose .btn-group .btn-primary:hover {
  background: var(--dark);
  color: white;
}
.why-choose .btn-group .btn-outline {
  background: var(--red);
  color: white;
  border: 2px solid white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.why-choose .btn-group .btn-outline:hover {
  background: black;
  color: var(--red);
  border-color: var(--dark);
}
.why-choose h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .why-choose {
    padding: 0;
  }
  .why-choose h2 {
    font-size: 28px;
  }
  .why-choose p {
    font-size: 16px;
    text-align: justify;
  }
  .why-choose .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .why-choose .btn-group a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ================= PRODUCT CAROUSEL ================= */

.product-showcase {
  padding: 80px 0;
  background: linear-gradient(120deg, rgba(229, 57, 53, 0.08), transparent);
}
:root {
  --gap: 16px;
  --visible: 4;
}
.product-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.section-head .btn-text {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--red);
}
.btn-text:hover {
  color: var(--dark);
}
/* ensure carousel doesn't cause body horizontal scroll on small screens */
.product-carousel {
  position: relative;
  overflow: hidden;
}
.product-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.38s ease;
  will-change: transform;
}
.product-card {
  flex: 0 0 calc((100% - (var(--gap) * (var(--visible) - 1))) / var(--visible));
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.product-img {
  height: 180px; /* slightly taller for better visuals */
  background: #f2f2f2;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 130%;
  height: 130%;
  object-fit: contain; /* VERY IMPORTANT */
}

.product-card h4 {
  margin: 6px 0 4px;
  font-size: 1rem;
}
.product-card p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  z-index: 20;
  pointer-events: none;
}
.carousel-controls button {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 15px;
  border-radius: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: all 0.2s ease;
}
.carousel-controls button {
  pointer-events: auto;
}
.carousel-controls button:hover {
  background: var(--red);
  color: white;
}
.carousel-controls button:disabled {
  opacity: 0.45;
  cursor: default;
}
.carousel-controls button i {
  font-size: 20px;
}

/* Responsive: change how many items are visible */
@media (max-width: 880px) {
  :root {
    --visible: 2;
  }
  .carousel-controls {
    right: 6px;
  }
  .product-card {
    min-width: 0;
  }
  .product-carousel {
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  .product-showcase .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .made-germany .two-col {
    flex-direction: column;
  }
  .product-carousel {
    overflow: hidden;
  }
  .product-card {
    min-width: 0;
  }
  .carousel-controls {
    right: 0;
    left: 0;
  }
  :root {
    --visible: 1;
  }
  .carousel-controls {
    right: 0;
    left: 0;
  }
  .product-card {
    min-width: 0;
  }
  .product-carousel {
    overflow: hidden;
  }
}

/* ================= MADE IN GERMANY ================= */
.made-germany {
  background: white;
}
.visual-box {
  height: 320px;
  width: 100%;
  background: linear-gradient(120deg, rgba(229, 57, 53, 0.08), transparent);
  overflow: hidden;
  border-radius: 20px;
}
.visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.made-germany .visual-box {
  height: 380px;
}

@media (max-width: 900px) {
  .made-germany .two-col {
    flex-direction: column;
  }
  .made-germany .visual-box {
    height: 240px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col > .visual-box {
    grid-row: 1;
  }
  .two-col > *:not(.visual-box) {
    grid-row: 2;
  }
  .made-germany .visual-box {
    height: 240px;
  }
}
@media (max-width: 600px) {
  .made-germany .two-col {
    flex-direction: column;
  }
  .made-germany .visual-box {
    height: 200px;
  }
  .made-germany .two-col {
    flex-direction: column;
  }
  .visual-box {
    height: 200px;
  }
}

/* ================= CULTURE ================= */
.culture {
  position: relative;
  overflow: hidden;
  background-color: #111; /* fallback */
  --culture-overlay: rgba(0, 0, 0, 0.45); /* adjustable overlay color */
  color: white;
  text-align: center;
  padding: 80px 0;
}
.culture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--culture-bg, url("../images/home/culture-bg.webp"));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* creates parallax-like effect on desktop */
  transform: translateZ(0);
  will-change: transform;
  opacity: 0.95;
}
.culture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.815), var(--culture-overlay));
  pointer-events: none;
}
.culture .container {
  position: relative; /* keep text above the background */
  z-index: 2;
}
.culture h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}
.culture p {
  color: #ccc;
}

@media (max-width: 600px) {
  .culture {
    padding: 30px 0;
  }
  .culture h2 {
    font-size: 28px;
  }
  .culture p {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .culture::before {
    background-attachment: scroll;
    background-position: center top;
  }
}

/* ================= CONTACT CTA SECTION ================= */
.contact-cta-section {
  padding: 30px 24px;
  background: var(--red);
  text-align: center;
}
.wrapper-full {
  max-width: 1200px;
  margin: 0 auto;
}
.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: var(--red);
  padding: 40px;
  border-radius: 8px;
}
.cta-wrapper .details-wrapper {
  flex: 1;
  text-align: left;
}
.cta-wrapper .details-wrapper h2 {
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #fff;
  font-size: 32px;
}
.cta-wrapper .details-wrapper p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.cta-wrapper .cta-button {
  padding: 14px 32px;
  background-color: white;
  color: var(--red);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.cta-wrapper .cta-button:hover {
  background-color: var(--dark);
  color: white;
}

@media (max-width: 900px) {
  .contact-cta-section {
    padding: 30px 0;
  }
  .cta-wrapper {
    flex-direction: column;
    gap: 24px;
    text-align: left;
  }
  .cta-wrapper .details-wrapper { 
    text-align: center;
  }
  .cta-wrapper .details-wrapper h2 {
    font-size: 30px;
  }
  .cta-wrapper .details-wrapper p {
    font-size: 16px;
  }
  .cta-wrapper .cta-button {
    padding: 12px 24px; 
  }
}

/* ================= FOOTER ================= */
.site-footer {
  background: #111;
  color: #ccc;
}
.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  height: 10vh;
  margin-bottom: 20px;
}
.site-footer h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.site-footer p {
  font-size: 16px;
  line-height: 1.6;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}
.site-footer a:hover {
  color: var(--red);
}
.site-footer a:hover i {
  opacity: 1;
}
.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: #777;
}
.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col ul li a i {
  font-size: 12px;
  opacity: 0.7;
}
.footer-contact {
  display: flex;
  align-items: center;              /* keep icon + text inline */
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-contact i {
  color: var(--red);
  font-size: 16px;
  flex-shrink: 0;                   /* icon never collapses */
}
.footer-contact a {
  color: inherit;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 30px;
  }
  .footer-logo {
    margin-left: auto;
  }
  .footer-contact {
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
  }
  .footer-contact i {
    font-size: 15px;
    margin-top: 2px;
  }
  .footer-col ul li a {
    justify-content: left;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ================= MANUFACTURING PAGE ================= */

.page-hero {
  height: 50vh;
  background: linear-gradient(135deg, #b51f2c, #7c0e16);
  color: #fff;
  display: flex;
  align-items: center;
}
.page-hero-inner {
  width: 100%;
  text-align: center;
  padding: 0 20%;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  opacity: 0.9;
  color: #f5f5f5;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
.container.narrow {
  max-width: 900px;
  text-align: center;
  padding-top: 80px;
}
.container.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.manufacturing-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.manufacturing-section p {
  line-height: 1.7;
  font-size: 17px;
  color: #333;
}
.manufacturing-section.light {
  background: #f8f8f8;
}
.manufacturing-cards {
  padding: 20px 0 40px 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mfg-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.mfg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(205, 32, 38, 0.06), rgba(205, 32, 38, 0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mfg-card:hover::before {
  opacity: 1;
}
.mfg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}
.mfg-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.mfg-icon {
  width: 46px;
  height: 46px;
  background: rgba(205, 32, 38, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.mfg-icon i {
  font-size: 20px;
  color: var(--red);
  transition: transform 0.35s ease;
}
.mfg-card:hover .mfg-icon {
  background: var(--red);
}
.mfg-card:hover .mfg-icon i {
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.mfg-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}
.mfg-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  position: relative;
  z-index: 2;
}
.manufacturing-perfection {
  padding: 40px 0;
  background: #fff;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin-bottom: 80px;
}
.section-intro h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #111;
  margin: 0;
}
.section-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
  max-width: 760px;
}
.perfection-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.perfection-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
  align-items: center;
}
.perfection-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}
.perfection-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}
.perfection-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  max-width: 620px;
}
.perfection-item:nth-child(even) {
  grid-template-columns: 1fr 420px;
}
.perfection-item:nth-child(even) .perfection-img {
  order: 2;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .page-hero {
    height: 45vh;
  }
  .page-hero-inner {
    max-width: 900;
    padding: 20px;
  }
  .page-hero p{
    font-size: 16px;
  }
  .container {
    padding: 60px 16px;
  }
  .container.two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manufacturing-perfection {
    padding: 20px 0;
  }
  .manufacturing-icon {
    font-size: 72px;
  }
  .section-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-intro h2 {
    font-size: 30px;
  }
  .perfection-item,
  .perfection-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .perfection-img img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .perfection-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .perfection-image {
    order: 1;
    width: 100%;
  }
  .perfection-image img {
    border-radius: 12px;
  }
  .perfection-content {
    order: 2;
    width: 100%;
  }
  .perfection-content h3 {
    order: 2;
  }
  .perfection-content p {
    order: 3;
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .mfg-card img {
    height: 180px;
  }
}

/* ================= Product Page ================= */

/* DISCOVER VALK MODELS */
.valk-models {
  padding: 40px 0;
  background: #f8f8f8;
}

.valk-models-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.valk-models-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.valk-models-content {
  max-width: 820px;
}

.valk-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 14px;
}

.valk-models-content h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.valk-models-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* PRODUCT FEATURE ICON STRIP */
.product-features {
  background: #e5383510;
  padding: 40px 0;
}
.products-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.products-icon i {
  font-size: 28px;
  color: var(--red);
  display: block;
  line-height: 1;
  transition: transform 0.45s ease, color 0.35s ease;
  transform-origin: 50% 50%;
}
.feature-item:hover .products-icon {
  background: var(--red);
  box-shadow: 0 16px 40px rgba(239, 67, 35, 0.35);
}

.feature-item:hover .products-icon i {
  color: #fff;
  transform: rotate(-40deg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature-item {
  text-align: center;
  position: relative;
  padding-right: 40px;
}
.feature-item::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
}
.features-grid .feature-item:last-child::after {
  display: none;
}
.feature-item i {
  font-size: 30px;
  color: var(--red);
}
.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 14px;
  color: #666;
}

/* PRODUCT SERIES SECTIONS */
.product-series {
  padding: 40px 0;
  background: #f8f8f8;
}
.series-header {
  max-width: 720px;
  margin-bottom: 40px;
  text-align: left;
}

.series-header h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.series-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.series-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.series-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #444;
}

/* MINI SLIDER */
.mini-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.mini-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.mini-track {
  display: flex;
  width: 100%;
  object-fit: cover;
  transition: transform 0.40s ease;
}

.mini-track img {
  display: block;
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* NAVIGATION */
.mini-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e0e0e04d;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.mini-nav i {
  color: var(--red);
  font-size: 14px;
}

.mini-nav:hover {
  background: var(--red);
}

.mini-nav:hover i {
  color: #fff;
}

.mini-nav.prev { left: 8px; }
.mini-nav.next { right: 8px; }

/* PRODUCTS CTA */
.products-cta {
background: #0b0b0b;
color: #fff;
text-align: center;
padding: 90px 20px;
}

.products-cta h2 {
font-family: "Playfair Display", serif;
font-size: 36px;
margin-bottom: 14px;
}

.products-cta p {
max-width: 600px;
margin: 0 auto 30px;
font-size: 15px;
color: #d0d0d0;
}

.products-cta .cta-btn {
display: inline-block;
padding: 14px 36px;
border-radius: 30px;
border: 1px solid var(--red);
color: #fff;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
}

.products-cta .cta-btn:hover {
background: var(--red);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .valk-models-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .valk-models-content {
    max-width: 100%;
  }
  .valk-models-content h2 {
    font-size: 30px;
  }
  .feature-item {
    padding-right: 0;
  }
  .feature-item::after {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-series {
    padding: 10px 0;
  }
  .series-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .products-icon {
    width: 60px;
    height: 60px;
  }
  .products-icon i {
    font-size: 24px;
  }
  .series-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .valk-models {
    padding: 60px 0;
  }
  .valk-models-content h2 {
    font-size: 26px;
  }
  .valk-models-content p {
    font-size: 15px;
  }
  .products-hero h1 {
    font-size: 34px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= About Page ================= */

/* SECTIONS */
.about-section {
  padding: 40px 0;
}
.about-section.bg-light {
  background: #f8f8f8;
}
.about-section.bg-dark {
  background: #111;
  color: #fff;
}

/* SPLIT LAYOUT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.about-split.reverse .about-text {
  order: 2;
}
.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}
.about-section.bg-dark .about-text p {
  color: #ccc;
}
.about-visual img {
  width: 100%;
  border-radius: 12px;
}

/* VMV Section */
.vmv-section {
  padding: 60px 0;
  background: #e53935;
}
.vmv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 20px;
}
.vmv-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}
.vmv-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 12px;
  color: #030f27;
}
.vmv-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
/* ICON STYLE */
.vmv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(239, 67, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.vmv-icon i {
  font-size: 28px;
  color: var(--red);
  transition: all 0.4s ease;
}
/* HOVER ANIMATION */
.vmv-item:hover .vmv-icon {
  background: var(--red);
  transform: translateY(-6px) rotate(6deg);
  box-shadow: 0 12px 30px rgba(239, 67, 35, 0.35);
}
.vmv-item:hover .vmv-icon i {
  color: #ffffff;
}
/* OPTIONAL CARD LIFT (SUBTLE) */
.vmv-item:hover {
  transform: translateY(-4px);
}

/* CENTER SECTION */
.about-center {
  text-align: center;
  max-width: 900px;
}
.about-center h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.about-center p {
  font-size: 17px;
  line-height: 1.8;
  color: #ccc;
}

/* MG Section*/
.mg-section {
  padding: 60px 0;
}
.mg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}
.mg-split {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 50px;
  align-items: center;
}
.mg-visual img {
  width: 90%;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 40px;
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vmv-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mg-split{
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 60vh;
  }
  .about-hero h1 {
    font-size: 32px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-text h2,
  .about-center h2 {
    font-size: 28px;
  }
}

/* ================= Contact Page ================= */

.contact-page {
  padding: 80px 20px 40px;
  background: #f8f9fb;
}
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.contact-details {
  padding-right: 20px;
}
.contact-details h2 {
  font-size: 34px;
  margin-bottom: 12px;
}
.contact-details p {
  max-width: 420px;
  margin-bottom: 50px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #ffffff;
  margin-bottom: 22px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.contact-item::before {
  content: "";
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red), rgba(239,67,35,.6));
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 16px 0 0 16px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(239,67,35,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.contact-item .contact-icon {
  background: rgba(239,67,35,.08);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: all .4s ease;
}
.contact-item .contact-icon i {
  font-size: 21px;
}
.contact-icon i {
  color: var(--red);
  font-size: 20px;
}
.contact-item:hover .contact-icon {
  background: var(--red);
  transform: translateY(-4px) rotate(6deg);
  box-shadow: 0 18px 38px rgba(255, 32, 32, 0.096);
}
.contact-item:hover .contact-icon i {
  color: #fff;
}
.contact-item h4 {
  margin: 0;
  font-size: 15px;
}
.contact-item span,
.contact-item a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}
.contact-item a:hover {
  color: #e53935;
}

/* RIGHT */
.contact-form-box {
  max-width: 460px;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.contact-form-box h2 {
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
  position: relative;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.form-group .error {
  font-size: 12px;
  color: red;
  display: none;
  margin-top: 4px;
}
.form-success {
  display: none;
  margin-top: 20px;
  color: #1fa36b;
  font-size: 14px;
}
/* Honeypot field */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* MAP */
.contact-map {
  padding: 40px 0 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* Google iframe */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.1) contrast(1.05);
}

/* Glass Overlay Label */
.map-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.45);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
}

.map-overlay i {
  color: var(--red);
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-grid,
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-hero h1 {
    font-size: 32px;
  }
  .map-wrapper {
    height: 360px;
    border-radius: 18px;
  }
  .map-overlay {
    top: 16px;
    left: 16px;
    font-size: 13px;
  }
}

/* ================= 404 PAGE ================= */
body.error-page {
  margin: 0;
  padding: 0;
}
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:radial-gradient(circle at top, rgba(239,67,35,.08), transparent 45%),
             linear-gradient(180deg, #ffffff, #f7f7f7);
  padding: 40px 20px;
}

.box-404 {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 50px 42px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.6);
  animation: fadeUp 0.9s ease forwards;
}
.icon-404 {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), rgba(239,67,35,.75));
  color: #fff;
  font-size: 42px;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(239,67,35,.4);
  animation: pulse 2.2s infinite;
}
.box-404 h1 {
  font-size: 72px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.box-404 h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.box-404 p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
}

.actions-404 {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.actions-404 a {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all .35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-home {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(239,67,35,.35);
}
.btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(239,67,35,.45);
}
.btn-back {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}
.btn-back:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239,67,35,.4); }
  70% { box-shadow: 0 0 0 24px rgba(239,67,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,67,35,0); }
}

/* Mobile */
@media (max-width: 600px) {
  .box-404 {
    padding: 38px 24px;
  }
  .box-404 h1 {
    font-size: 56px;
  }
  .box-404 h2 {
    font-size: 20px;
  }
}