/* ============================================
   SHIM INTERNATIONAL IMPORT EXPORT CO.
   Stylesheet v3 — Noto Sans | #fefefe bg
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

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

:root {
  --navy:          #0A1F44;
  --navy-light:    #1a3a6e;
  --gold:          #C9A84C;
  --gold-light:    #e8c76a;
  --orange:        #E87B35;
  --white:         #fefefe;
  --off-white:     #F5F6FA;
  --gray-50:       #F9FAFB;
  --gray-100:      #F1F3F6;
  --gray-200:      #E3E6EC;
  --gray-400:      #9CA3AF;
  --gray-600:      #4B5563;
  --gray-800:      #1F2937;
  --text-primary:  #0A1F44;
  --text-secondary:#4B5563;
  --text-light:    #9CA3AF;
  --font-display:  'Noto Sans', sans-serif;
  --font-body:     'Noto Sans', sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:        0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.11);
  --shadow-xl:     0 24px 64px rgba(0,0,0,0.13);
  --transition:    all 0.3s ease;
}

html { scroll-behavior: smooth; }

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

.container { max-width: 1250px; margin: 0 auto; padding: 0 25px; }
.section    { padding: 96px 0; }
img         { max-width: 100%; display: block; }
a           { text-decoration: none; color: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #fff 30%, forestgreen 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text {
  background: linear-gradient(
    135deg,
    #C9A84C 0%,
gold 50%,
    #FF8C00 75%,
    #FF6A00 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: alibabaBlink 5s ease infinite;
}

@keyframes alibabaBlink {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.section-header  { 
  text-align: center; 
  max-width: 600px; 
  margin: 0 auto 56px; 
}
.section-title   { 
  margin-bottom: 0.75rem; 
  font-size: clamp(1.8rem, 3vw, 2.8rem); 
  font-weight: 900;
}
.section-sub     { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background:forestgreen;
  color: #fefefe;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: darkgreen;
  color: #fefefe;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,31,68,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #ff6900;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: forestgreen;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  background: #ff6900;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 25px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,31,68,0.2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-full    { width: 100%; justify-content: center; border-radius: var(--radius); }

.btn-mobile {
  display: block;
  background: #ff6900;
  color: #fefefe;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  text-align: center;
  margin-top: 8px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(254,254,254,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
}

.logo-text-wrap { display: flex; flex-direction: column; gap: 1px; }

.logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1.2;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active     { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 25px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu.open    { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero-section{
background: var(--navy);
color: #fefefe;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 220px 25px 88px 25px;
  max-width: 1250px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  font-size: .8rem;
  color: orange;
  border: 1px solid orange;
  border-radius: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease both;
}

.hero-title {
  font-size: clamp(3rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s 0.1s ease both;
  
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.5s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.5s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeInUp 0.5s 0.4s ease both;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.stat        { display: flex; flex-direction: column; gap: 3px; }
.stat-num    { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label  { font-size: 0.72rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider{ width: 1px; height: 40px; background: var(--gray-200); }

/* ============================================
   CAROUSEL
   ============================================ */

.hero-right { animation: fadeInUp 0.6s 0.2s ease both; }

.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-card {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.carousel-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,31,68,0.85));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 40px 24px 20px;
}

.carousel-nav {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: white; transform: scale(1.1); }

.carousel-dots { display: flex; gap: 6px; }

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active { background: white; transform: scale(1.3); }


/* ============================================
   TRUST BAR - B2B INTERNATIONAL LEVEL
   Right to Left Auto-Scroll
   ============================================ */

.home-trust-bar {
  background: #1a3a6e;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}

.container-fluid {
  max-width: 100%;
  padding: 0 25px;
  margin: 0 auto;
  overflow: hidden;
}

.trust-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.trust-scroll-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: trustScrollRightToLeft 25s linear infinite;
  width: max-content;
}

/* Hover Pause */
.home-trust-bar:hover .trust-scroll-track {
  animation-play-state: paused;
}

/* Individual Items */
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.03em;
  padding: 0 4px;
  font-family: var(--font-display);
  transition: var(--transition);
  flex-shrink: 0;
}

.trust-item:hover {
  color: var(--gold);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.8;
  margin-right: 2px;
}

.trust-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.4rem;
  padding: 0 20px;
  flex-shrink: 0;
  font-weight: 100;
}

/* ============================================
   ANIMATION - Right to Left Scroll
   ============================================ */

@keyframes trustScrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   ABOUT
   ============================================ */

.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.75; margin-bottom: 1rem; }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 25px ;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.about-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon   { font-size: 2.8rem; margin-bottom: 12px; }
.about-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.about-card p  { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   PRODUCTS PREVIEW
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 1;
}

.product-img-wrap         { overflow: hidden; height: 200px; }
.product-img-wrap img     { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-card-body        { padding: 20px; }
.product-card-body h3     { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.product-card-body p      { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }

.product-link             { font-size: 0.82rem; font-weight: 600; color: var(--gold); transition: var(--transition); }
.product-link:hover       { color: var(--orange); }

.products-cta { text-align: center; }

/* ============================================
   WHY US
   ============================================ */

.why-us { background: var(--off-white); }

.why-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 64px;
  box-shadow: var(--shadow);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.why-num  { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--gray-200); line-height: 1; margin-bottom: 8px;}
.why-item h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.why-item p  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section { padding: 66px 0; }

.cta-inner {
  background: var(--navy);
  border-radius: 24px;
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner .eyebrow { color: var(--gold); }
.cta-inner h2       { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; color: white; }
.cta-inner p        { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
.cta-buttons        { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-inner .btn-primary       { background: white; color: var(--navy); }
.cta-inner .btn-primary:hover { background: var(--off-white); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  padding: 160px 25px 72px;
  text-align: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; color: var(--navy); }
.page-hero p  { color: var(--text-secondary); font-size: 1.05rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ============================================
   PRODUCTS FULL PAGE
   ============================================ */

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

.product-full-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
.product-full-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pf-img-wrap { position: relative; overflow: hidden; min-height: 250px; }
.pf-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-full-card:hover .pf-img-wrap img { transform: scale(1.07); }

.pf-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 1;
}
.pf-badge.hot   { background: var(--orange); }
.pf-badge.trend { background: #25D366; }
.pf-badge.new   { background: var(--gold); color: var(--navy); }

.pf-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.pf-body h2  { font-size: 1.4rem; margin-bottom: 12px; color: var(--navy); }
.pf-desc     { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; }

.pf-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--gray-100);
}

.spec          { display: flex; flex-direction: column; gap: 2px; }
.spec span     { font-size: 0.68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.spec strong   { font-size: 0.85rem; color: var(--navy); font-weight: 600; }

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff6900;
  color:#fefefe;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--transition);
  align-self: flex-start;
}
.btn-product:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,31,68,0.2);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-form-wrap h2  { font-size: 1.6rem; margin-bottom: 8px; color: var(--navy); }
.contact-form-wrap > p { color: var(--text-secondary); margin-bottom: 32px; font-size: 0.95rem; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group   { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,31,68,0.08);
}

.form-group select option { background: white; color: var(--navy); }
.form-group textarea       { resize: vertical; min-height: 130px; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  border-radius: var(--radius-lg);
}
.success-icon    { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--navy); }
.form-success p  { color: var(--text-secondary); margin-bottom: 8px; font-size: 0.9rem; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item     { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.ci-icon          { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-item div { display: flex; flex-direction: column; gap: 3px; }

.contact-item strong {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item a,
.contact-item span { font-size: 0.9rem; color: var(--text-primary); line-height: 1.5; }
.contact-item a    { color: var(--gold); }
.contact-item a:hover { color: var(--orange); }

.process-steps { display: flex; flex-direction: column; gap: 14px; }
.process-step  { display: flex; gap: 12px; align-items: flex-start; }

.ps-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step div    { display: flex; flex-direction: column; gap: 2px; }
.process-step strong { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.process-step span   { font-size: 0.78rem; color: var(--text-light); }

/* ============================================
   FOOTER
   ============================================ */

.footer { background: var(--navy); padding: 56px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo  { width: 66px; height: 66px; object-fit: contain; border-radius: 8px; margin-bottom: 12px; }
.footer-brand p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-links a       { font-size: 1rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: white; }

.footer-contact p     { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact a     { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 1rem; color: rgba(255,255,255,0.3); }

/* ============================================
   ANIMATIONS
   ============================================ */

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE - Desktop First
   ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero { 
    grid-template-columns: 1fr; 
    padding: 140px 20px 64px; 
    gap: 48px; 
  }
  .hero-right { order: -1; }
  .carousel-card img { height: 360px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { padding: 48px 20px; }
  .cta-inner { padding: 56px 20px; }
  .product-full-card { grid-template-columns: 1fr; }
  .pf-img-wrap { min-height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .footer { padding: 40px 20px 0; }
  .section { padding: 72px 0; }
  .nav-inner { padding: 15px 20px; }
  .container { padding: 0 20px; }
  .page-hero { padding: 140px 20px 56px; }
  .pf-body { padding: 28px 20px; }
  .contact-form-wrap { padding: 32px 20px; }
  .container-fluid { padding: 0 20px; }
  .trust-item { font-size: 0.82rem; }
  .trust-divider { padding: 0 14px; }
  .trust-scroll-track { animation-duration: 20s; }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .section { padding: 56px 15px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 12px 15px; }
  .hero { 
    padding: 120px 15px 48px; 
    gap: 32px;
  }
  .hero-title { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-inner { padding: 28px 15px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-grid { gap: 28px; }
  .cta-inner { padding: 36px 15px; }
  .cta-inner h2 { font-size: 1.6rem; }
  .trust-dot { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 32px 15px 0; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 0; }
  .contact-form-wrap { padding: 20px 15px; }
  .pf-specs { grid-template-columns: 1fr 1fr; }
  .pf-body { padding: 20px 15px; }
  .product-full-card { grid-template-columns: 1fr; }
  .pf-img-wrap { min-height: 200px; }
  .container { padding: 0 15px; }
  .page-hero { padding: 120px 15px 48px; }
  .page-hero h1 { font-size: 1.8rem; }
  .contact-grid { gap: 32px; }
  .contact-card { padding: 18px 15px; }
  .home-trust-bar { padding: 14px 0; }
  .container-fluid { padding: 0 15px; }
  .trust-item { font-size: 0.7rem; font-weight: 500; gap: 4px; }
  .trust-icon { font-size: 0.55rem; }
  .trust-divider { padding: 0 10px; font-size: 0.3rem; }
  .trust-scroll-track { animation-duration: 18s; }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .section { padding: 48px 12px; }
  .hero-title { font-size: 1.8rem; }
  .hero { padding: 100px 12px 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary { width: 100%; justify-content: center; }
  .pf-specs { grid-template-columns: 1fr; }
  .pf-body { padding: 16px 12px; }
  .pf-body h2 { font-size: 1.1rem; }
  .contact-form-wrap { padding: 16px 12px; }
  .why-inner { padding: 20px 12px; }
  .cta-inner { padding: 28px 12px; }
  .footer { padding: 24px 12px 0; }
  .footer-bottom { padding: 14px 12px; }
  .container { padding: 0 12px; }
  .page-hero { padding: 100px 12px 40px; }
  .nav-inner { padding: 10px 12px; }
  .mobile-menu { padding: 12px 12px 20px; }
  .home-trust-bar { padding: 10px 0; }
  .container-fluid { padding: 0 12px; }
  .trust-item { font-size: 0.58rem; font-weight: 500; gap: 3px; }
  .trust-icon { font-size: 0.45rem; }
  .trust-divider { padding: 0 6px; font-size: 0.25rem; }
  .trust-scroll-track { animation-duration: 15s; }
}