/* =========================================
   Sara International – style.css
   Colors: Navy #1D2E4A, Orange #E8841A
   ========================================= */

/* ── VARIABLES ── */
:root {
  --navy:      #111316;
  --navy-deep: #111316;
  --navy-mid:  #1a1d21;
  --navy-light:#2a2e33;
  --orange:    #E8841A;
  --orange-lt: #f5a04a;
  --orange-dk: #c96e0d;
  --white:     #ffffff;
  --off-white: #f4f6fa;
  --light-bg:  #eef1f7;
  --text-dark: #1a2235;
  --text-mid:  #4a5568;
  --text-light:#8899aa;
  --border:    rgba(30,50,80,0.12);
  --shadow-sm: 0 2px 12px rgba(29,46,74,0.08);
  --shadow-md: 0 8px 32px rgba(29,46,74,0.14);
  --shadow-lg: 0 20px 60px rgba(29,46,74,0.2);
  --radius:    12px;
  --radius-lg: 20px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
   color: var(--text-dark);
  background: radial-gradient(circle at top left, rgba(255, 140, 0, 0.25), transparent 40%), radial-gradient(circle at bottom right, rgba(255, 140, 0, 0.15), transparent 40%), linear-gradient(135deg, #ffffff, #fff5eb);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.section-pad { padding: 90px 0; }

/* ── TYPOGRAPHY UTILITIES ── */
.text-accent { color: var(--orange); }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,132,26,0.1);
  border: 1px solid rgba(232,132,26,0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-desc { color: var(--text-mid); font-size: 1.05rem; line-height: 1.75; }
.section-sub  { color: var(--text-mid); font-size: 1rem; max-width: 580px; margin: 0 auto; }

/* ── TOPBAR ── */
.topbar {
  background: #313e57;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar .container-fluid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.topbar span { display: flex; align-items: center; }
.topbar i { color: var(--orange); }
.topbar a {
  color: rgba(255,255,255,0.65);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  transition: all 0.25s;
  font-size: 0.8rem;
}
.topbar a:hover { color: var(--orange); }

/* keep phone/email as text links */
.topbar .contact-link{
  background:none;
  width:auto;
  height:auto;
  display:inline;
  padding:0;
  color:rgba(255,255,255,0.75);
  text-decoration:none;
}



/* ── NAVBAR ── */
.main-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(29,46,74,0.1);
  padding: 0;
  border-bottom: 3px solid var(--orange);
  transition: all 0.3s;
  z-index: 1050;
}
.main-nav .container-fluid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.main-nav.scrolled { box-shadow: var(--shadow-lg); }
.main-nav.scrolled .nav-link,
.main-nav.scrolled .navbar-brand { color: #1a2235 !important; font-weight: 700; }
.main-nav.scrolled .nav-link.active { color: var(--orange) !important; }
.main-nav.scrolled .brand-tagline { color: rgba(255,255,255,0.55) !important; }

.navbar-brand { padding: 10px 0; }
.site-logo { height: 52px; width: auto; max-width: 180px; }
.brand-icon { width: 44px; height: 44px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; flex-shrink: 0; }
.brand-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.brand-sub  { color: var(--orange); font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }
.brand-tag  { font-size: 0.62rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.brand-tagline { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1; margin-top: 2px; }

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark) !important;
  letter-spacing: 0.02em;
  padding: 20px 12px !important;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 3px; transition: all 0.3s; display: none; }
.nav-link:hover::after, .nav-link.active::after { left: 8px; right: 8px; }
.nav-link:hover { color: var(--orange) !important; }
.nav-link.active {
  color: var(--orange) !important;
  border-radius: 8px;
  padding: 8px 16px !important;
  font-weight: 700 !important;
  background: rgba(232,132,26,0.08) !important;
}

.btn-quote { background: var(--orange) !important; color: white !important; border-radius: 100px !important; padding: 9px 22px !important; font-size: 0.82rem !important; }
.btn-quote::after { display: none !important; }
.btn-quote:hover { background: var(--orange-dk) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,132,26,0.4); }

/* =====================================================
   MEGA MENU
   ===================================================== */
.mega-dropdown { position: static !important; }

.mega-menu {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 60px rgba(29,46,74,0.22);
  padding: 0 !important;
  margin: 0 !important;
  z-index: 1049;
  display: none;
}

.mega-menu.is-open {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: all !important;
}

.mega-menu-inner { background: #fff; padding: 32px; border-top: 3px solid #E8841A; }
.mega-menu-header { margin-bottom: 24px; }
.mega-menu-header h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; color: #1D2E4A; font-weight: 800; margin: 0 0 4px; }
.mega-menu-header p { color: #4a5568; font-size: 0.85rem; margin: 0; }

.mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 12px;
  color: #1a2235; font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s; border: 1px solid transparent;
  margin: 4px; text-decoration: none;
}
.mega-item i { color: #E8841A; font-size: 1.1rem; width: 22px; text-align: center; }
.mega-item:hover { background: #eef1f7; border-color: rgba(30,50,80,0.12); color: #1D2E4A; transform: translateX(3px); }

.mega-featured {
  background: linear-gradient(160deg, #1D2E4A 0%, #2e4470 100%);
  border-radius: 20px; color: white; padding: 30px 24px;
  height: 100%; display: flex; flex-direction: column; align-items: flex-start;
}
.mega-featured i { color: #E8841A; }
.mega-featured h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: white; }
.mega-featured p { font-size: 0.83rem; opacity: 0.8; line-height: 1.6; margin-bottom: 20px; color: white; }
.mega-feat-badge { background: #E8841A; color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 16px; }
.mega-cta { background: #E8841A; color: white; border: none; border-radius: 100px; padding: 8px 18px; font-size: 0.8rem; font-weight: 700; text-decoration: none; display: inline-block; cursor: pointer; }
.mega-cta:hover { background: #f5a04a; color: white; }

/* ══════════════════════════════════════════
   HERO — DESKTOP BASE
══════════════════════════════════════════ */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--navy-deep);
}

/* Hero background slides */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide.prev-out { opacity: 0; transform: scale(0.98); }

.hero-grad-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(6 6 6 / 90%) 0%, rgb(14 13 13 / 70%) 60%, rgb(18 17 17 / 60%) 100%);
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Hero controls */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 48px; height: 48px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%; color: white; font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; backdrop-filter: blur(6px);
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-50%) scale(1.1); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-dots { position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; }
.hero-dot.active { background: var(--orange); width: 28px; border-radius: 5px; }

.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.1); z-index: 10; }
.hero-progress-bar { height: 100%; width: 0%; background: var(--orange); transition: width linear; }

.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particle { position: absolute; width: 4px; height: 4px; background: var(--orange); border-radius: 50%; opacity: 0; animation: floatUp var(--dur) var(--delay) infinite ease-in; }
@keyframes floatUp { 0%{transform:translateY(100vh) scale(0);opacity:0} 10%{opacity:0.6} 90%{opacity:0.3} 100%{transform:translateY(-10vh) scale(1);opacity:0} }

.min-vh-hero { min-height: 75vh; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(232,132,26,0.15); border: 1px solid rgba(232,132,26,0.35); color: var(--orange-lt); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; padding: 7px 16px; border-radius: 100px; margin-bottom: 20px; animation: fadeSlideUp 0.7s ease both; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; color: white; line-height: 1.05; margin-bottom: 20px; animation: fadeSlideUp 0.7s 0.15s ease both; }
.hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.75; max-width: 520px; margin-bottom: 32px; animation: fadeSlideUp 0.7s 0.3s ease both; }
.hero-actions { animation: fadeSlideUp 0.7s 0.45s ease both; }

.btn-primary-main { background: var(--orange); color: white; border: none; border-radius: 100px; padding: 13px 30px; font-weight: 700; font-size: 0.92rem; transition: all 0.25s; display: inline-flex; align-items: center; }
.btn-primary-main:hover { background: var(--orange-lt); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,132,26,0.4); }
.btn-outline-main { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.35); border-radius: 100px; padding: 11px 28px; font-weight: 700; font-size: 0.92rem; transition: all 0.25s; }
.btn-outline-main:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,132,26,0.06); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--border); border-radius: 100px; padding: 11px 28px; font-weight: 700; font-size: 0.9rem; transition: all 0.25s; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats { display: flex; align-items: center; gap: 0; margin-top: 44px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 20px 28px; width: fit-content; animation: fadeSlideUp 0.7s 0.6s ease both; }
.stat-item { text-align: center; padding: 0 22px; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

.hero-ship-visual { position: relative; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; animation: fadeSlideUp 0.9s 0.4s ease both; }
.ship-glow { position: absolute; inset: 0; background: radial-gradient(circle, rgba(232,132,26,0.18) 0%, transparent 70%); border-radius: 50%; }
.hero-ship-icon { font-size: 9rem; color: rgba(255,255,255,0.15); position: relative; z-index: 2; filter: drop-shadow(0 0 30px rgba(232,132,26,0.3)); animation: shipBob 4s ease-in-out infinite; }
@keyframes shipBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.orbit-ring { position: absolute; border: 1px dashed rgba(232,132,26,0.25); border-radius: 50%; display: flex; align-items: flex-start; justify-content: center; }
.ring1 { width: 200px; height: 200px; animation: spin 12s linear infinite; }
.ring2 { width: 290px; height: 290px; animation: spin 18s linear infinite reverse; }
.ring3 { width: 370px; height: 370px; animation: spin 25s linear infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.orbit-dot { width: 36px; height: 36px; background: var(--navy-mid); border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: -18px; color: var(--orange); font-size: 0.85rem; }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 1.1rem; animation: bounce 2s ease infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════════
   HERO — TABLET (768px – 991px)
══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    min-height: 70vh;
    padding: 60px 0 50px;
  }
  .hero-slide {
    background-position: center top;
  }
  .min-vh-hero { min-height: 60vh; }
}

/* ══════════════════════════════════════════
   HERO — MOBILE (≤ 767px)
   Fix: image fully visible, no dark gap
══════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Section: auto height so slide image fully shows */
  .hero-section {
    min-height: unset !important;
    height: auto !important;
    padding: 0 !important;
    display: block !important;
    align-items: unset !important;
  }

  /* slides wrapper: relative, height auto */
  .hero-slides {
    position: relative !important;
    inset: unset !important;
    width: 100%;
    height: auto;
    display: block;
  }

  /* Each slide: relative + hidden by default */
  .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center top !important;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 6s ease;
  }

  /* Wrapper that gives slides a fixed height on mobile */
  .hero-slides {
    position: relative !important;
    height: 55vw !important;      /* responsive: taller portrait ratio */
    min-height: 220px !important;
    max-height: 380px !important;
    overflow: hidden !important;
  }

  .hero-slide.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 1;
  }

  /* Gradient overlay: lighter on mobile so image visible */
  .hero-grad-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,20,40,0.25) 0%,
      rgba(10,20,40,0.55) 70%,
      rgba(10,20,40,0.80) 100%
    ) !important;
  }

  /* Content block: below the slides, dark bg, no gap */
  .hero-section > .container {
    position: relative !important;
    z-index: 5;
    background: var(--navy-deep);
    padding: 28px 20px 32px !important;
    margin-top: 0 !important;
  }

  /* min-vh-hero: let content natural height */
  .min-vh-hero {
    min-height: unset !important;
  }

  /* Text */
  .hero-title {
    font-size: 1.9rem !important;
    margin-bottom: 12px;
  }
  .hero-desc {
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
  }

  /* Stats: 2x2 grid */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    margin-top: 24px !important;
    padding: 16px 12px !important;
  }
  .stat-item { padding: 10px 8px !important; }
  .stat-num  { font-size: 1.6rem !important; }
  .stat-divider { display: none !important; }

  /* Buttons */
  .hero-actions .btn-primary-main {
    width: 100%;
    justify-content: center;
    padding: 12px 20px !important;
  }

  /* Arrows: smaller, closer to edges */
  .hero-arrow {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.75rem !important;
    top: calc(55vw / 2) !important;  /* center of image area */
  }
  .hero-arrow-prev { left: 10px !important; }
  .hero-arrow-next { right: 10px !important; }

  /* Dots: inside image area */
  .hero-dots {
    bottom: unset !important;
    top: calc(55vw - 30px) !important;
    z-index: 10;
  }
  .hero-dot { width: 7px !important; height: 7px !important; }
  .hero-dot.active { width: 20px !important; }

  /* Progress bar */
  .hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }

  /* Scroll hint: hide on mobile */
  .hero-scroll-hint { display: none !important; }

  /* Remove any gap between slides and content below */
  .hero-section + .marquee-strip,
  .hero-section + * {
    margin-top: 0 !important;
  }
}

/* ══════════════════════════════════════════
   HERO — SMALL MOBILE (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-slides {
    height: 62vw !important;
    min-height: 200px !important;
    max-height: 320px !important;
  }
  .hero-arrow {
    top: calc(62vw / 2) !important;
  }
  .hero-dots {
    top: calc(62vw - 28px) !important;
  }
  .hero-title { font-size: 1.6rem !important; }
  .hero-section > .container {
    padding: 22px 16px 28px !important;
  }
}

/* ── MARQUEE ── */
.marquee-strip { background: #313e57; overflow: hidden; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 3px solid var(--orange); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marqueeScroll 38s linear infinite; }
.marquee-track span { color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0 36px; border-right: 1px solid rgba(255,255,255,0.1); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.marquee-track span i { color: var(--orange); }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT ── */
.about-section { background: radial-gradient(circle at top left, rgba(255, 140, 0, 0.25), transparent 40%), radial-gradient(circle at bottom right, rgba(255, 140, 0, 0.15), transparent 40%), linear-gradient(135deg, #ffffff, #fff5eb); }
.about-visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.about-img-main { width: 300px; height: 300px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8rem; color: rgba(255,255,255,0.15); box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.about-bg-shape { position: absolute; inset: 20px; border: 2px dashed rgba(232,132,26,0.2); border-radius: 50%; z-index: 1; animation: spin 25s linear infinite; }
.about-badge-1, .about-badge-2 { position: absolute; background: var(--white); border-radius: var(--radius); padding: 10px 16px; font-size: 0.82rem; font-weight: 700; box-shadow: var(--shadow-md); z-index: 3; display: flex; align-items: center; gap: 6px; }
.about-badge-1 { top: 30px; right: 20px; color: var(--navy); border-left: 3px solid var(--orange); }
.about-badge-1 i { color: var(--orange); }
.about-badge-2 { bottom: 40px; left: 10px; color: var(--text-mid); border-left: 3px solid var(--navy); }
.about-badge-2 span { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); line-height: 1; }
.about-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.af-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-mid); }
.af-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

/* ── WHY CARD SLIDER ── */
.why-section { background: var(--white); }
.why-slider-wrap { position: relative; display: flex; align-items: center; gap: 16px; }
.why-viewport { overflow: hidden; flex: 1; min-width: 0; }
.why-track { display: flex; gap: 24px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.why-slide { flex: 0 0 calc(25% - 18px); min-width: 0; }
.why-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--border); transition: all 0.3s; height: 100%; }
.why-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--orange); }
.why-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.4rem; margin-bottom: 18px; }
.why-card h5 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.65; margin: 0; }
.why-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); color: var(--navy); font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; box-shadow: var(--shadow-sm); }
.why-arrow:hover { background: var(--orange); border-color: var(--orange); color: white; transform: scale(1.08); }
.why-arrow:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.why-dots-wrap { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.why-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s; border: none; }
.why-dot.active { background: var(--orange); width: 22px; border-radius: 4px; }


/* ── BRANDS ── */


.cs-note-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-top: 12px;
}

.cs-note-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-right: 4px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}



/* ── CERTIFICATIONS SLIDER ── */
.cert-slider-wrapper { overflow: hidden; position: relative; }
.cert-track { display: flex; gap: 12px; transition: transform 0.6s ease; will-change: transform; }
.cert-card {
  min-width: calc((100% - 48px) / 5);
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  height: 140px;
}
.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── BRAND SLIDER ── */
.brand-slider-wrapper { overflow: hidden; position: relative; }
.brand-track { display: flex; gap: 14px; transition: transform 0.6s ease; will-change: transform; }
.brand-slide-card { min-width: calc((100% - 56px) / 5); flex-shrink: 0; }
.brand-slide-card .brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: default;
  min-height: 110px;
}
.brand-slide-card .brand-tile i { font-size: 1.6rem; color: var(--orange); }
.brand-slide-card .brand-tile span { font-size: 0.82rem; font-weight: 600; color: #333; text-align: center; letter-spacing: 0.3px; }

/* ── PRODUCTS SECTION ── */
.products-section { background: var(--off-white); }
.cat-filter-wrap { overflow-x: auto; }
.cat-filter-scroll { display: flex; gap: 8px; padding: 4px 0 12px; width: max-content; min-width: 100%; }
.cat-btn { background: var(--white); color: var(--text-mid); border: 1px solid var(--border); border-radius: 100px; padding: 9px 18px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.22s; white-space: nowrap; font-family: var(--font-body); }
.cat-btn:hover { border-color: var(--orange); color: var(--orange); }
.cat-btn.active { background: var(--navy); color: white; border-color: var(--navy); box-shadow: 0 4px 14px rgba(29,46,74,0.25); }

.product-list-container { display: flex; flex-direction: column; gap: 32px; }
.product-category-block { margin-bottom: 40px; animation: fadeInUp 0.4s ease both; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── PRODUCTS TABLE ── */
.products-table { width: 100%; background: var(--white); border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); border-top: none; }
.pt-head { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 120px; padding: 12px 20px; background: var(--light-bg); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); border-bottom: 1px solid var(--border); }
.pt-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 120px; padding: 15px 20px; align-items: center; border-bottom: 1px solid var(--border); transition: background 0.2s; animation: rowFadeIn 0.4s ease both; }
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: var(--light-bg); }
@keyframes rowFadeIn { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:translateX(0)} }
.pt-name { font-weight: 700; font-size: 0.92rem; color: var(--navy); display: flex; flex-direction: column; gap: 2px; }
.pt-name small { display: block; font-weight: 400; font-size: 0.76rem; color: var(--text-light); margin-top: 2px; }
.pt-origin { font-size: 0.83rem; color: var(--text-mid); display: flex; align-items: center; gap: 5px; }
.pt-origin i { color: var(--orange); font-size: 0.75rem; }
.pt-grade { display: inline-flex; padding: 3px 10px; border-radius: 100px; font-size: 0.74rem; font-weight: 700; }
.grade-premium  { background: rgba(232,132,26,0.12); color: var(--orange-dk); border: 1px solid rgba(232,132,26,0.3); }
.grade-standard { background: rgba(29,46,74,0.08); color: var(--navy); border: 1px solid rgba(29,46,74,0.15); }
.grade-select   { background: rgba(16,150,100,0.1); color: #0a7d55; border: 1px solid rgba(16,150,100,0.25); }
.pt-hs { font-size: 0.8rem; color: var(--text-light); font-family: monospace; }
.pt-status { font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.pt-status.avail   { color: #0a7d55; }
.pt-status.limited { color: #d97706; }
.pt-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pt-action .btn-enquire { background: var(--orange); color: white; border: none; border-radius: 100px; padding: 7px 16px; font-size: 0.76rem; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.pt-action .btn-enquire:hover { background: var(--orange-dk); transform: scale(1.05); }
.btn-enquire { background: var(--orange); color: white; border: none; border-radius: 100px; padding: 6px 14px; font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-enquire:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(29,46,74,0.2); }

/* ── PACKAGING ── */
.packaging-section { background: radial-gradient(circle at top left, rgba(255, 140, 0, 0.25), transparent 40%), radial-gradient(circle at bottom right, rgba(255, 140, 0, 0.15), transparent 40%), linear-gradient(135deg, #ffffff, #fff5eb); }
.pack-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--border); transition: all 0.3s; height: 100%; position: relative; }
.pack-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--orange); background: var(--white); }
.featured-pack { background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%); color: white; border-color: transparent; }
.featured-pack h5, .featured-pack p { color: rgba(255,255,255,0.9); }
.featured-pack .pack-list li { color: rgba(255,255,255,0.7); }
.featured-pack .pack-list li::before { background: var(--orange); }
.pack-feat-badge { position: absolute; top: -12px; left: 24px; background: var(--orange); color: white; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.pack-icon { width: 54px; height: 54px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.35rem; margin-bottom: 18px; }
.featured-pack .pack-icon { background: rgba(255,255,255,0.15); }
.pack-card h5 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pack-card p { color: var(--text-mid); font-size: 0.86rem; line-height: 1.65; margin-bottom: 16px; }
.pack-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pack-list li { font-size: 0.83rem; color: var(--text-mid); padding-left: 16px; position: relative; }
.pack-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ── BRANDS ── */
.brands-section { background: radial-gradient(circle at top left, rgba(255, 140, 0, 0.25), transparent 40%), radial-gradient(circle at bottom right, rgba(255, 140, 0, 0.15), transparent 40%), linear-gradient(135deg, #ffffff, #fff5eb); }
.brand-logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.brand-logo-tile { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; padding: 24px 20px; height: 110px; transition: all 0.25s; cursor: pointer; overflow: hidden; }
.brand-logo-tile:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,132,26,0.15); transform: translateY(-3px); }
.brand-logo-tile img { max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain; filter: grayscale(20%); transition: filter 0.25s, transform 0.25s; }
.brand-logo-tile:hover img { filter: grayscale(0%); transform: scale(1.06); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.brand-tile { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; font-weight: 700; font-size: 0.88rem; color: var(--navy); transition: all 0.25s; cursor: pointer; }
.brand-tile i { font-size: 1.8rem; color: var(--orange); }
.brand-tile:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); background: var(--navy); color: white; }
.brand-tile:hover i { color: var(--orange-lt); }
.partners-note { background: rgba(29,46,74,0.05); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 24px; font-size: 0.88rem; color: var(--text-mid); display: inline-block; }
.partners-note i { color: var(--orange); }
.partners-note a { color: var(--orange); font-weight: 700; }

/* ── CONTACT ── */
.contact-section .section-eyebrow { color: var(--orange-lt); background: rgba(232,132,26,0.12); border-color: rgba(232,132,26,0.25); }
.contact-section .section-title { color: white;  }
#contact {
  background: radial-gradient(circle at top left, rgba(255, 140, 0, 0.25), transparent 40%), radial-gradient(circle at bottom right, rgba(255, 140, 0, 0.15), transparent 40%), linear-gradient(135deg, #fff, #fff5eb);
}
.contact-info-block { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 28px; height: 100%; }
.contact-info-block h4 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: black; }
.ci-item { display: flex; gap: 16px; margin-bottom: 24px; }
.ci-icon { width: 42px; height: 42px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; flex-shrink: 0; }
.ci-item strong { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: 4px; }
.ci-item p { font-size: 0.88rem; line-height: 1.55; margin: 0; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; }
.cf-input { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.88rem; padding: 12px 16px; font-family: var(--font-body); transition: all 0.2s; color: var(--text-dark); }
.cf-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,132,26,0.12); background: white; outline: none; }
.form-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 6px; }

/* ── FOOTER ── */
.main-footer { background: linear-gradient(135deg, #d3d3d3, #a9a9a9); color: #222; }
.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; color: #333; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(0,0,0,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #333; font-size: 0.85rem; transition: all 0.25s; }
.footer-socials a:hover { background: var(--orange); color: white; }
.footer-heading { font-family: var(--font-head); font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #111; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.footer-links li a { font-size: 0.85rem; color: #333; transition: color 0.2s; }
.footer-links li a:hover { color: var(--orange); }
.footer-note { font-size: 0.84rem; color: #444; margin-bottom: 16px; line-height: 1.6; }
img.footer-logo { height: 100px !important; max-width: 200px !important; }
.newsletter-form { display: flex; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,0.15); }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.8); border: none; padding: 11px 16px; font-size: 0.83rem; color: #222; outline: none; font-family: var(--font-body); }
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button { background: var(--orange); border: none; padding: 0 18px; color: white; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--orange-lt); }
.footer-certifications { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-badge { background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius); padding: 6px 12px; font-size: 0.74rem; font-weight: 700; color: #333; display: flex; align-items: center; }
.cert-badge i { color: var(--orange); }
.footer-bottom { padding: 18px 0; font-size: 1rem; color: #FFF; background: #313e57; }
.footer-bottom a { color: #FFF; margin: 0 4px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }
.footer-note a:hover { color: var(--orange); }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; background: var(--orange); color: white; border: none; border-radius: 50%; font-size: 0.9rem; cursor: pointer; box-shadow: 0 4px 16px rgba(232,132,26,0.4); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange-dk); transform: translateY(-3px); }
.btt { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 14px rgba(232,132,26,0.4); z-index: 9999; transition: all 0.25s; }
.btt:hover { background: var(--orange-dk); color: white; transform: translateY(-3px); }

/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 80px; width: 46px; height: 46px; background: #25D366; color: white; border-radius: 50%; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 9999; transition: all 0.3s; }
.whatsapp-float:hover { background: #128C7E; color: white; transform: translateY(-3px) scale(1.05); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-float i { margin: 0; }

/* ── TOAST ── */
.toast-notify { position: fixed; bottom: 90px; right: 28px; background: var(--navy); color: white; padding: 14px 22px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 600; border-left: 4px solid var(--orange); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateX(20px); transition: all 0.35s; z-index: 9999; }
.toast-notify.show { opacity: 1; visibility: visible; transform: translateX(0); }
.toast-notify i { color: var(--orange); }
.toast-msg { position: fixed; bottom: 30px; right: 30px; background: var(--navy); color: white; padding: 12px 22px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; z-index: 9999; box-shadow: 0 8px 30px rgba(29,46,74,0.25); animation: toastIn 0.3s ease; }
@keyframes toastIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════
   READY TO EAT PAGE
═══════════════════════════════════════ */
.rte-hero { background: #313e57; padding: 60px 0 50px; position: relative; overflow: hidden; }
.rte-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.rte-hero-inner { max-width: 1400px; margin-left: auto; margin-right: auto; padding-left: 2rem; padding-right: 2rem; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,132,26,0.15); border: 1px solid rgba(232,132,26,0.3); color: var(--orange-lt); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.rte-hero h1 { font-family: var(--font-head); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; color: white; line-height: 1.05; }
.rte-hero h1 span { color: var(--orange); }
.hero-ship { font-size: 10rem; color: rgba(255,255,255,0.05); position: absolute; right: -20px; bottom: -20px; pointer-events: none; }

.page { padding: 48px; max-width: 1400px; margin: 0 auto; }
.cs { margin-bottom: 72px; }
.cs-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-left: 20px; border-left: 3px solid var(--orange); margin-bottom: 24px; }
.cs-head-text { display: flex; flex-direction: column; gap: 4px; }
.cs-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin: 0; }
.cs-title { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.1; text-transform: uppercase; }
.cs-note { font-size: 0.85rem; color: var(--text-mid); margin: 4px 0 0; }
.cs-count { background: var(--navy); color: white; font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; padding: 12px 22px; border-radius: 8px; text-align: center; white-space: nowrap; min-width: 90px; flex-shrink: 0; line-height: 1; }
.cs-count small { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; opacity: 0.6; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.cs-content-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.cs-content { display: grid; grid-template-columns: 280px 1fr; align-items: stretch; min-height: auto; }
.cs-content.img-right { grid-template-columns: 1fr 280px; }
.cs-content.img-right .cs-image-container { grid-column: 2; grid-row: 1; }
.cs-content.img-right .cs-products-area   { grid-column: 1; grid-row: 1; }
.cs-image-container { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--off-white) 0%, var(--light-bg) 100%); min-height: 100%; display: flex; align-items: stretch; }
.cs-content.img-left  .cs-image-container { border-right: 1px solid var(--border); }
.cs-content.img-right .cs-image-container { border-left:  1px solid var(--border); }
.cs-image-container::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(232,132,26,0.06) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.cs-image { width: 100%; height: 100%; min-height: 200px; max-height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.4s ease; position: relative; z-index: 0; }
.cs-image-container:hover .cs-image { transform: scale(1.04); }
.cs-products-area { padding: 24px 28px; display: flex; flex-direction: column; min-width: 0; }
.prod-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; align-items: start; }
.prod-row { display: flex; align-items: center; gap: 12px; padding: 11px 16px; min-height: 48px; border: 1px solid var(--border); background: var(--off-white); border-radius: 8px; transition: all 0.2s; cursor: pointer; }
.prod-row:hover { background: var(--white); border-color: var(--orange); box-shadow: 0 2px 10px rgba(232,132,26,0.12); transform: translateX(3px); }
.pr-icon { width: 30px; height: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pr-icon i { font-size: 0.72rem; color: var(--orange); }
.pr-name { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.2; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.cs-tag { background: var(--off-white); border: 1px solid var(--border); color: var(--text-mid); font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; display: flex; align-items: center; gap: 5px; }
.cs-tag i { color: var(--orange); font-size: 0.65rem; }

.features-text-section { margin-top: 40px; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); border-radius: 16px; padding: 24px 32px; border: 1px solid var(--border); }
.features-text-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); }
.features-text-header i { font-size: 1.5rem; color: var(--orange); }
.features-text-header h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 0; }
.features-text-list { display: flex; flex-direction: column; gap: 12px; }
.feature-text-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; background: var(--white); border-radius: 10px; border: 1px solid var(--border); transition: all 0.3s ease; }
.feature-text-item:hover { border-color: var(--orange); box-shadow: 0 2px 10px rgba(232,132,26,0.08); transform: translateX(5px); }
.feature-text-item.highlight { background: linear-gradient(135deg, rgba(232,132,26,0.06) 0%, rgba(232,132,26,0.03) 100%); border-color: var(--orange); }
.feature-text-item i { width: 36px; height: 36px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; font-size: 0.9rem; }
.feature-text-item p { margin: 0; font-size: 0.9rem; color: var(--text-dark); line-height: 1.5; }

.mini-footer { background: var(--navy-deep); padding: 32px 0; text-align: center; color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.mini-footer a { color: var(--orange); text-decoration: none; }
.fn { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: rgba(255,255,255,0.8); }
.fs { color: var(--orange); font-family: var(--font-head); font-size: 1.2rem; }

/* ── About Image ── */
.hs-img-side { position: relative; overflow: hidden; }
.hs-img-wrap { position: relative; height: auto; min-height: 400px; max-height: 450px; overflow: hidden; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); width: 75%; margin: 30px auto; }
.hs-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); filter: contrast(1.05) saturate(1.1); }
.hs-img-wrap:hover img { transform: scale(1.08); }
.hs-badge { position: absolute; bottom: 60px; right: 80px; background: linear-gradient(135deg, var(--orange) 0%, #d46a0f 100%); color: white; padding: 20px 28px; border-radius: 16px; box-shadow: 0 15px 40px rgba(232,132,26,0.4), 0 5px 15px rgba(0,0,0,0.2); display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 10; border: 2px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%,100%{transform:scale(1);box-shadow:0 15px 40px rgba(232,132,26,0.4)} 50%{transform:scale(1.02);box-shadow:0 20px 50px rgba(232,132,26,0.6)} }
.hs-badge-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hs-badge-txt { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.95; }
.hs-img-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(29,46,74,0.3) 100%); z-index: 5; pointer-events: none; }
.hs-img-wrap::after { content: ''; position: absolute; top: 20px; right: 20px; width: 60px; height: 60px; border-top: 3px solid var(--orange); border-right: 3px solid var(--orange); z-index: 6; opacity: 0.6; }

/* ═══════════════════════════════════════
   RESPONSIVE — General
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .prod-cols { columns: 2; }
  .brand-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .why-slide { flex: 0 0 calc(33.333% - 16px); }
}

@media (max-width: 1100px) {
  .cs-content,
  .cs-content.img-right { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .cs-content.img-right .cs-image-container { grid-column: 1; grid-row: 1; }
  .cs-content.img-right .cs-products-area   { grid-column: 1; grid-row: 2; }
  .cs-image-container { height: 260px; border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--border); }
  .cs-image { min-height: unset; height: 260px; }
  .prod-cols { columns: 2; }
}

@media (max-width: 992px) {
  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 2.6rem; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .stat-divider { display: none; }
  .pt-head, .pt-row { grid-template-columns: 2fr 1.5fr 1fr 0 0 100px; }
  .pt-head > *:nth-child(4), .pt-head > *:nth-child(5),
  .pt-row  > *:nth-child(4), .pt-row  > *:nth-child(5) { display: none; }
  .why-slide { flex: 0 0 calc(50% - 12px); }
  .why-slider-wrap { gap: 8px; }
  .why-arrow { width: 36px; height: 36px; font-size: 0.75rem; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .pt-head { display: none; }
  .pt-row { grid-template-columns: 1fr auto; gap: 8px; padding: 14px 16px; }
  .pt-row > *:nth-child(n+2):not(:last-child) { display: none; }
  .about-visual { height: 260px; }
  .about-img-main { width: 200px; height: 200px; font-size: 5rem; }
  .brand-logo-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .brand-logo-tile { height: 90px; padding: 16px 12px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 24px 20px; }
  .rte-hero h1 { font-size: 2.4rem; }
  .page { padding: 28px 20px 60px; }
  .cs-products-area { padding: 16px; }
  .prod-cols { columns: 1; }
  /* Mobile navbar - fixed always visible */
  .main-nav { position: fixed !important; top: 0; left: 0; right: 0; z-index: 9999; background: white; }
  .navbar.sticky-top { position: fixed !important; top: 0; left: 0; right: 0; z-index: 9999; }
  body { padding-top: 60px; }
  /* Hide topbar on mobile */
  .topbar { display: none; }
  /* Mobile navbar fixes */
  .navbar-toggler { border: none; padding: 8px 12px; }
  .navbar-toggler:focus { box-shadow: none; }
  .navbar-toggler-icon { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2829,46,74,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 24px; height: 24px;
  }
  .site-logo { height: 40px; max-width: 150px; }
  .navbar-nav { padding: 10px 0; background: white; }
  .nav-link { padding: 8px 16px !important; font-size: 0.9rem; }
  /* Mobile: 1 item centered for old brand slider */
  .brand-slide-card { min-width: 100% !important; max-width: 100% !important; }
  .brand-track { justify-content: center; gap: 4px; }
  /* Mobile: 2 items for new brand carousel */
  .brand-carousel-slide { flex: 0 0 calc(50% - 8px) !important; min-width: unset !important; }
  .brand-carousel-wrapper { gap: 10px !important; }
  .brand-carousel-btn { width: 32px !important; height: 36px !important; border-radius: 3px !important; font-size: 0.75rem !important; }
  .brand-logo-card { height: 90px !important; padding: 10px !important; }
  .brand-carousel-track { gap: 16px !important; }
  /* Mobile: 2 items for cert */
  .cert-card { min-width: calc((100% - 12px) / 2); max-width: calc((100% - 12px) / 2); }
  .cert-track { gap: 12px; justify-content: flex-start; }
  .why-arrow { width: 20px; height: 20px; font-size: 0.55rem; flex-shrink: 0; border-width: 1px; }
  .why-slider-wrap { gap: 4px; }
  /* Mobile WhatsApp button positioning */
  .whatsapp-float { bottom: 75px; right: 20px; width: 42px; height: 42px; font-size: 1.1rem; }
  /* Mobile Back to top button positioning */
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .cs-head { flex-direction: column; align-items: flex-start; }
  .cs-count { align-self: flex-start; }
  .prod-cols { columns: 1; }
  .prod-row { padding: 9px 12px; }
  .pr-name { font-size: 0.78rem; }
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-logo-tile { height: 80px; }
  /* Hide topbar on mobile */
  .topbar { display: none; }
  /* Mobile navbar - fixed always visible */
  .main-nav { position: fixed !important; top: 0; left: 0; right: 0; z-index: 9999; background: white; }
  .navbar.sticky-top { position: fixed !important; top: 0; left: 0; right: 0; z-index: 9999; }
  body { padding-top: 60px; }
  /* Mobile navbar fixes */
  .navbar-toggler { border: none; padding: 8px 12px; }
  .navbar-toggler:focus { box-shadow: none; }
  .navbar-toggler-icon { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2829,46,74,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 24px; height: 24px;
  }
  .site-logo { height: 40px; max-width: 150px; }
  .navbar-nav { padding: 10px 0; background: white; }
  .nav-link { padding: 8px 16px !important; font-size: 0.9rem; }
  /* Mobile: 1 item centered for old brand slider */
  .brand-slide-card { min-width: 100% !important; max-width: 100% !important; }
  .brand-track { justify-content: center; gap: 4px; }
  /* Mobile: 2 items for new brand carousel */
  .brand-carousel-slide { flex: 0 0 calc(50% - 6px) !important; min-width: unset !important; }
  .brand-carousel-wrapper { gap: 8px !important; }
  .brand-carousel-btn { width: 28px !important; height: 32px !important; border-radius: 3px !important; font-size: 0.7rem !important; }
  .brand-logo-card { height: 80px !important; padding: 8px !important; }
  .brand-carousel-track { gap: 12px !important; }
  /* Mobile: 2 items for cert */
  .cert-card { min-width: calc((100% - 12px) / 2); max-width: calc((100% - 12px) / 2); }
  .cert-track { gap: 12px; justify-content: flex-start; }
  .why-arrow { width: 18px; height: 18px; font-size: 0.5rem; flex-shrink: 0; border-width: 1px; }
  .why-slider-wrap { gap: 4px; }
  .why-slide { flex: 0 0 100%; }
  /* Small mobile WhatsApp button positioning */
  .whatsapp-float { bottom: 70px; right: 18px; width: 40px; height: 40px; font-size: 1rem; }
  /* Small mobile Back to top button positioning */
  .back-to-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }
}