/* ===================================================================
   Baristi Overseas - Premium Garment Manufacturing Website
   A World-Class Corporate Website Stylesheet
   =================================================================== */

/* ===================================================================
   CSS VARIABLES & ROOT SETTINGS
   =================================================================== */
:root {
  /* Color Theme - Luxury Manufacturing Palette */
  --color-primary: #071a3d;
  --color-secondary: #c79a3b;
  --color-accent: #f4f1ea;
  --color-dark: #0d0d0d;
  --color-light: #ffffff;
  --color-light-alt: #f8f8f8;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #e5e5e5;
  --color-border-dark: #2a2a2a;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --font-button: "Montserrat", sans-serif;

  /* Font Sizes */
  --fs-hero: clamp(2.5rem, 6.5vw, 4.5rem);
  --fs-h1: clamp(2.15rem, 4.5vw, 3.5rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.65rem);
  --fs-h3: clamp(1.35rem, 2.5vw, 1.8rem);
  --fs-h4: clamp(1.15rem, 1.8vw, 1.35rem);
  --fs-h5: clamp(0.95rem, 1.3vw, 1.15rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;

  /* Spacing (8px base) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 2.25rem;
  --space-2xl: 3.25rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1400px;
  --container-wide: 1600px;
  --header-height: 90px;
  --header-height-scroll: 70px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
  --transition-curve: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 8px 32px rgba(7, 26, 61, 0.3);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50%;
}

/* ===================================================================
   RESET & BASE STYLES
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-light);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* Selection */
::selection {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

/* ===================================================================
   PRELOADER
   =================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  margin-bottom: var(--space-lg);
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-light);
  letter-spacing: 0.15em;
  display: block;
}

.preloader-subtext {
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  font-weight: 500;
  color: var(--color-secondary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: var(--space-xs);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto var(--space-md);
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.preloader-percentage {
  font-family: var(--font-button);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-light);
  letter-spacing: 0.1em;
}

/* ===================================================================
   CUSTOM CURSOR
   =================================================================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s ease,
    width 0.3s ease,
    height 0.3s ease;
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s ease,
    width 0.3s ease,
    height 0.3s ease,
    border-color 0.3s ease;
  opacity: 0.5;
}

.cursor-dot.hover,
.cursor-outline.hover {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-dot.hover {
  background: var(--color-primary);
}

.cursor-outline.hover {
  border-color: var(--color-primary);
  opacity: 0.3;
}

/* Hide cursor on mobile */
@media (hover: none) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* ===================================================================
   SCROLL PROGRESS BAR
   =================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--color-secondary),
      var(--color-primary));
  z-index: 9997;
  transition: width 0.1s linear;
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

p {
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--color-secondary);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-button);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-dark);
  border: 2px solid var(--color-secondary);
}

.btn-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
}

.btn-outline:hover {
  background: var(--color-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: var(--color-light);
  color: var(--color-primary);
  border-color: var(--color-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: var(--fs-body);
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: var(--fs-tiny);
}

.btn-block {
  width: 100%;
}

/* ===================================================================
   CONTAINER & LAYOUT
   =================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-lg {
  padding: var(--space-2xl) 0;
}

/* ===================================================================
   SECTION HEADERS
   =================================================================== */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 3rem;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--color-secondary);
}

.section-label.light {
  color: var(--color-secondary);
}

.section-label.light::before {
  background: var(--color-secondary);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.section-title.light {
  color: var(--color-light);
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-description.light {
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.header.scrolled {
  height: var(--header-height-scroll);
  background: rgba(7, 26, 61, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
}

.logo-img {
  height: auto;
  max-height: 105px;
  object-fit: contain;
  margin-top: 15px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-light);
  letter-spacing: 0.05em;
}

.logo-divider {
  width: 2px;
  height: 24px;
  background: var(--color-secondary);
}

.logo-subtext {
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  font-weight: 500;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-button);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-sm) 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-medium);
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
  width: 100%;
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-medium);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
  background: var(--color-light-alt);
  color: var(--color-secondary);
  padding-left: var(--space-xl);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  background: var(--color-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.mega-menu-col h4 {
  font-family: var(--font-button);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.mega-menu-col ul li a {
  display: block;
  padding: var(--space-xs) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.mega-menu-col ul li a:hover {
  color: var(--color-secondary);
  padding-left: var(--space-xs);
}

.mega-menu-featured {
  background: var(--color-light-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.mega-menu-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.mega-menu-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.mega-menu-featured:hover .mega-menu-image img {
  transform: scale(1.05);
}

.mega-menu-featured h5 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.mega-menu-featured p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-cta {
  padding: 0.75rem 1.5rem;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.menu-bar {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: var(--color-light);
  transition: all var(--transition-fast);
}

.menu-bar:nth-child(1) {
  top: 12px;
}

.menu-bar:nth-child(2) {
  top: 19px;
}

.menu-bar:nth-child(3) {
  top: 26px;
}

.menu-toggle.active .menu-bar:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* ===================================================================
   MOBILE NAVIGATION
   =================================================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-primary);
  z-index: 999;
  transition: right var(--transition-slow);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-inner {
  padding: 100px var(--space-xl) var(--space-xl);
}

.mobile-nav-list {
  margin-bottom: var(--space-xl);
}

.mobile-nav-list>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-family: var(--font-button);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.has-submenu.active .mobile-submenu {
  max-height: 300px;
}

.mobile-submenu li a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
}

.mobile-submenu li a:hover {
  color: var(--color-secondary);
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-slide-active .hero-slide-bg img {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(7, 26, 61, 0.555) 0%,
      rgba(13, 13, 13, 0.7) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--space-xl);
}

.hero-text-wrapper {
  max-width: 800px;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-button);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide-active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease 0.3s;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  color: var(--color-light);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
}

.hero-slide-active .title-line {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.hero-slide-active .title-line:nth-child(1) {
  transition-delay: 0.5s;
}

.hero-slide-active .title-line:nth-child(2) {
  transition-delay: 0.7s;
}

.title-line.accent {
  color: var(--color-secondary);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide-active .hero-description {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease 0.9s;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide-active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease 1.1s;
}

/* Hero Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: var(--space-xl);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  z-index: 20;
  padding: 0 var(--space-xl);
}

.hero-slider-nav {
  display: flex;
  gap: var(--space-sm);
}

.hero-slider-prev,
.hero-slider-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-light);
  transition: all var(--transition-fast);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-dark);
}

.hero-slider .swiper-pagination {
  position: relative;
  width: auto;
}

.hero-slider .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0 4px;
  transition: all var(--transition-fast);
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--color-secondary);
  width: 50px;
}

/* Scroll Indicator */
.slide-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 20;
}

.slide-scroll-indicator span {
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-secondary), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}

/* ===================================================================
   COMPANY INTRODUCTION
   =================================================================== */
.company-intro {
  background: var(--color-light);
  padding-bottom: calc(var(--space-3xl) + 60px) !important;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.intro-content {
  padding-right: var(--space-xl);
}

.intro-text {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.intro-feature {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
}

.feature-text h4 {
  font-family: var(--font-button);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0;
}

/* Intro Visual */
.intro-visual {
  position: relative;
}

.intro-image-wrapper {
  position: relative;
}

.intro-image.main-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  align-self: stretch;
  min-height: 400px;
}

.intro-image.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image.secondary-image {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--color-light);
}

.intro-image.secondary-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.bg-light {
  background: var(--color-light-alt);
}

.bg-dark {
  background: var(--color-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      var(--color-primary),
      rgba(7, 26, 61, 0.8));
  border-radius: var(--radius-lg);
  color: var(--color-secondary);
  transition: all var(--transition-medium);
}

.feature-card:hover .feature-card-icon {
  background: var(--color-secondary);
  color: var(--color-dark);
  transform: rotateY(180deg);
}

.feature-card-title {
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.feature-card-text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================================
   MANUFACTURING PROCESS TIMELINE
   =================================================================== */
.manufacturing-process {
  background: var(--color-light);
  overflow: hidden;
}

.process-timeline {
  position: relative;
  padding: var(--space-sm) 0;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  transform: translateY(-50%);
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-secondary);
  transition: width 1s ease;
}

.process-timeline.animated .timeline-track::before {
  width: 100%;
}

.process-stages {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.process-stage {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-sm);
}

.stage-marker {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  background: var(--color-light);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition-medium);
}

.process-timeline.animated .stage-marker {
  border-color: var(--color-secondary);
}

.stage-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--color-primary);
}

.stage-content {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.process-stage:hover .stage-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.stage-title {
  font-family: var(--font-button);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.stage-text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===================================================================
   PRODUCT CATEGORIES
   =================================================================== */
.product-categories .section-label,
.product-categories .section-title,
.product-categories .section-description {
  color: var(--color-light);
}

.products-slider {
  padding: var(--space-md) 0 var(--space-xl);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-light);
}

.product-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 26, 61, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: var(--space-md);
  text-align: center;
}

.product-title {
  font-family: var(--font-button);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.product-count {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0;
}

.products-slider .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.2);
  height: 4px;
  border-radius: 2px;
}

.products-slider .swiper-scrollbar-drag {
  background: var(--color-secondary);
  border-radius: 2px;
}

/* ===================================================================
   STATISTICS SECTION
   =================================================================== */
.statistics-section {
  position: relative;
  padding: var(--space-4xl) 0;
}

.statistics-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.statistics-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statistics-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(7, 26, 61, 0.95) 0%,
      rgba(13, 13, 13, 0.9) 100%);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-medium);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-light);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-secondary);
}

.stat-label {
  font-family: var(--font-button);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-sm);
}

/* ===================================================================
   INFRASTRUCTURE SHOWCASE
   =================================================================== */
.infrastructure-showcase {
  background: var(--color-light);
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: var(--space-md);
}

.infra-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.infra-card.large {
  grid-row: span 2;
}

.infra-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.infra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.infra-card:hover .infra-image img {
  transform: scale(1.1);
}

.infra-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--color-light);
  transform: translateY(50%);
  transition: transform var(--transition-medium);
}

.infra-card:hover .infra-overlay {
  transform: translateY(0);
}

.infra-overlay h3 {
  font-family: var(--font-button);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: var(--space-xs);
}

.infra-overlay p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ===================================================================
   QUALITY PROMISE
   =================================================================== */
.quality-promise {
  background: var(--color-light-alt);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.quality-content {
  padding-right: var(--space-xl);
}

.quality-text {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
}

.quality-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.quality-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.qf-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-dark);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.quality-feature span {
  font-family: var(--font-button);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-dark);
}

.quality-visual {
  position: relative;
  align-self: stretch;
}

.quality-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
  min-height: 400px;
}

.quality-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-badge {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 150px;
  height: 150px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.badge-inner {
  text-align: center;
}

.badge-percent {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.badge-inner .badge-text {
  display: block;
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials-section {
  background: var(--color-light);
}

.testimonials-slider {
  padding: var(--space-md) 0 var(--space-xl);
}

.testimonial-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-rating {
  margin-bottom: var(--space-md);
}

.testimonial-rating .star {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-button);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0;
}

.testimonials-slider .swiper-pagination {
  position: relative;
  margin-top: var(--space-xl);
}

.testimonials-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-border);
  opacity: 1;
  margin: 0 6px;
  transition: all var(--transition-fast);
}

.testimonials-slider .swiper-pagination-bullet-active {
  background: var(--color-secondary);
  width: 30px;
  border-radius: 5px;
}

/* ===================================================================
   GLOBAL PRESENCE
   =================================================================== */
.global-presence {
  background: var(--color-dark);
}

.global-map {
  margin-bottom: var(--space-2xl);
}

.map-container {
  position: relative;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-map {
  width: 100%;
  height: auto;
}

.continent {
  fill: rgba(255, 255, 255, 0.15);
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1;
  transition: all var(--transition-medium);
}

.continent:hover {
  fill: rgba(199, 154, 59, 0.3);
}

.map-marker {
  fill: var(--color-secondary);
  opacity: 0.7;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.map-marker:hover,
.map-marker.active {
  opacity: 1;
  transform: scale(1.2);
  transform-origin: center;
}

.map-marker.active {
  fill: var(--color-secondary);
  animation: markerPulse 2s infinite;
}

@keyframes markerPulse {

  0%,
  100% {
    r: 8;
  }

  50% {
    r: 12;
  }
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  opacity: 0.7;
}

.legend-dot.active {
  opacity: 1;
  box-shadow: 0 0 10px var(--color-secondary);
}

.global-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
}

.global-stat {
  text-align: center;
}

.gs-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

.gs-label {
  display: block;
  font-family: var(--font-button);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-xs);
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(7, 26, 61, 0.95),
      rgba(13, 13, 13, 0.9));
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-light);
  margin-bottom: var(--space-lg);
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: var(--space-3xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-light);
  letter-spacing: 0.05em;
}

.footer-logo .logo-subtext {
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  font-weight: 500;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-about-text {
  font-size: var(--fs-small);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-light);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.footer-title {
  font-family: var(--font-button);
  font-size: var(--fs-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-light);
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links li a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--color-secondary);
  padding-left: var(--space-xs);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-contact-item svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: var(--fs-small);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.copyright {
  font-size: var(--fs-small);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-secondary);
}

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  color: var(--color-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  color: var(--color-light);
  transform: translateY(-5px);
}

/* ===================================================================
   RESPONSIVE STYLES
   =================================================================== */

/* Large Screens */
@media (max-width: 1200px) {
  .mega-menu {
    width: 700px;
  }

  .mega-menu-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-menu-featured {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }

  .mega-menu-image {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    margin-bottom: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .intro-content {
    padding-right: 0;
    order: 2;
  }

  .intro-visual {
    order: 1;
  }

  .intro-image.main-image img {
    height: 400px;
  }

  .intro-image.secondary-image {
    right: auto;
    left: var(--space-lg);
    bottom: -30px;
  }

  .process-stages {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }

  .process-stage {
    flex: 0 0 calc(33.333% - var(--space-md));
  }

  .timeline-track {
    display: none;
  }

  .infrastructure-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .infra-card.large {
    grid-row: auto;
  }

  .infra-card {
    height: 250px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .quality-content {
    padding-right: 0;
  }

  .quality-image-wrapper img {
    height: 500px;
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .process-stage {
    flex: 0 0 calc(50% - var(--space-md));
  }

  .infrastructure-grid {
    grid-template-columns: 1fr;
  }

  .infra-card {
    height: 300px;
  }

  .global-stats {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 1.75rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-slider-controls {
    flex-direction: column;
    gap: var(--space-md);
  }

  .slide-scroll-indicator {
    display: none;
  }

  .intro-features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .intro-image.secondary-image {
    width: 180px;
    left: var(--space-md);
  }

  .intro-image.secondary-image img {
    height: 250px;
  }

  .intro-badge {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
  }

  .badge-number {
    font-size: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-stage {
    flex: 0 0 100%;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .stat-card {
    padding: var(--space-lg);
  }

  .quality-image-wrapper img {
    height: 400px;
  }

  .quality-badge {
    width: 120px;
    height: 120px;
    right: var(--space-md);
    bottom: var(--space-md);
  }

  .badge-percent {
    font-size: 2rem;
  }

  .global-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
  }

  .header-container {
    padding: 0 var(--space-md);
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-slide-content {
    padding: 0 var(--space-md);
  }

  .product-image {
    height: 280px;
  }

  .infra-card {
    height: 250px;
  }

  .testimonial-card {
    padding: var(--space-lg);
  }
}

/* Print Styles */
@media print {

  .header,
  .preloader,
  .cursor-dot,
  .cursor-outline,
  .scroll-progress,
  .back-to-top {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .section {
    padding: 2rem 0;
  }
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.text-left-desktop {
  text-align: left;
}

.text-center-desktop {
  text-align: center;
}

.text-right-desktop {
  text-align: right;
}

/* Spacing Utilities */
.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: var(--space-sm) !important;
}

.mt-2 {
  margin-top: var(--space-md) !important;
}

.mt-3 {
  margin-top: var(--space-lg) !important;
}

.mt-4 {
  margin-top: var(--space-xl) !important;
}

.mt-5 {
  margin-top: var(--space-2xl) !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: var(--space-sm) !important;
}

.mb-2 {
  margin-bottom: var(--space-md) !important;
}

.mb-3 {
  margin-bottom: var(--space-lg) !important;
}

.mb-4 {
  margin-bottom: var(--space-xl) !important;
}

.mb-5 {
  margin-bottom: var(--space-2xl) !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

/* Display Utilities */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-grid {
  display: grid;
}

/* Flex Utilities */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

/* Animation Utilities */
.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.5s ease forwards;
}

.animate-slide-down {
  animation: slideDown 0.5s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* AOS Custom Animations */
[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

/* Smooth Scroll Container */
.smooth-scroll {
  overflow: hidden;
}

/* Glassmorphism Utility */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================================================
   PREMIUM PRODUCTS SLIDER SHOWCASE
   =================================================================== */
.products-showcase {
  background: var(--color-light-alt);
  overflow: hidden;
}

.premium-products-slider {
  padding: var(--space-md) 0 var(--space-xl);
  overflow: visible; /* allows shadow to not be cut off */
}

.premium-product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.premium-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.premium-product-image-wrapper {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #f7f7f7;
}

.premium-product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-slow) var(--transition-curve),
              transform var(--transition-slow) var(--transition-curve);
  transform: scale(1.1);
}

.premium-product-image-wrapper .product-img-back {
  opacity: 0;
  z-index: 2;
  display: none;
}

.premium-product-image-wrapper .product-img-front {
  z-index: 1;
}

.premium-product-card:hover .product-img-front {
  transform: scale(1.0);
}

.premium-product-card:hover .product-img-back {
  opacity: 0;
  transform: scale(1.0);
}

.premium-product-image-wrapper .product-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-secondary);
  color: var(--color-dark);
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.premium-product-info {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.premium-product-cat {
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xs);
  display: block;
}

.premium-product-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.premium-product-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.premium-product-meta .product-code {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
  font-family: var(--font-button);
}

.view-details-link {
  font-family: var(--font-button);
  font-size: var(--fs-tiny);
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color var(--transition-fast);
}

.view-details-link svg {
  transition: transform var(--transition-fast);
}

.premium-product-card:hover .view-details-link {
  color: var(--color-primary);
}

.premium-product-card:hover .view-details-link svg {
  transform: translateX(4px);
}

/* Slider Controls Styling */
.slider-controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-lg);
  position: relative;
  z-index: 10;
}

.premium-products-slider-pagination {
  width: auto !important;
  display: flex;
  gap: 6px;
}

.premium-products-slider-pagination .swiper-pagination-bullet {
  background: var(--color-primary) !important;
  opacity: 0.3;
  width: 8px;
  height: 8px;
  margin: 0 !important;
  transition: all var(--transition-fast);
}

.premium-products-slider-pagination .swiper-pagination-bullet-active {
  background: var(--color-secondary) !important;
  opacity: 1;
  width: 20px;
  border-radius: 4px;
}

.slider-navigation {
  display: flex;
  gap: var(--space-xs);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.slider-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .products-showcase {
    padding: var(--space-xl) 0;
  }
  
  .products-showcase .container {
    padding: 0 var(--space-sm);
  }
  
  .premium-product-info {
    padding: var(--space-sm);
  }
  
  .slider-controls-wrapper {
    margin-top: var(--space-md);
  }
  
  .slider-btn {
    width: 38px;
    height: 38px;
  }
}