/* ==========================================================================
   INTRASER - Premium International Trading Theme
   ========================================================================== */

:root {
  --navy-900: #050d1a;
  --navy-800: #0a1628;
  --navy-700: #0f2240;
  --navy-600: #1a3a5c;
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: rgba(16, 185, 129, 0.45);
  --gold: #c9a227;
  --gold-light: #e8c547;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray-100: #e8edf5;
  --gray-300: #94a3b8;
  --gray-500: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-lg: 0 25px 60px rgba(5, 13, 26, 0.35);
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--navy-800);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.loaded { overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 2rem; }
.preloader-logo .logo-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--emerald);
}
.preloader-logo .logo-text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: 3px;
  animation: preloadBar 1.8s ease-in-out infinite;
}
@keyframes preloadBar {
  0% { width: 0; margin-left: 0; }
  50% { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}
.preloader-caption { color: var(--gray-300); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  background: transparent;
}
.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  box-shadow: 0 0 12px var(--emerald-glow);
  transition: width 0.1s linear;
}

/* Particles */
.particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Section utilities */
.section-padding {
  padding: 100px 0;
}
.section-padding + .section-padding,
.wave-divider + .section-padding {
  padding-top: 100px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--emerald-light); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-800);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 640px;
}
.bg-navy { background: var(--navy-800); color: var(--white); }
.bg-navy-deep { background: var(--navy-900); }
.bg-light-gradient {
  background: linear-gradient(180deg, var(--off-white) 0%, #e8f0f8 100%);
}

/* Glass cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.glass-card-light {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
  border: none;
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--emerald-glow);
}
.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--emerald-light), var(--gold));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--emerald-glow);
  color: var(--white) !important;
}
.btn-glow:hover::before { opacity: 1; }
.btn-outline-glow {
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  background: transparent;
  transition: var(--transition);
}
.btn-outline-glow:hover {
  border-color: var(--emerald);
  background: rgba(16,185,129,0.15);
  color: var(--white) !important;
}

/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.intraser-nav { padding: 1rem 0; transition: padding 0.3s; }
.site-header.scrolled .intraser-nav { padding: 0.5rem 0; }
.intraser-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white) !important;
  padding: 0;
}
.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.site-header.scrolled .brand-logo-img {
  height: 40px;
}
.footer-logo-img {
  height: 52px;
  max-width: 220px;
  margin-bottom: 0.25rem;
}
.preloader-logo-img {
  height: 72px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.brand-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald), #059669);
  border-radius: 12px;
  font-size: 1.25rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 700; font-size: 1.1rem; letter-spacing: 0.05em; }
.brand-tagline { font-size: 0.65rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; }
.intraser-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.intraser-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: var(--transition);
  transform: translateX(-50%);
}
.intraser-nav .nav-link:hover::after,
.intraser-nav .nav-link.active::after { width: 60%; }
.glass-dropdown {
  background: rgba(10, 22, 40, 0.95) !important;
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0.5rem;
}
.glass-dropdown .dropdown-item {
  color: var(--white);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
.glass-dropdown .dropdown-item:hover {
  background: rgba(16,185,129,0.2);
  color: var(--emerald-light);
}
.navbar-toggler-icon-custom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,13,26,0.92) 0%, rgba(10,22,40,0.75) 50%, rgba(5,13,26,0.88) 100%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.spice-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 3rem;
}
.hero-inner {
  min-height: calc(100vh - var(--nav-height) - 3rem);
  min-height: calc(100dvh - var(--nav-height) - 3rem);
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(0.5rem, 2vw, 2rem);
}
.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50px;
  color: var(--emerald-light);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero-title .line {
  margin-bottom: 0.15em;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--emerald-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle at 50% 45%, rgba(16,185,129,0.14) 0%, transparent 68%);
  z-index: 0;
  pointer-events: none;
}
.hero-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.28;
  filter: brightness(1.15) contrast(0.9);
  mask-image: radial-gradient(ellipse 72% 72% at 50% 48%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 48%, #000 25%, transparent 72%);
  pointer-events: none;
}
.hero-ship {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  max-width: 360px;
  opacity: 0.88;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
  animation: floatShip 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes floatShip {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-1deg); }
  50% { transform: translateX(-50%) translateY(-12px) rotate(1deg); }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0;
  max-width: 100%;
}
.stat-card {
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--emerald);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald-light);
  line-height: 1;
}
.stat-number span { font-size: 1.25rem; color: var(--gold); }
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Wave dividers */
.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; height: 60px; }
.wave-top { margin-top: -1px; color: var(--off-white); }
.wave-bottom { margin-bottom: -1px; color: var(--off-white); }
.wave-divider.dark { color: var(--navy-800); }

/* Layout utilities */
.section-header { margin-bottom: 3rem; }
#mainContent {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
#mainContent section { position: relative; }

/* About */
.about-section {
  position: relative;
  overflow: hidden;
}
.about-section > .container > .row:first-child {
  align-items: center;
}
.about-highlights > [class*="col-"] {
  display: flex;
}
.about-highlights .highlight-card {
  width: 100%;
  align-items: flex-start;
}
.about-timeline-wrap {
  border-top: 1px solid var(--gray-100);
}
.company-timeline-grid > [class*="col-"] {
  display: flex;
}
.about-collage {
  position: relative;
  padding: 1.5rem 1rem 1rem;
  margin-bottom: 0;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.05); }
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img { height: 200px; object-fit: cover; width: 100%; }
.experience-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--emerald), #059669);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-glow);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.experience-badge .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.experience-badge .txt { font-size: 0.65rem; text-align: center; text-transform: uppercase; letter-spacing: 0.05em; }
.ceo-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.ceo-signature .sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy-700);
}
.highlight-card {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  height: 100%;
}
.highlight-card > div {
  flex: 1;
  min-width: 0;
}
.timeline-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--emerald);
  transition: var(--transition);
  height: 100%;
}
.timeline-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.timeline-card .year {
  display: inline-block;
  font-weight: 700;
  color: var(--emerald);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.timeline-card h6 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.highlight-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.highlight-card i {
  font-size: 1.5rem;
  color: var(--emerald);
  flex-shrink: 0;
}
.highlight-card h6 { font-size: 0.95rem; margin-bottom: 0.25rem; font-family: var(--font-body); font-weight: 700; }
.highlight-card p { font-size: 0.8rem; color: var(--gray-500); margin: 0; }

/* Timeline */
.company-timeline { margin-top: 3rem; position: relative; padding-left: 2rem; }
.company-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--emerald), var(--gold));
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--emerald);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--emerald-glow);
}
.timeline-item .year { font-weight: 700; color: var(--emerald); font-size: 0.9rem; }
.timeline-item h6 { margin: 0.25rem 0; font-family: var(--font-body); font-weight: 700; }

/* Category cards */
#categories .row > [class*="col-"],
#industries .row > [class*="col-"] {
  display: flex;
}
.category-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(16,185,129,0.08));
  opacity: 0;
  transition: opacity 0.4s;
}
.category-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.category-card:hover::before { opacity: 1; }
.category-card:hover::after { opacity: 1; }
.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(201,162,39,0.1));
  border-radius: 16px;
  font-size: 1.75rem;
  color: var(--emerald);
  transition: var(--transition);
}
.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: var(--white);
}
.category-card h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }

/* Products Swiper */
.products-section { background: var(--navy-800); position: relative; overflow: hidden; }
.products-section .section-title,
.products-section .section-desc { color: var(--white); }
.products-section .section-desc { color: rgba(255,255,255,0.7); }
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.1); }
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,13,26,0.8) 100%);
}
.product-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
  z-index: 2;
}
.product-card:hover .product-shine { left: 150%; }
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.35rem 0.75rem;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-body { padding: 1.25rem; }
.product-body h5 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 700; }
.product-body .btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-light);
}
.product-body .btn-inquiry:hover { color: var(--gold-light); gap: 0.6rem; }
.swiper-nav-custom {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.swiper-nav-custom button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  transition: var(--transition);
}
.swiper-nav-custom button:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}

/* Why Choose Us */
.why-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}
.why-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.why-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.1;
}
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.3);
  transform: translateX(8px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald), #059669);
  border-radius: 12px;
  font-size: 1.25rem;
}
.feature-item h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.85rem; opacity: 0.7; margin: 0; }
.floating-icon {
  position: absolute;
  font-size: 2rem;
  color: var(--emerald);
  opacity: 0.2;
  animation: floatIcon 5s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Certifications */
#certifications .row > [class*="col-"] {
  display: flex;
}
.cert-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, var(--emerald), var(--gold), var(--emerald));
  opacity: 0;
  transition: opacity 0.4s;
  animation: certRotate 4s linear infinite;
}
@keyframes certRotate { to { transform: rotate(360deg); } }
.cert-card:hover::before { opacity: 0.15; }
.cert-card-inner {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: calc(var(--radius) - 4px);
  padding: 1.5rem;
  margin: 2px;
  height: calc(100% - 4px);
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(16,185,129,0.2);
}
.cert-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(201,162,39,0.1));
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--emerald);
}
.cert-card h6 { font-family: var(--font-body); font-weight: 700; margin: 0; }

/* Industries */
.industry-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.industry-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}
.industry-card i {
  font-size: 2.5rem;
  color: var(--emerald);
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.4s;
}
.industry-card:hover i { transform: scale(1.15); }
.industry-card h6 { font-family: var(--font-body); font-weight: 700; margin: 0; }

/* Global Map */
.global-section {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
}
.world-map-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.world-map-wrap img { opacity: 0.25; filter: brightness(2); }
.map-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--emerald-glow);
  animation: mapPulse 2s infinite;
  cursor: pointer;
}
.map-marker::after {
  content: attr(data-region);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,0,0,0.7);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.map-marker:hover::after { opacity: 1; }
@keyframes mapPulse {
  0% { box-shadow: 0 0 0 0 var(--emerald-glow); }
  70% { box-shadow: 0 0 0 15px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.map-marker.me { top: 42%; left: 58%; }
.map-marker.ea { top: 35%; left: 78%; }
.map-marker.eu { top: 28%; left: 48%; }
.map-marker.us { top: 32%; left: 22%; }
.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.market-tag {
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.market-tag:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}

/* Services timeline */
.service-timeline {
  position: relative;
  padding: 2rem 0;
}
.service-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--emerald);
  box-shadow: 0 4px 20px rgba(10,22,40,0.08);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.service-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}
.service-card .service-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
  opacity: 0.4;
  line-height: 1;
}
.service-card h5 { font-family: var(--font-body); font-weight: 700; margin-bottom: 0.35rem; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* Packaging */
.packaging-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}
.packaging-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.packaging-card:hover img { transform: scale(1.08); }
.packaging-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,13,26,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.packaging-overlay h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin: 0; }
#packaging .row.g-3 > [class*="col-"] {
  display: flex;
}
.pack-feature {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  width: 100%;
  height: 100%;
}
.pack-feature:hover { border-color: var(--emerald); transform: translateY(-3px); }
.pack-feature i { font-size: 1.5rem; color: var(--emerald); }

/* Testimonials */
.testimonial-section { background: var(--off-white); }
.testimonial-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 100%;
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--emerald);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-700);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h6 { margin: 0; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-500); }

/* CTA */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1494412622974-9e8ddc0a72a7?w=1920&q=80') center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,13,26,0.9), rgba(16,185,129,0.3));
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

/* Contact */
.contact-section {
  background: var(--off-white);
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 100px !important;
}
.contact-layout {
  align-items: flex-start !important;
}
.contact-info-col .contact-info-card:last-of-type {
  margin-bottom: 0;
}
.contact-form-col .contact-form {
  height: auto;
}
.contact-map-row {
  margin-top: 0;
  padding-top: 0.5rem;
}
.contact-info-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-glow);
}
.contact-info-card i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,185,129,0.1);
  color: var(--emerald);
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-map {
  position: relative;
  width: 100%;
  height: 360px;
  max-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-form {
  padding: 2rem;
  margin-bottom: 0;
}
.contact-form-col {
  min-width: 0;
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  padding: 0.75rem 1rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 3;
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  margin-top: 0;
  clear: both;
}
.footer-top { padding: 80px 0 40px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--white) !important;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-brand:hover { opacity: 0.92; }
.footer-about { font-size: 0.9rem; margin-bottom: 1.5rem; max-width: none; line-height: 1.7; }
.footer-social { display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--emerald);
  transform: translateY(-3px);
}
.footer-title {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald);
  transition: width 0.3s;
}
.footer-links a:hover { color: var(--emerald-light); }
.footer-links a:hover::after { width: 100%; }
.footer-newsletter .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--white);
  border-radius: 50px 0 0 50px;
  padding: 0.75rem 1.25rem;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .btn-glow { border-radius: 0 50px 50px 0; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.footer-contact i { color: var(--emerald); margin-top: 3px; }
.footer-bottom {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
}

/* WhatsApp & Back to top */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--navy-800);
  color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9989;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--emerald);
  transform: translateY(-4px);
}

/* Breadcrumb */
.breadcrumb-banner {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.breadcrumb-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1578575437136-493894197efe?w=1920&q=80') center/cover;
}
.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,13,26,0.92), rgba(10,22,40,0.85));
}
.breadcrumb-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.intraser-breadcrumb .breadcrumb-item a { color: var(--emerald-light); }
.intraser-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.intraser-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* Responsive */
@media (max-width: 991.98px) {
  .hero-inner {
    min-height: auto;
  }
  .hero-content {
    padding-top: calc(var(--nav-height) + 1.5rem);
    padding-bottom: 2.5rem;
  }
  .hero-text-col {
    padding-right: 0;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .section-padding { padding: 70px 0; }
  .contact-section { padding-bottom: 80px !important; }
  .contact-map { height: 300px; max-height: 300px; }
  .about-collage { padding: 1rem 0.5rem; }
}
@media (max-width: 767.98px) {
  .brand-logo-img { height: 40px; max-width: 160px; }
  .footer-logo-img { height: 44px; max-width: 180px; }
  .preloader-logo-img { height: 56px; max-width: 200px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-img-secondary { position: relative; right: 0; width: 100%; margin-top: 1rem; }
  .about-img-main img { height: 300px; }
  .experience-badge { left: 10px; top: 10px; width: 90px; height: 90px; }
  .experience-badge .num { font-size: 1.5rem; }
  .contact-map { height: 260px; max-height: 260px; }
  .ceo-signature { margin-top: 1.5rem; }
}

/* ==========================================================================
   COMPANY STRENGTHS (redesign)
   ========================================================================== */
.strengths-section {
  position: relative;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-100);
}
.strengths-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.strengths-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .strengths-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .strengths-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.strength-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  width: 100%;
  min-height: 220px;
}
.strength-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}
.strength-glow {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(16, 185, 129, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.strength-card:hover .strength-glow { opacity: 1; }
.strength-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(201, 162, 39, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 14px;
  font-size: 1.5rem;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.strength-card:hover .strength-icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: var(--white);
  box-shadow: 0 8px 24px var(--emerald-glow);
}
.strength-counter-wrap {
  margin-bottom: 0.35rem;
}
.strength-counter {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.strength-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.strength-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

/* ==========================================================================
   WORLDWIDE REACH (redesign)
   ========================================================================== */
.global-section {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 45%, #0d2847 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.global-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 58%, rgba(16, 185, 129, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
.global-map-stage {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 1000 / 480;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25), 0 24px 60px rgba(0, 0, 0, 0.35);
}
.global-routes-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.route-line {
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 8 12;
  stroke-linecap: round;
  animation: routeFlow 3s linear infinite;
}
.route-line.route-delay-1 { animation-delay: 0.4s; }
.route-line.route-delay-2 { animation-delay: 0.8s; }
.route-line.route-delay-3 { animation-delay: 1.2s; }
@keyframes routeFlow {
  to { stroke-dashoffset: -40; }
}
.hub-pulse {
  fill: rgba(16, 185, 129, 0.35);
  animation: hubPulse 2s ease-out infinite;
}
.hub-core {
  fill: var(--emerald-light);
}
@keyframes hubPulse {
  0% { r: 8; opacity: 0.8; }
  70% { r: 22; opacity: 0; }
  100% { r: 22; opacity: 0; }
}
.map-pins-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.region-pin {
  position: absolute;
  top: var(--pin-top);
  left: var(--pin-left);
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}
.pin-dot {
  width: 14px;
  height: 14px;
  background: var(--emerald);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--emerald-glow);
  animation: mapPulse 2s infinite;
  transition: transform 0.3s, background 0.3s;
}
.region-pin:hover .pin-dot,
.region-pin.active .pin-dot {
  transform: scale(1.35);
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.6);
}
.region-pin-hub .pin-dot {
  width: 18px;
  height: 18px;
  background: var(--gold);
}
.pin-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(5, 13, 26, 0.85);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.region-pin:hover .pin-label,
.region-pin.active .pin-label {
  opacity: 1;
  transform: translateY(0);
}
.global-regions-grid > [class*="col-"] {
  display: flex;
}
.region-card {
  width: 100%;
  padding: 1.25rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.region-card:hover,
.region-card.is-active {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}
.region-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  color: var(--emerald-light);
  font-size: 1.25rem;
}
.region-card h6 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.region-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   FOOTER (redesign)
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 5;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0;
  clear: both;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), var(--gold), transparent);
}
.footer-top {
  padding: clamp(3rem, 5vw, 4.75rem) 0 clamp(2rem, 3vw, 2.75rem);
}
.footer-container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 2rem;
  align-items: start;
  width: 100%;
}
.footer-cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.footer-cell-brand .footer-about {
  max-width: 100%;
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
  max-width: none;
  color: rgba(255, 255, 255, 0.65);
}
.footer-title {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: 2px;
}
.footer-title-sub {
  margin-top: 1.75rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.55rem;
  line-height: 1.45;
}
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
  display: inline-block;
  position: relative;
  padding: 0.12rem 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transition: width 0.3s ease;
}
.footer-links a:hover {
  color: var(--emerald-light);
  transform: translateX(3px);
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  word-break: break-word;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}
.footer-contact-list a:hover {
  color: var(--emerald-light);
}
.footer-contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 10px;
  color: var(--emerald);
  font-size: 1rem;
}
.footer-newsletter-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer-newsletter {
  width: 100%;
  max-width: 100%;
}
.footer-newsletter-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.footer-newsletter-inner:focus-within {
  border-color: rgba(16, 185, 129, 0.55);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.footer-newsletter .form-control {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 0.85rem 1.1rem;
  font-size: 0.875rem;
  border-radius: 0;
  box-shadow: none;
}
.footer-newsletter .form-control:focus {
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
}
.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.footer-newsletter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-height: 48px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: var(--white);
  font-size: 1.05rem;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.footer-newsletter-btn:hover {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  color: var(--white);
  transform: scale(1.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.footer-newsletter-btn:active {
  transform: scale(0.98);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.15rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--white);
  font-size: 1.05rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
}
.footer-cell-contact {
  width: 100%;
}
.footer-bottom {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.15rem 0;
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.45;
}
.footer-design-credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
}
.footer-design-credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-design-credit a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footer-exportersway {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  line-height: 0;
  margin-left: auto;
  transition: opacity 0.25s ease;
}
.footer-exportersway:hover {
  opacity: 0.9;
}
.footer-exportersway-logo {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

/* Footer responsive grid */
@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 2rem;
  }
  .footer-cell-brand,
  .footer-cell-contact {
    grid-column: 1 / -1;
  }
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.25rem 1.75rem;
  }
  .footer-cell-brand {
    grid-column: 1 / -1;
  }
  .footer-cell-contact {
    grid-column: 1 / -1;
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns:
      minmax(200px, 1.35fr)
      minmax(110px, 1fr)
      minmax(110px, 1fr)
      minmax(110px, 1fr)
      minmax(240px, 1.5fr);
    gap: 2rem 2.25rem;
  }
  .footer-cell-brand,
  .footer-cell-contact {
    grid-column: auto;
  }
  .footer-title-sub {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .footer-container {
    max-width: 1400px;
  }
  .footer-grid {
    gap: 2.25rem 2.75rem;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 991.98px) {
  .strength-card { min-height: 200px; }
  .global-map-stage { aspect-ratio: 16 / 10; }
}
@media (max-width: 767.98px) {
  .strengths-section { padding-top: 2rem; }
  .strength-counter { font-size: 1.85rem; }
  .footer-grid {
    gap: 2rem;
  }
  .footer-title {
    margin-bottom: 0.95rem;
  }
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .footer-bottom-left {
    flex: 1;
    min-width: 0;
  }
  .footer-exportersway {
    margin-left: 0;
    flex-shrink: 0;
  }
  .footer-exportersway-logo {
    height: 44px;
    max-width: 120px;
  }
  .footer-copy {
    font-size: 0.78rem;
  }
  .footer-design-credit {
    font-size: 0.72rem;
  }
  .footer-social {
    gap: 0.6rem;
  }
  .pin-label { font-size: 0.65rem; }
}

/* One-page section scroll offset (sticky navbar) */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
section[id] { scroll-margin-top: 88px; }

/* ==========================================================================
   PRODUCTS & GALLERY (homepage sections)
   ========================================================================== */
.gallery-section {
  background: var(--navy-800);
  position: relative;
}
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-desc { color: rgba(255, 255, 255, 0.68); }
.products-page-section,
.gallery-page-section {
  background: var(--navy-900);
  position: relative;
}
.products-page .section-title,
.gallery-page .section-title { color: var(--white); }
.products-page .section-desc,
.gallery-page .section-desc { color: rgba(255, 255, 255, 0.68); }

/* Landing showcase grids (10 items) — column breakpoints in Responsive Audit section */
.landing-showcase-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.landing-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.landing-product-card .product-card-desc {
  font-size: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery-showcase-grid .gallery-item-inner {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}
.gallery-showcase-grid .landing-gallery-item {
  min-width: 0;
}

/* Product filters */
.product-filters-wrap {
  margin-bottom: 2.5rem;
  text-align: center;
}
.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.product-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.product-filter-btn i { color: var(--emerald); font-size: 0.95rem; }
.product-filter-btn:hover,
.product-filter-btn.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}
.product-filter-count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Product page cards */
.product-card-page {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-page .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}
.product-card-title {
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.product-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.15rem;
  flex: 1;
}
.product-badge-export {
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}
.product-cat-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.3rem 0.65rem;
  background: rgba(5, 13, 26, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}
.btn-inquiry-full {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.product-grid-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-grid-item.is-hidden {
  display: none !important;
}
.product-empty-state,
.gallery-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: rgba(255, 255, 255, 0.5);
}
.product-empty-state i,
.gallery-empty-state i {
  font-size: 2.5rem;
  color: var(--emerald);
  display: block;
  margin-bottom: 1rem;
  opacity: 0.6;
}

/* CTA strip */
.cta-strip {
  background: var(--navy-800);
  border-top: 1px solid var(--glass-border);
}
.section-padding-sm { padding: 3rem 0; }
.cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(212, 175, 55, 0.08));
  border: 1px solid var(--glass-border);
}
.cta-strip-inner h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.cta-strip-inner p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-size: 0.9rem;
}

/* Gallery filters */
.gallery-filters-wrap {
  margin-bottom: 2.5rem;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.gallery-filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--emerald);
  color: var(--white);
}

/* Gallery masonry grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item.is-hidden { display: none !important; }
.gallery-item-inner {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--navy-800);
}
.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item-inner:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 13, 26, 0.88) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  text-align: center;
}
.gallery-item-inner:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  font-size: 1.75rem;
  color: var(--emerald-light);
  transform: scale(0.8);
  transition: transform 0.35s ease;
}
.gallery-item-inner:hover .gallery-item-overlay i { transform: scale(1); }
.gallery-item-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}
.gallery-item-cat {
  color: var(--gold-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 13, 26, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox.is-open[hidden] { display: flex; }
.gallery-lightbox-content {
  max-width: 960px;
  width: 100%;
  text-align: center;
}
.gallery-lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  object-fit: contain;
}
.gallery-lightbox-caption { margin-top: 1.25rem; }
.gallery-lightbox-cat {
  color: var(--emerald-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.gallery-lightbox-title {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0;
}
.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-lightbox-close:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-lightbox-nav:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}
.gallery-lightbox-prev { left: 1.5rem; }
.gallery-lightbox-next { right: 1.5rem; }

/* Navbar active inner pages */
.intraser-nav .nav-link.active {
  color: var(--emerald-light) !important;
}
.intraser-nav .nav-link.active::after {
  width: 100%;
}

/* Page-specific breadcrumb backgrounds */
.products-page .breadcrumb-bg {
  background-image: url('https://images.unsplash.com/photo-1596040033229-a0b517a0c92a?w=1920&q=80');
}
.gallery-page .breadcrumb-bg {
  background-image: url('https://images.unsplash.com/photo-1494412574643-ff26f0e6f0bb?w=1920&q=80');
}

@media (max-width: 767.98px) {
  .product-filters { gap: 0.45rem; }
  .product-filter-btn { font-size: 0.75rem; padding: 0.45rem 0.85rem; }
  .product-filter-btn span { display: none; }
  .product-filter-btn i { margin: 0; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-lightbox-nav { display: none; }
  .cta-strip-inner { flex-direction: column; text-align: center; padding: 1.5rem; }
}

/* ==========================================================================
   RESPONSIVE AUDIT — mobile, tablet, desktop
   ========================================================================== */

/* Sticky footer + floating controls */
.site-footer {
  flex-shrink: 0;
  margin-top: 0;
}
.whatsapp-float {
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
}
.back-to-top {
  bottom: max(5.5rem, calc(4.5rem + env(safe-area-inset-bottom, 0px)));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
}

/* Showcase grids — progressive columns */
@media (max-width: 575.98px) {
  .landing-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .stat-card {
    padding: 1rem;
  }
  .packaging-card {
    height: 220px;
  }
  .pin-label {
    font-size: 0.6rem;
    max-width: 72px;
    text-align: center;
    line-height: 1.2;
  }
  .global-regions-grid .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cta-section {
    padding: 80px 0;
  }
  .cta-content .btn-glow,
  .cta-content .btn-outline-glow {
    width: 100%;
    justify-content: center;
  }
  .floating-icon {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .landing-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .landing-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .landing-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .landing-showcase-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Mobile navigation */
@media (max-width: 991.98px) {
  :root {
    --nav-height: 72px;
  }
  html {
    scroll-padding-top: var(--nav-height);
  }
  section[id] {
    scroll-margin-top: var(--nav-height);
  }
  .intraser-nav {
    padding: 0.75rem 0;
  }
  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem 1.15rem;
    background: rgba(10, 22, 40, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }
  .intraser-nav .navbar-nav {
    gap: 0.15rem;
  }
  .intraser-nav .nav-link {
    padding: 0.65rem 0.5rem !important;
    text-align: center;
  }
  .intraser-nav .nav-link::after {
    left: 0;
    transform: none;
    bottom: 0.35rem;
  }
  .intraser-nav .nav-link:hover::after,
  .intraser-nav .nav-link.active::after {
    width: 2rem;
  }
  .navbar-toggler {
    padding: 0.35rem 0.5rem;
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.35);
  }
  .feature-item:hover {
    transform: none;
  }
  .service-timeline {
    margin-top: 0.5rem;
  }
  .footer-newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    padding: 0.5rem;
  }
  .footer-newsletter .form-control {
    border-radius: var(--radius) !important;
    text-align: center;
  }
  .footer-newsletter-btn {
    width: 100%;
    border-radius: var(--radius) !important;
    margin-top: 0.35rem;
  }
  .particle-canvas {
    opacity: 0.2;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 64px 0;
  }
  .section-padding + .section-padding,
  .wave-divider + .section-padding {
    padding-top: 64px;
  }
  .section-title {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }
  .section-desc {
    font-size: 0.95rem;
  }
  .about-highlights .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .why-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem;
  }
  .pack-feature {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.65rem;
  }
  .pack-feature span {
    font-size: 0.9rem;
  }
  .contact-info-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .contact-form-col {
    margin-top: 0.5rem;
  }
  .gallery-lightbox-img {
    max-height: 55vh;
  }
  .gallery-lightbox-close {
    top: max(1rem, env(safe-area-inset-top, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .testimonial-card {
    padding: 1.75rem;
  }
  .ceo-signature {
    padding: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .about-collage {
    margin-bottom: 2rem;
  }
  .experience-badge {
    width: 100px;
    height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle-canvas,
  .floating-icon,
  .route-line,
  .hub-pulse {
    display: none !important;
    animation: none !important;
  }
  .feature-item:hover,
  .pack-feature:hover,
  .strength-card:hover {
    transform: none;
  }
}
