/* =========================================
   CSS Variables
   ========================================= */
:root {
  --color-bg-dark: #0D0D0D;
  --color-bg-mid: #1A1A1A;
  --color-bg-light: #F5F5F5;
  --color-white: #FFFFFF;
  --color-accent: #C8102E;        /* Primary red */
  --color-accent-hover: #A00D24;  /* Darker red for hover */
  --color-text-primary: #0D0D0D;
  --color-text-muted: #777777;
  --color-text-on-dark: #AAAAAA;
  --color-border: #E0E0E0;
  --color-border-dark: #2A2A2A;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.1;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }

@media (min-width: 768px) {
  h1 { font-size: 80px; }
  h2 { font-size: 52px; }
  h3 { font-size: 32px; }
}

@media (min-width: 1200px) {
  h1 { font-size: 96px; line-height: 0.95; }
  h2 { font-size: 64px; }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 120px 0;
  }
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-muted { color: var(--color-text-on-dark); }

/* Section Labels */
.section-label {
  display: inline-block;
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-label.dark {
  color: var(--color-accent);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(200, 16, 46, 0.2);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-ghost:hover {
  background-color: var(--color-white);
  color: var(--color-bg-dark);
}

.btn-ghost.dark-text {
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}

.btn-ghost.dark-text:hover {
  background-color: var(--color-text-primary);
  color: var(--color-white);
}

/* =========================================
   Navigation
   ========================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  background-color: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(8px);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo:hover {
  color: var(--color-white);
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    position: relative;
  }
  
  .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    opacity: 0.96;
    padding: 10px 0;
    line-height: 1.2;
  }
  
  .nav-link:hover {
    opacity: 1;
    color: var(--color-white);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after,
  .nav-item.dropdown-open .nav-link::after {
    width: 100%;
  }

  .nav-caret {
    font-size: 11px;
    opacity: 0.9;
    transition: transform 0.25s ease;
  }

  .nav-item.has-dropdown:hover .nav-caret,
  .nav-item.dropdown-open .nav-caret {
    transform: rotate(180deg);
  }

  .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(980px, 92vw);
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 1200;
    padding: 28px 20px 20px;
  }

  .nav-item.has-dropdown:hover > .mega-dropdown,
  .nav-item.dropdown-open > .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px 22px;
    max-height: 68vh;
    overflow-y: auto;
    padding-right: 4px;
  }

  .mega-column {
    min-width: 0;
  }

  .mega-group-title {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0d0d0d;
    margin-bottom: 9px;
  }

  .mega-group-title:hover {
    color: var(--color-accent);
  }

  .mega-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
  }

  .mega-sub-list a {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: #4b4b4b;
    padding: 2px 0;
  }

  .mega-sub-list a:hover {
    color: var(--color-accent);
  }
}

/* Mobile Nav */
.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-dark);
  z-index: 999;
  display: block;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  padding: 90px 20px 30px;
}

.mobile-nav-overlay.open {
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.mobile-menu-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.25;
}

.mobile-submenu-toggle {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px 14px;
}

.mobile-menu-item.open .mobile-submenu {
  display: block;
}

.mobile-submenu-group + .mobile-submenu-group {
  margin-top: 12px;
}

.mobile-submenu-group-title {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.mobile-submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.mobile-submenu-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.mobile-submenu-list a:hover,
.mobile-submenu-group-title:hover,
.mobile-menu-link:hover {
  color: #fff;
}

.mobile-nav-links .btn {
  font-family: var(--font-body);
  font-size: 18px;
  margin-top: 20px;
}

/* =========================================
   Hero Slider Section
   ========================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #0D0D0D;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.slide-bg-placeholder {
  position: absolute;
  inset: 0;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.slide-bg-placeholder::after {
  content: attr(data-label);
  color: #444;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #333;
  padding: 12px 24px;
}

/* Red corner accents on placeholder */
.slide-bg-placeholder::before {
  content: '';
  position: absolute;
  top: 40px; right: 40px;
  width: 60px; height: 60px;
  border-top: 3px solid var(--color-accent);
  border-right: 3px solid var(--color-accent);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.slide-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.slide-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 700px;
}

.slide-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #AAAAAA;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.slide-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.slider-prev { left: 32px; }
.slider-next { right: 32px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255,255,255,0.4);
  left: auto;
  transform: none;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  margin-bottom: 0;
}
.scroll-dot {
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Mobile */
@media (max-width: 768px) {
  .slide-content { padding: 0 24px; }
  .slider-arrow { display: none; }
  .scroll-indicator { display: none; }
  .slider-dots { bottom: 24px; }
}

/* =========================================
   Marquee Ticker
   ========================================= */
.marquee-section {
  background: var(--color-bg-dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
}
.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.check-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

/* Placeholders */
.placeholder-box {
  background-color: var(--color-bg-mid);
  border: 1px solid var(--color-border-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  width: 100%;
}

.placeholder-box.light {
  background-color: #EAEAEA;
  border-color: #D0D0D0;
}

.placeholder-box span {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-text-on-dark);
  letter-spacing: 2px;
  text-align: center;
  padding: 20px;
}

.placeholder-box.light span {
  color: var(--color-text-muted);
}

.hero-image .placeholder-box {
  aspect-ratio: 3/4;
}

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--color-accent);
  border-style: solid;
}

.top-left { top: 0; left: 0; border-width: 2px 0 0 2px; }
.top-right { top: 0; right: 0; border-width: 2px 2px 0 0; }
.bottom-left { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.bottom-right { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* =========================================
   Why Us Section
   ========================================= */
.why-us h2 {
  max-width: 600px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  padding: 32px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text-muted);
}

.cta-feature-card {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  border-color: var(--color-border-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta-feature-card h3 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-feature-card p {
  color: var(--color-text-on-dark);
}

@media (min-width: 768px) {
  .cta-feature-card {
    grid-column: span 2;
  }
}

/* =========================================
   Products Section
   ========================================= */
.products {
  background-color: var(--color-bg-light);
}

.products h2 {
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-img {
  margin-bottom: 24px;
  aspect-ratio: 4/5;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img {
  transform: scale(1.02);
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 700;
}

.product-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.explore-link {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.explore-link:hover {
  color: var(--color-accent-hover);
}

/* =========================================
   Process Section
   ========================================= */
.dark-section {
  background-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  position: relative;
  padding: 40px;
  background-color: var(--color-bg-mid);
  border: 1px solid var(--color-border-dark);
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Simulate background image with a texture or color until real image */
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 10px);
  z-index: 0;
  opacity: 0.5;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.process-card > * {
  position: relative;
  z-index: 1;
}

.process-card .step-num {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 20px;
}

.process-card h3 {
  color: var(--color-white);
  font-size: 24px;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 15px;
  color: var(--color-text-on-dark);
}

/* =========================================
   OEM Section
   ========================================= */
.oem {
  background-color: var(--color-white);
}

.oem-split {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .oem-split {
    grid-template-columns: 40% 60%;
  }
}

.oem-dark {
  background-color: var(--color-bg-mid);
  min-height: 300px;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 10px);
}

.oem-content {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .oem-content {
    padding-left: 80px;
    padding-right: 80px;
    max-width: 800px;
  }
}

.oem-content h2 {
  margin-bottom: 30px;
}

.oem-content p {
  margin-bottom: 20px;
}

.oem-content ul {
  margin-bottom: 30px;
}

.oem-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.oem-content li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* =========================================
   Stats Section
   ========================================= */
.stats {
  background-color: var(--color-accent);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .stat-num {
    font-size: 80px;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* =========================================
   Shipping Section
   ========================================= */
.shipping {
  background-color: var(--color-bg-light);
  text-align: center;
}

.shipping .subtext {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

.country-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.country-card {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  border: 1px solid var(--color-border);
}

.country-card:hover {
  transform: translateY(-5px);
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.country-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.6);
  transition: background 0.3s ease;
}

.country-card:hover .country-overlay {
  background: rgba(13, 13, 13, 0.4);
}

.country-card h3 {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-size: 28px;
  margin: 0;
  text-align: center;
  letter-spacing: 1px;
}

.country-card.cta-card {
  background-color: var(--color-accent);
  background-image: none;
  border-color: var(--color-accent);
}

.country-card.cta-card:hover {
  background-color: var(--color-accent-hover);
}

.country-card.cta-card h3 {
  font-size: 24px;
}

.cta-text {
  font-size: 16px;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.partner-badge {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-text-muted);
  letter-spacing: 2px;
}

/* =========================================
   Quality Section
   ========================================= */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 768px) {
  .check-list {
    grid-template-columns: 1fr 1fr;
  }
}

.check-list li {
  color: var(--color-text-primary);
  font-weight: 500;
}

.certifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cert-box {
  border: 1px solid var(--color-border);
  padding: 30px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-box span {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .testimonial-grid {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 20px;
  }
  
  .testimonial-card {
    min-width: 350px;
  }
}

.testimonial-card {
  background-color: var(--color-bg-mid);
  padding: 40px 30px;
  border-left: 2px solid var(--color-accent);
  flex: 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

/* =========================================
   Testimonials Section
   ========================================= */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

#faqs .section-header,
#faqs .section-label,
#faqs h2 {
  text-align: center;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header .icon {
  color: var(--color-accent);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding-bottom: 24px;
  color: var(--color-text-muted);
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
  background-color: var(--color-bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.info-item .icon {
  font-size: 24px;
}

.info-item p {
  font-size: 18px;
  font-weight: 500;
}

.contact-form {
  background-color: var(--color-white);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

input, select, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-light);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

textarea {
  resize: vertical;
  margin-bottom: 20px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 18px;
  text-transform: none;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: var(--color-text-on-dark);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 15px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* =========================================
   Animations
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
