/* ==========================================
   No21 - Corporate Website Styles
   Pellet, Coal & Firewood Trading
   ========================================== */

/* CSS Variables */
:root {
  /* Colors */
  --color-primary: #1a2b4a;
  --color-secondary: #2d4a7c;
  --color-accent: #4a6fa5;
  --color-accent-hover: #3d5d8a;
  --color-white: #ffffff;
  --color-bg-light: #f8f9fa;
  --color-bg-section: #f1f3f5;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #888888;
  --color-border: #e0e0e0;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
  background: linear-gradient(135deg, #0f1a2e 0%, var(--color-primary) 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
}

.top-bar-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.top-bar-contact a svg {
  opacity: 0.7;
}

.top-bar-contact a:hover {
  color: var(--color-accent);
}

.top-bar-contact a:hover svg {
  opacity: 1;
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.25rem;
}

.top-bar-social {
  display: flex;
  gap: 0.5rem;
}

.top-bar-social a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.top-bar-social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.header.scrolled .top-bar {
  display: none;
}

.header.scrolled .logo-text {
  color: var(--color-primary);
}

.header.scrolled .nav-link {
  color: var(--color-text);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--color-primary);
}

.header.scrolled .menu-toggle span {
  background-color: var(--color-primary);
}

.header-main {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled .header-main {
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-normal);
  letter-spacing: 2px;
}

.logo-text span {
  font-weight: 800;
  background: linear-gradient(135deg, #6b9fd4 0%, #a8c8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-normal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-normal);
}

/* ==========================================
   HERO SLIDER SECTION
   ========================================== */
.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 620px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 43, 74, 0.72) 0%, rgba(45, 74, 124, 0.58) 50%, rgba(26, 43, 74, 0.72) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  max-width: 650px;
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.slider-arrow:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.slider-arrow.prev {
  left: 2rem;
}

.slider-arrow.next {
  right: 2rem;
}

/* Hero Text Animations */
.hero-content .hero-badge,
.hero-content h1,
.hero-content .hero-subtitle,
.hero-content .hero-buttons {
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-content .hero-badge {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.3s;
}

.hero-slide.active .hero-content h1 {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.5s;
}

.hero-slide.active .hero-content .hero-subtitle {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.7s;
}

.hero-slide.active .hero-content .hero-buttons {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Page Hero (for inner pages) */
.page-hero {
  padding: 10rem 0 4rem;
  background: url('../images/header.webp') center center / cover no-repeat;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 43, 74, 0.85) 0%, rgba(45, 74, 124, 0.75) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

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

.breadcrumb span {
  color: var(--color-white);
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
  padding: var(--spacing-3xl) 0;
}

.section-light {
  background-color: var(--color-bg-light);
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

/* ==========================================
   ABOUT PREVIEW (Home)
   ========================================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  height: 450px;
  background: url('../images/aboutlogistic.webp') center center / cover no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 43, 74, 0.1) 0%, rgba(45, 74, 124, 0.2) 100%);
}

.about-image-placeholder {
  display: none;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.75rem;
}

/* ==========================================
   PRODUCTS / SERVICES CARDS
   ========================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cards-grid-6 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.card-compact {
  padding: 1.5rem 1rem;
}

.card-compact .card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.card-compact .card-icon svg {
  width: 24px;
  height: 24px;
}

.card-compact h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card-compact p {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-text-light);
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  border-radius: 3px 3px 0 0;
  opacity: 0.5;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(26, 43, 74, 0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-xl);
  margin: 0 auto 1.75rem;
  box-shadow: 0 10px 30px rgba(26, 43, 74, 0.25);
  transition: all var(--transition-normal);
  position: relative;
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.card:hover .card-icon::after {
  opacity: 0.3;
}

.card-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  transition: color var(--transition-normal);
}

.card:hover h3 {
  color: var(--color-accent);
}

.card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 1.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-accent);
  transition: all var(--transition-normal);
}

.card-link:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  gap: 0.875rem;
  transform: translateX(4px);
}

/* Feature Cards (4 columns) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-light);
  border-radius: 50%;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ==========================================
   GLOBAL PRESENCE / MAP
   ========================================== */
.global-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.global-section .section-header {
  position: relative;
  z-index: 1;
}

.global-section .section-header h2 {
  color: var(--color-white);
}

.global-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.global-section .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.global-content {
  position: relative;
  z-index: 1;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.region-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.region-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.region-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.region-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.region-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.5;
}

.region-card h4 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.region-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.global-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.global-stat {
  text-align: center;
}

.global-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.global-stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* ==========================================
   PRODUCT PAGE SPECIFICS
   ========================================== */
.product-section {
  padding: 0;
}

.product-section:last-of-type {
  border-bottom: none;
}

/* Product Header - Full Width Banner Style */
.product-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.product-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.product-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.product-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.product-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
}

.product-header > div {
  flex: 1;
  position: relative;
  z-index: 1;
}

.product-header h2 {
  color: var(--color-white);
  margin-bottom: 0.375rem;
  font-size: 1.5rem;
}

.product-header p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Product Grid - Cards Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Product Info Cards */
.product-info {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow-md);
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section-light .product-info {
  background: var(--color-white);
}

.product-info h4 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-primary);
  background: var(--color-bg-light);
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--color-accent);
}

.product-info h4::before {
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  border-radius: 3px;
  flex-shrink: 0;
}

.product-info h4:not(:first-child) {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-light);
}

.product-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 1;
}

.product-info li {
  position: relative;
  padding: 0.875rem 1.25rem 0.875rem 2.75rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-info li:last-child {
  border-bottom: none;
}

.product-info li:hover {
  background: var(--color-bg-light);
}

.product-info li::before {
  content: '→';
  position: absolute;
  left: 1rem;
  top: 0.875rem;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.product-info li::after {
  display: none;
}

.product-info li strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Product Specs Card */
.product-specs {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow-md);
  border: none;
  overflow: hidden;
  height: fit-content;
}

.section-light .product-specs {
  background: var(--color-white);
}

.product-specs h4 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--color-bg-light);
  color: var(--color-primary);
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--color-secondary);
}

.product-specs h4::before {
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border-radius: 3px;
  flex-shrink: 0;
}

.product-specs h4.mt-3 {
  margin-top: 0;
  border-top: 1px solid var(--color-border);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
  font-size: 0.875rem;
}

.spec-row:hover {
  background: var(--color-bg-light);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--color-text-light);
}

.spec-value {
  font-weight: 600;
  color: var(--color-primary);
  text-align: right;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.service-block {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: none;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
}

.service-block:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-block h3 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(26, 43, 74, 0.3);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
}

.service-block > p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.service-list {
  margin-top: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: none;
  transition: all var(--transition-fast);
}

.service-list li:hover {
  padding-left: 0.5rem;
}

.service-list li:not(:last-child) {
  border-bottom: 1px dashed var(--color-border);
}

.service-list-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(74, 111, 165, 0.3);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-border) 100%);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: 600;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-md);
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--color-accent);
}

/* Map Container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  display: block;
}

/* Map Placeholder */
.map-placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-section) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  margin-top: 2rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--color-accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all var(--transition-normal);
}

.faq-question:hover {
  background: var(--color-bg-light);
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
  }

  .map-container iframe {
    height: 350px;
  }
}

/* ==========================================
   QUOTE PAGE
   ========================================== */
.quote-form-section {
  max-width: 800px;
  margin: 0 auto;
}

.quote-form {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section-title {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.checkbox-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

/* ==========================================
   ABOUT PAGE SPECIFICS
   ========================================== */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: var(--color-white);
  font-size: 1.5rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
}

.value-card h4 {
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--color-border);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-year {
  flex: 1;
  padding: 1rem;
}

.timeline-year span {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.timeline-content {
  flex: 1;
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-accent);
}

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .global-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  /* Top Bar */
  .top-bar {
    display: none;
  }

  /* Header */
  .header-main {
    background-color: rgba(26, 43, 74, 0.95);
  }

  .header.scrolled .header-main {
    background-color: var(--color-white);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-normal);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--color-primary);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1.5rem;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

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

  /* Hero Slider */
  .hero-slider {
    height: auto;
    min-height: 85vh;
    max-height: none;
    position: relative;
  }

  .hero-slides {
    position: relative;
    min-height: 85vh;
  }

  .hero-slide {
    min-height: 85vh;
  }

  .hero-slide-bg {
    min-height: 85vh;
  }

  .hero-slide-overlay {
    min-height: 85vh;
  }

  .hero-slide-content {
    padding-top: 80px;
    padding-bottom: 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 0.5rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.875rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-arrow.prev {
    left: 0.5rem;
  }

  .slider-arrow.next {
    right: 0.5rem;
  }

  .slider-dots {
    bottom: 1.5rem;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  /* Sections */
  .section {
    padding: var(--spacing-xl) 0;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    height: 300px;
    order: -1;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .card-compact {
    padding: 1.25rem 1rem;
  }

  .card-compact .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.875rem;
  }

  .card-compact .card-icon svg {
    width: 22px;
    height: 22px;
  }

  .card-compact h3 {
    font-size: 0.9rem;
  }

  .card-compact p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

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

  .regions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .global-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .global-stat {
    flex: 0 0 45%;
  }

  .global-stat-number {
    font-size: 2.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
  }

  .product-header h2 {
    font-size: 1.25rem;
  }

  .product-header p {
    font-size: 0.85rem;
  }

  .product-icon {
    width: 48px;
    height: 48px;
  }

  .product-icon svg {
    width: 22px;
    height: 22px;
  }

  .product-info h4 {
    font-size: 0.9rem;
    padding: 0.875rem 1rem;
  }

  .product-info h4::before {
    width: 8px;
    height: 8px;
  }

  .product-info li {
    padding: 0.75rem 1rem 0.75rem 2.25rem;
    font-size: 0.85rem;
  }

  .product-info li::before {
    left: 0.875rem;
  }

  .product-specs h4 {
    font-size: 0.9rem;
    padding: 0.875rem 1rem;
  }

  .product-specs h4::before {
    width: 8px;
    height: 8px;
  }

  .spec-row {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .product-cta {
    flex-direction: column;
    padding: 1.25rem;
  }

  .product-cta .btn {
    width: 100%;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-year {
    padding: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Quote Form */
  .quote-form {
    padding: 1.5rem;
  }

  .checkbox-group {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .stat-number {
    font-size: 2rem;
  }

  .regions-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.6rem;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .cards-grid-6 {
    grid-template-columns: 1fr;
  }

  .card-compact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
  }

  .card-compact .card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .card-compact .card-content {
    flex: 1;
  }

  .card-compact h3 {
    margin-bottom: 0.25rem;
  }

  .global-stat {
    flex: 0 0 100%;
  }

  .global-stat-number {
    font-size: 2rem;
  }
}

/* ==========================================
   FEATURED PRODUCTS (Homepage)
   ========================================== */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.featured-product-card {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
}

.featured-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.featured-product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-product-card:hover .featured-product-image img {
  transform: scale(1.05);
}

.featured-product-content {
  padding: 1.5rem;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.featured-product-content h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.featured-product-content p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition-fast);
}

.featured-product-card:hover .featured-link {
  gap: 0.25rem;
}

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

@media (max-width: 768px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--color-accent);
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

/* ==========================================
   PRODUCT DETAIL PAGES
   ========================================== */

/* Product Detail Grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-image-wrapper {
  position: relative;
}

.product-main-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.product-image-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  gap: 1rem;
}

.product-image-placeholder span {
  font-size: 0.875rem;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.product-info {
  padding: var(--spacing-md) 0;
}

.product-info h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.product-description {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Product Highlights */
.product-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
}

.highlight-item strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.highlight-item span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Product Types Grid */
.product-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-type-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.product-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-type-card.featured {
  border-color: var(--color-accent);
  position: relative;
}

.product-type-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-type-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-type-header h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.type-badge {
  background: var(--color-bg-section);
  color: var(--color-text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.type-badge.premium {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
}

.product-type-card > p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.type-features {
  list-style: none;
}

.type-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-text);
  font-size: 0.9rem;
}

.type-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}

/* Specifications Table */
.specs-table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.specs-table th,
.specs-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.specs-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.specs-table th:first-child {
  text-align: left;
}

.specs-table td {
  font-size: 0.9rem;
}

.specs-table td:first-child {
  font-weight: 500;
  color: var(--color-primary);
}

.specs-table tbody tr:hover {
  background: var(--color-bg-light);
}

.specs-table tbody tr:last-child td {
  border-bottom: none;
}

.specs-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.9rem;
  padding: 1rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

/* Specs Grid - Modern Table Cards */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.spec-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.spec-card h4 {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.spec-list {
  padding: 0;
}

.spec-card .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.spec-card .spec-row:last-child {
  border-bottom: none;
}

.spec-card .spec-row:hover {
  background: var(--color-bg-light);
}

.spec-card .spec-label {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.spec-card .spec-value {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  text-align: right;
}

.spec-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
}

.spec-card p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Packaging Grid */
.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.packaging-section h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.log-sizes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.log-size-item {
  background: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-accent);
}

.size-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.log-size-item p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* Size Range for Cards */
.size-range {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* Applications Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.application-item {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.application-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.application-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-white);
}

.application-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.application-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Shipping Options */
.shipping-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.shipping-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.shipping-card:hover {
  transform: translateY(-4px);
}

.shipping-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shipping-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-white);
}

.shipping-card h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.shipping-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.shipping-detail {
  display: inline-block;
  background: var(--color-bg-section);
  color: var(--color-accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Product Link Cards */
.product-link-card {
  text-decoration: none;
  display: block;
  transition: all var(--transition-normal);
}

.product-link-card:hover {
  transform: translateY(-6px);
}

.product-link-card .card-link {
  color: var(--color-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Mixed Wood Banner */
.mixed-wood-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.mixed-wood-content h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mixed-wood-content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* Features Grid (for firewood) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
}

.feature-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-item p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin: 0;
}

/* Product CTA in products.html */
.product-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-section) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  justify-content: center;
}

/* CTA Buttons Row */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Outline White Button */
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

/* Product Detail Responsive */
@media (max-width: 1024px) {
  .product-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shipping-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .packaging-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-highlights {
    grid-template-columns: 1fr;
  }

  .product-types-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .applications-grid {
    grid-template-columns: 1fr;
  }

  .shipping-options {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

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