/* ================================================================
   Prime Charters International Limited – Main Stylesheet
   Premium dark navy + gold aesthetic | Global commodity trading
   ================================================================ */

/* ── Google Fonts: Cormorant Garamond + Inter + Rajdhani ───────── */

/* ── CSS Custom Properties ─────────────────────────────────────── */
:root {
  /* Navy palette */
  --navy-950: #020b18;
  --navy-900: #05101f;
  --navy-800: #0a1e35;
  --navy-700: #0f2a47;
  --navy-600: #163558;
  --navy-500: #1d4270;
  --navy-400: #2a5d9e;
  --navy-300: #3a7bc8;

  /* Gold palette */
  --gold-50:  #fffbeb;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #d4a017;   /* Primary gold */
  --gold-600: #b8860b;   /* Dark gold */
  --gold-700: #92660a;
  --gold-800: #6b4a07;

  /* Neutrals */
  --zinc-50:  #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;

  /* Semantic */
  --primary:        var(--gold-500);
  --primary-hover:  var(--gold-600);
  --primary-light:  rgba(212,160,23,.12);
  --accent:         var(--gold-400);
  --text-primary:   var(--navy-900);
  --text-secondary: #4a5568;
  --text-muted:     #718096;
  --bg-page:        #ffffff;
  --bg-section:     #f8f9fc;
  --bg-dark:        var(--navy-900);
  --border:         #e2e8f0;
  --shadow-sm:  0 1px 3px 0 rgba(0,0,0,.08);
  --shadow:     0 4px 12px 0 rgba(0,0,0,.1);
  --shadow-md:  0 10px 25px -3px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 40px -8px rgba(0,0,0,.15);
  --shadow-xl:  0 30px 60px -12px rgba(0,0,0,.25);
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .5s cubic-bezier(.4,0,.2,1);
  --footer-bg:  #05101f;
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Arial', sans-serif !important;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-page);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}
h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; height: auto; }
::selection { background: var(--gold-200); color: var(--navy-900); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 99px; }

/* ── Utility ───────────────────────────────────────────────────── */
.text-gold    { color: var(--primary); }
.bg-gold      { background: var(--primary); }
.section-pad  { padding: 88px 0; }
.section-pad-sm { padding: 56px 0; }

/* ── Section Labels ────────────────────────────────────────────── */
.pc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(212,160,23,.2);
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.pc-section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--navy-900);
  margin-bottom: 16px;
}
.pc-section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.pc-btn-primary {
  background: var(--primary);
  color: var(--navy-900);
  border-color: var(--primary);
  padding: 12px 30px;
  box-shadow: 0 4px 18px rgba(212,160,23,.4);
}
.pc-btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,.5);
}
.pc-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
  padding: 12px 30px;
}
.pc-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
  color: #fff;
  transform: translateY(-2px);
}
.pc-btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  padding: 9px 22px;
  font-size: .875rem;
  width: 100%;
}
.pc-btn-whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}
.pc-btn-buy {
  background: var(--primary);
  color: var(--navy-900);
  border-color: var(--primary);
  padding: 10px 20px;
  font-size: .9rem;
  position: relative;
  overflow: hidden;
}
.pc-btn-buy:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
}
.pc-btn-buy:active { transform: scale(.98); }

/* ── NAVBAR ────────────────────────────────────────────────────── */
.pc-navbar {
  background: rgba(2,11,24,.94);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(212,160,23,.12);
  padding: 14px 0;
  transition: all var(--transition);
  z-index: 1050;
}
.pc-navbar.scrolled {
  padding: 10px 0;
  background: rgba(2,11,24,.99);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.pc-brand { display: flex; align-items: center; }

/* Logo emblem */
.pc-logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-logo-emblem {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}
.pc-logo-p, .pc-logo-c {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
  line-height: 1;
}
.pc-logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.pc-logo-prime {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .08em;
}
.pc-logo-charters {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: .6rem;
  color: var(--gold-400);
  letter-spacing: .14em;
}

.pc-nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--transition);
}
.pc-nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 99px;
  transition: transform var(--transition);
}
.pc-nav-link:hover,
.pc-nav-link.active { color: #fff !important; }
.pc-nav-link:hover::after,
.pc-nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.pc-search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition);
}
.pc-search-btn:hover { color: var(--gold-400); }

/* Hamburger */
.pc-toggler {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: all var(--transition);
  transform-origin: center;
}
.pc-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pc-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.pc-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search Panel */
.pc-search-panel {
  background: rgba(2,11,24,.99);
  border-top: 1px solid rgba(212,160,23,.1);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition);
}
.pc-search-panel.open { max-height: 100px; padding: 16px 0; }
.pc-search-inner {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,160,23,.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.pc-search-icon { color: var(--gold-400); padding: 0 16px; }
.pc-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
}
.pc-search-input::placeholder { color: rgba(255,255,255,.35); }
.pc-search-submit {
  background: var(--primary);
  border: none;
  color: var(--navy-900);
  padding: 12px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background var(--transition);
}
.pc-search-submit:hover { background: var(--gold-400); }
.pc-search-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  padding: 12px 16px;
  cursor: pointer;
  transition: color var(--transition);
}
.pc-search-close:hover { color: #fff; }

/* ── HERO ──────────────────────────────────────────────────────── */
.pc-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}
.pc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
  transform: scale(1.06);
  transition: transform 10s ease, opacity 1s ease;
}
.pc-hero-bg.loaded { transform: scale(1); opacity: .3; }

/* Animated grid */
.pc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.pc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(2,11,24,.92) 0%,
    rgba(10,30,53,.65) 50%,
    rgba(2,11,24,.88) 100%);
  z-index: 1;
}
.pc-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 220px;
  background: linear-gradient(transparent, var(--bg-page));
  z-index: 2;
}

/* Gold orb glow */
.pc-hero-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,.12) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.pc-hero-content {
  position: relative;
  z-index: 10;
  padding: 130px 0 100px;
}
.pc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.35);
  color: var(--gold-300);
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  animation: fadeInDown .6s ease both;
}
.pc-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.pc-hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  animation: fadeInUp .7s .1s ease both;
}
.pc-hero-title .pc-highlight {
  color: var(--gold-400);
  position: relative;
  font-style: italic;
}
.pc-hero-title .pc-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  border-radius: 99px;
}
.pc-hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.68);
  max-width: 620px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.75;
  animation: fadeInUp .7s .2s ease both;
}
.pc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp .7s .3s ease both;
}
.pc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 68px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: fadeInUp .7s .45s ease both;
}
.pc-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.pc-stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Scroll indicator */
.pc-scroll-indicator {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
.pc-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
}

/* ── MARQUEE STRIP ─────────────────────────────────────────────── */
.pc-marquee-strip {
  background: var(--navy-900);
  border-top: 1px solid rgba(212,160,23,.15);
  border-bottom: 1px solid rgba(212,160,23,.15);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.pc-marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.pc-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  border-right: 1px solid rgba(212,160,23,.15);
}
.pc-marquee-item i { color: var(--gold-400); font-size: .65rem; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FEATURES STRIP ────────────────────────────────────────────── */
.pc-features-strip { background: var(--navy-900); }
.pc-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.pc-feature-item:last-child { border-right: none; }
.pc-feature-item:hover { background: rgba(212,160,23,.04); }
.pc-feature-icon {
  width: 48px; height: 48px;
  background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pc-feature-text h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  letter-spacing: .02em;
}
.pc-feature-text p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

/* ── PRODUCTS SECTION ──────────────────────────────────────────── */
.pc-products { background: var(--bg-section); }
.pc-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

/* Category Filter Pills */
.pc-filter-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.pc-pill {
  padding: 8px 20px;
  border-radius: 99px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.pc-pill:hover, .pc-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(212,160,23,.35);
}

/* Product Card */
.pc-product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pc-product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,160,23,.3);
}
.pc-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  z-index: 5;
}
.pc-product-card:hover::before { transform: scaleX(1); }

.pc-product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 6;
  background: var(--primary);
  color: var(--navy-900);
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.pc-product-badge.on-request { background: var(--navy-700); color: var(--gold-300); }
.pc-product-badge.out-of-stock { background: #6b7280; color: #fff; }

/* Image carousel */
.pc-product-images {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  aspect-ratio: 4/3;
}
.pc-product-img-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .45s ease, transform .45s ease;
  transform: scale(1.04);
}
.pc-product-img-slide.active { opacity: 1; transform: scale(1); }
.pc-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,.2);
}
.pc-img-placeholder i { font-size: 2.5rem; }

.pc-img-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.pc-img-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: all var(--transition);
  border: none; padding: 0;
}
.pc-img-dot.active { background: var(--gold-400); width: 20px; border-radius: 99px; }
.pc-img-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: rgba(2,11,24,.65);
  color: #fff;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition);
}
.pc-img-arrow.prev { left: 10px; }
.pc-img-arrow.next { right: 10px; }
.pc-product-images:hover .pc-img-arrow { opacity: 1; }

/* Card Body */
.pc-product-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-product-category {
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pc-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
  margin: 0;
}
.pc-product-name a { color: inherit; }
.pc-product-name a:hover { color: var(--primary); }
.pc-product-desc {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin: 0;
}
.pc-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.pc-product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
}
.pc-product-price .pc-currency {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 2px;
}
.pc-price-negotiable {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── ABOUT SECTION ─────────────────────────────────────────────── */
.pc-about { background: var(--bg-page); overflow: hidden; }
.pc-about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.pc-about-img-wrap img {
  width: 100%; height: 540px;
  object-fit: cover;
  display: block;
}
.pc-about-float {
  position: absolute;
  bottom: 32px; left: -20px;
  background: var(--primary);
  color: var(--navy-900);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}
.pc-about-float .pc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
}
.pc-about-float .pc-label { font-size: .8rem; font-weight: 600; margin-top: 4px; opacity: .85; }

.pc-about-checks {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.pc-about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
  font-weight: 400;
  color: var(--text-secondary);
}
.pc-about-checks li:last-child { border: none; }
.pc-about-checks li .pc-check-icon {
  width: 24px; height: 24px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── TEAM SECTION ──────────────────────────────────────────────── */
.pc-team { background: var(--bg-section); }
.pc-team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.pc-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,160,23,.3);
}
.pc-team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
  border: 3px solid rgba(212,160,23,.3);
}
.pc-team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.pc-team-role {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.pc-team-bio { font-size: .875rem; color: var(--text-secondary); }

/* ── PARTNERS SECTION ──────────────────────────────────────────── */
.pc-partners { background: var(--navy-900); }
.pc-partner-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,160,23,.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.pc-partner-card:hover {
  background: rgba(212,160,23,.06);
  border-color: rgba(212,160,23,.3);
  transform: translateY(-4px);
}
.pc-partner-flag { font-size: 2.5rem; margin-bottom: 14px; }
.pc-partner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.pc-partner-country {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── FAQ SECTION ───────────────────────────────────────────────── */
.pc-faq { background: var(--bg-page); }
.pc-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.pc-faq-item.open {
  border-color: rgba(212,160,23,.35);
  box-shadow: 0 4px 20px rgba(212,160,23,.08);
}
.pc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
  user-select: none;
  gap: 16px;
}
.pc-faq-icon {
  width: 28px; height: 28px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.pc-faq-item.open .pc-faq-icon {
  background: var(--primary);
  color: var(--navy-900);
  transform: rotate(45deg);
}
.pc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.pc-faq-item.open .pc-faq-answer { max-height: 500px; }
.pc-faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  font-size: .9375rem;
}

/* ── CONTACT SECTION ───────────────────────────────────────────── */
.pc-contact { background: var(--bg-section); }
.pc-contact-card {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.pc-contact-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,160,23,.15) 0%, transparent 65%);
  pointer-events: none;
}
.pc-contact-card h2 { color: #fff; margin-bottom: 12px; }
.pc-contact-card p { color: rgba(255,255,255,.6); margin-bottom: 32px; }
.pc-contact-items { display: flex; flex-direction: column; gap: 22px; }
.pc-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.pc-contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}
.pc-contact-item-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.pc-contact-item-text a,
.pc-contact-item-text span { color: #fff; font-size: .9375rem; }

.pc-contact-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  height: 100%;
}
.pc-form-group { margin-bottom: 20px; }
.pc-form-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.pc-form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--navy-900);
  transition: all var(--transition);
  outline: none;
}
.pc-form-control:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,160,23,.12);
}
.pc-form-control.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
textarea.pc-form-control { resize: vertical; min-height: 130px; }

/* ── WHATSAPP FLOAT ────────────────────────────────────────────── */
.pc-whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all var(--transition);
  text-decoration: none;
}
.pc-whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
  color: #fff;
}
.pc-wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-900);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}
.pc-whatsapp-float:hover .pc-wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── BACK TO TOP ───────────────────────────────────────────────── */
.pc-back-top {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 9999;
  width: 40px; height: 40px;
  background: var(--navy-800);
  color: #fff;
  border: 1px solid rgba(212,160,23,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
}
.pc-back-top.visible { opacity: 1; transform: translateY(0); }
.pc-back-top:hover { background: var(--primary); border-color: var(--primary); color: var(--navy-900); }

/* ── FOOTER ────────────────────────────────────────────────────── */
.pc-footer { background: var(--footer-bg); color: rgba(255,255,255,.6); }
.pc-footer-wave { line-height: 0; background: var(--bg-page); }
.pc-footer-wave svg { width: 100%; display: block; }
.pc-footer-main { padding: 72px 0 48px; }

.pc-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pc-footer-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.pc-footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  max-width: 340px;
  margin-bottom: 28px;
}
.pc-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.pc-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  transition: all var(--transition);
  text-decoration: none;
}
.pc-social-btn:hover { background: var(--primary); color: var(--navy-900); transform: translateY(-3px); }
.pc-social-wa:hover { background: #25d366 !important; color: #fff !important; }

.pc-footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.pc-footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-footer-links a {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-footer-links a::before {
  content: '→';
  font-size: .7rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
}
.pc-footer-links a:hover { color: #fff; padding-left: 4px; }
.pc-footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.pc-footer-contact {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pc-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
}
.pc-contact-icon {
  width: 30px; height: 30px;
  background: rgba(212,160,23,.12);
  color: var(--gold-400);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}
.pc-footer-contact a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.pc-footer-contact a:hover { color: var(--gold-400); }

.pc-footer-cta-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.pc-btn-wa-footer {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  padding: 10px 20px;
  font-size: .875rem;
  border-radius: var(--radius);
}
.pc-btn-wa-footer:hover { background: #128c7e; border-color: #128c7e; color: #fff; }

.pc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
}
.pc-copyright { font-size: .8125rem; color: rgba(255,255,255,.3); }
.pc-footer-legal {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}
.pc-footer-legal a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.pc-footer-legal a:hover { color: var(--gold-400); }
.pc-sep { margin: 0 8px; }

/* ── PAGE HERO (inner pages) ───────────────────────────────────── */
.pc-page-hero {
  background: var(--navy-900);
  padding: 90px 0 68px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pc-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,.1) 0%, transparent 70%);
}
.pc-page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--bg-section));
}
.pc-page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.pc-page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.pc-page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── BREADCRUMB ────────────────────────────────────────────────── */
.pc-breadcrumb {
  background: var(--bg-section);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pc-breadcrumb-list {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; list-style: none;
  margin: 0; padding: 0;
  font-size: .8rem;
}
.pc-breadcrumb-list li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.pc-breadcrumb-list a { color: var(--text-secondary); }
.pc-breadcrumb-list a:hover { color: var(--primary); }
.pc-breadcrumb-list .active { color: var(--text-primary); font-weight: 500; }

/* ── PAGINATION ────────────────────────────────────────────────── */
.pc-pagination { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 52px; flex-wrap: wrap; }
.pc-page-btn {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  text-decoration: none;
}
.pc-page-btn:hover, .pc-page-btn.active {
  background: var(--primary); border-color: var(--primary); color: var(--navy-900);
}
.pc-page-btn.disabled { opacity: .35; pointer-events: none; }

/* ── ALERTS ────────────────────────────────────────────────────── */
.pc-alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pc-alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.pc-alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.pc-alert-info    { background: var(--primary-light); border: 1px solid rgba(212,160,23,.25); color: var(--gold-700); }

/* ── EMPTY STATE ───────────────────────────────────────────────── */
.pc-empty-state { text-align: center; padding: 80px 20px; color: var(--text-secondary); }
.pc-empty-state i { font-size: 4rem; color: var(--zinc-200); margin-bottom: 24px; display: block; }
.pc-empty-state h3 { font-size: 1.5rem; color: var(--zinc-700); margin-bottom: 12px; }

/* ── PRODUCT GALLERY (detail page) ────────────────────────────── */
.pc-product-gallery { display: flex; gap: 16px; }
.pc-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80px;
  flex-shrink: 0;
}
.pc-gallery-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.pc-gallery-thumb.active { border-color: var(--primary); }
.pc-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-gallery-main {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-section);
  aspect-ratio: 1;
}
.pc-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

/* ── SEARCH INFO ───────────────────────────────────────────────── */
.pc-search-info {
  background: var(--primary-light);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 32px;
  color: var(--gold-700);
  font-weight: 500;
}

/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Scroll Reveal */
.pc-reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .75s ease, transform .75s ease;
}
.pc-reveal.visible { opacity: 1; transform: translateY(0); }
.pc-reveal-delay-1 { transition-delay: .1s; }
.pc-reveal-delay-2 { transition-delay: .2s; }
.pc-reveal-delay-3 { transition-delay: .3s; }
.pc-reveal-delay-4 { transition-delay: .4s; }

/* Skeleton */
.pc-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

/* ── ADMIN specific – not loaded on frontend ───────────────────── */
.admin-sidebar { display: none; }

/* ================================================================
   RESPONSIVE – Bootstrap 5 breakpoints
   xs  < 576px  (mobile portrait)
   sm  576–767px (mobile landscape)
   md  768–991px (tablet)
   lg  992–1199px (small desktop)
   xl  ≥ 1200px
   ================================================================ */

/* ── LG – Tablet landscape / small desktop (max 991px) ─────────── */
@media (max-width: 991.98px) {
  /* Hero */
  .pc-hero-content { padding: 110px 0 80px; }
  .pc-hero-stats { gap: 28px; }

  /* Navbar collapse menu styling */
  .navbar-collapse {
    background: rgba(2,11,24,.98);
    border-top: 1px solid rgba(212,160,23,.12);
    border-radius: 0 0 var(--radius) var(--radius);
    margin: 0 -12px;
    padding: 12px 16px 20px;
  }
  .pc-nav-actions {
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.07);
    flex-direction: row;
    justify-content: space-between;
  }
  /* Show WhatsApp button in mobile menu */
  .pc-btn-whatsapp { display: inline-flex !important; }

  /* Contact cards */
  .pc-contact-card { padding: 32px; }
  .pc-contact-form-card { padding: 32px; }

  /* Features strip */
  .pc-features-strip .pc-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
}

/* ── MD – Tablet portrait (max 767px) ──────────────────────────── */
@media (max-width: 767.98px) {
  /* Spacing */
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 36px 0; }

  /* Hero */
  .pc-hero { min-height: 100svh; }
  .pc-hero-content { padding: 90px 0 64px; }
  .pc-hero-title { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .pc-hero-sub { font-size: .95rem; }
  .pc-hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pc-stat-num { font-size: 1.75rem; }
  .pc-stat-label { font-size: .7rem; }

  /* Products grid: 2 columns on tablet */
  .pc-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pc-pills {
    flex-wrap: wrap;
    gap: 6px;
  }
  .pc-pill {
    font-size: .75rem;
    padding: 6px 14px;
  }

  /* About section */
  .pc-about-float { left: 10px; bottom: 10px; }
  .pc-about-img-wrap img { height: 300px; }

  /* Product gallery / detail */
  .pc-gallery-thumbs {
    flex-direction: row;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 4px;
  }
  .pc-gallery-thumbs::-webkit-scrollbar { height: 3px; }
  .pc-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gold-500); }
  .pc-gallery-thumb { width: 60px; height: 60px; flex-shrink: 0; }
  .pc-product-gallery { flex-direction: column; }

  /* Footer */
  .pc-footer-bottom .d-flex { flex-direction: column; text-align: center; gap: 8px; }
  .pc-footer-legal { justify-content: center; flex-wrap: wrap; }

  /* Contact page cards stack */
  .pc-contact-card,
  .pc-contact-form-card { padding: 24px 18px; }

  /* FAQ */
  .pc-faq-question { font-size: 1rem; }

  /* WhatsApp float – ensure above mobile bars */
  .pc-whatsapp-float { bottom: 24px; right: 18px; }
  .pc-back-top { bottom: 24px; left: 18px; right: auto; }
}

/* ── SM/XS – Mobile (max 575px) ───────────────────────────────── */
@media (max-width: 575.98px) {
  /* Spacing */
  .section-pad { padding: 48px 0; }

  /* Hero */
  .pc-hero-title { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .pc-hero-actions { flex-direction: column; gap: 10px; }
  .pc-hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
  }
  .pc-hero-stats { gap: 14px; }
  .pc-hero-stats .pc-stat-divider { display: none; }

  /* Logo – hide words on tiny screens */
  .pc-logo-words { display: none; }

  /* Navbar */
  .pc-navbar { padding: 10px 0; }
  .container { padding-left: 16px; padding-right: 16px; }

  /* Product cards full-width on xs */
  .pc-products-grid .row > [class*="col-"] { padding-left: 8px; padding-right: 8px; }
  .pc-product-card { margin-bottom: 16px; }
  .pc-product-name { font-size: 1.3rem; }

  /* Section titles */
  .pc-section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* About */
  .pc-about-img-wrap img { height: 240px; }
  .pc-about-float { display: none; }

  /* Partners strip */
  .pc-partners-strip .pc-partner-item { flex: 0 0 140px; }

  /* Contact */
  .pc-contact-card,
  .pc-contact-form-card { padding: 20px 14px; border-radius: var(--radius); }
  .pc-contact-form .row > .col-md-6 { margin-bottom: 0; }

  /* FAQ */
  .pc-faq-question { padding: 16px 14px; font-size: .95rem; }
  .pc-faq-answer { padding: 0 14px 16px; font-size: .9rem; }

  /* Footer */
  .pc-footer-main { padding: 48px 0 32px; }
  .pc-footer-desc { font-size: .85rem; }

  /* WhatsApp float – push up so it doesn't overlap content */
  .pc-whatsapp-float { bottom: 20px; right: 14px; width: 50px; height: 50px; font-size: 1.3rem; }
  .pc-wa-tooltip { display: none; }
  .pc-back-top { bottom: 20px; left: 14px; width: 36px; height: 36px; font-size: .75rem; }

  /* Tables on small screens */
  .table-responsive-sm { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Buttons full-width helpers */
  .btn-mobile-full { width: 100%; }
}

/* ── Utility: ensure Bootstrap containers are fluid on mobile ───── */
@media (max-width: 575.98px) {
  .container,
  .container-fluid { padding-left: 16px; padding-right: 16px; }
}

/* ── Navbar mobile collapse link spacing ────────────────────────── */
@media (max-width: 991.98px) {
  .navbar-collapse .navbar-nav .nav-item { width: 100%; }
  .pc-nav-link {
    display: block;
    padding: 10px 14px !important;
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .pc-nav-link:last-child { border-bottom: none; }
  .navbar-collapse .navbar-nav { gap: 0 !important; }
}

/* ── Search panel mobile ────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .pc-search-panel.open { max-height: 80px; padding: 10px 0; }
  .pc-search-input { font-size: .9rem; }
  .pc-search-submit { padding: 10px 16px; font-size: .8rem; }
}

/* ── Row gutters: tighter on mobile ────────────────────────────── */
@media (max-width: 575.98px) {
  .row { --bs-gutter-x: 12px; }
  .g-4, .gy-4 { --bs-gutter-y: 12px; }
  .g-3, .gy-3 { --bs-gutter-y: 10px; }
}

/* ── Cards / tiles spacing on mobile ───────────────────────────── */
@media (max-width: 767.98px) {
  .pc-partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pc-why-grid { grid-template-columns: 1fr; gap: 14px; }
  .pc-cert-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
