/* ==========================================================================
   KENARA FAMILY SNACK - RESPONSIVE & MOBILE-FIRST DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --primary-coral: #D9381E;
  --primary-coral-hover: #B82810;
  --primary-orange: #E65100;
  --accent-gold: #FFB300;
  --accent-gold-light: #FFF8E1;
  --dark-ocean: #0D253F;
  --dark-ocean-gradient: linear-gradient(135deg, #0A192F 0%, #0D253F 50%, #1E3A8A 100%);
  --navy-800: #1E293B;
  --navy-900: #0F172A;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --white: #FFFFFF;

  /* WhatsApp Colors */
  --wa-green: #25D366;
  --wa-green-dark: #128C7E;
  --wa-green-hover: #1DA851;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 20px rgba(37, 211, 102, 0.4);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-ocean);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
  touch-action: manipulation;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

/* Screen Reader Visually Hidden Utility Rule */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --------------------------------------------------------------------------
   3. UTILITIES & COMPONENTS
   -------------------------------------------------------------------------- */
.text-highlight {
  color: var(--primary-coral);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: rgba(217, 56, 30, 0.1);
  color: var(--primary-coral);
  border: 1px solid rgba(217, 56, 30, 0.2);
}

.badge-gold {
  background-color: var(--accent-gold-light);
  color: #B7791F;
  border: 1px solid rgba(255, 179, 0, 0.4);
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
  user-select: none;
  white-space: nowrap;
}

.btn i {
  font-size: 1.15rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-orange) 100%);
  color: var(--white);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(217, 56, 30, 0.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  color: var(--white);
}

.btn-whatsapp:hover, .btn-whatsapp:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--dark-ocean);
  border: 2px solid var(--dark-ocean);
}

.btn-outline:hover, .btn-outline:active {
  background-color: var(--dark-ocean);
  color: var(--white);
  transform: translateY(-2px);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.section-header .sub-title {
  color: var(--primary-coral);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  color: var(--gray-600);
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrapper img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-ocean);
  line-height: 1;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-coral);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-coral);
  transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-coral);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--dark-ocean);
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 90% 10%, rgba(217, 56, 30, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 10% 90%, rgba(13, 37, 63, 0.06) 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content .badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--dark-ocean);
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 1.6rem;
  color: var(--primary-coral);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.trust-text span {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark-ocean);
  line-height: 1.2;
}

.trust-text small {
  color: var(--gray-600);
  font-size: 0.78rem;
  line-height: 1.2;
}

/* Hero Media Card */
.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
  transition: var(--transition-slow);
}

.hero-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.hero-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13, 37, 63, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  gap: 12px;
}

.hero-badge-info h4 {
  color: var(--white);
  font-size: 1.05rem;
}

.hero-badge-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   6. ABOUT & PARTNERSHIP SECTION
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--white);
}

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

.about-image-stack {
  position: relative;
}

.main-img {
  display: block;
  width: 76%;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  background: var(--gray-50);
}

.overlay-img {
  position: absolute;
  bottom: -20px;
  right: 0;
  display: block;
  width: 44%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-xl);
}

.exp-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--primary-coral);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
}

.exp-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.exp-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 20px;
}

.about-content .lead-text {
  font-size: 1.05rem;
  color: var(--primary-coral);
  font-weight: 600;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.partner-logos-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 24px;
}

.partner-logos-card h4 {
  font-size: 0.9rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

/* Distribution Tag Pills */
.dist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dist-tag {
  background: rgba(13, 37, 63, 0.06);
  color: var(--dark-ocean);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   6.5. DISTRIBUTION NETWORK / MARKET REACH
   -------------------------------------------------------------------------- */
.distribution-section {
  background-color: var(--white);
  border-top: 1px solid var(--gray-100);
}

.market-map-card {
  background: radial-gradient(circle at center, #163b5f 0%, #092542 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.world-map-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  opacity: 0.95;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.world-map-img:hover {
  transform: scale(1.02);
  opacity: 1;
}

.market-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.market-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: var(--transition-normal);
  cursor: default;
}

.market-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .market-map-card {
    padding: 40px 20px;
  }
  .market-badges {
    margin-top: 30px;
    gap: 8px;
  }
  .market-badge {
    padding: 6px 14px;
    font-size: 0.82rem;
  }
}

/* --------------------------------------------------------------------------
   7. PRODUCTS CATALOG SECTION
   -------------------------------------------------------------------------- */
.products-section {
  background-color: var(--gray-50);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: #F1F5F9;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}

.product-tag-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 37, 63, 0.88);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.product-description {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-specs {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 14px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-800);
  line-height: 1.4;
}

.spec-item i {
  color: var(--primary-coral);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.spec-item span {
  flex-grow: 1;
}

.product-action {
  margin-top: auto;
}

.product-action .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   8. CERTIFICATIONS & LEGALITIES
   -------------------------------------------------------------------------- */
.cert-section {
  background: var(--dark-ocean-gradient);
  color: var(--white);
  position: relative;
}

.cert-section .section-header h2 {
  color: var(--white);
}

.cert-section .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.cert-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 179, 0, 0.18);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.cert-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--white);
}

.gallery-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-coral) var(--gray-100);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.gallery-grid::-webkit-scrollbar {
  height: 7px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 999px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: var(--primary-coral);
  border-radius: 999px;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -28px 0 18px;
}

.gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-ocean);
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-arrow:hover:not(:disabled) {
  border-color: var(--primary-coral);
  background: var(--primary-coral);
  color: var(--white);
  transform: translateY(-2px);
}

.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-instagram-link {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-item {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  touch-action: manipulation;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 37, 63, 0.85) 0%, transparent 65%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover img, .gallery-item:active img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay, .gallery-item:active .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  color: var(--white);
}

.gallery-overlay-content h4 {
  color: var(--white);
  font-size: 0.95rem;
}

.gallery-overlay-content p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   10. AWARDS & MILESTONES
   -------------------------------------------------------------------------- */
.achievements-section {
  background-color: var(--white);
}

.milestones-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.milestones-grid::-webkit-scrollbar {
  display: none;
}

.milestone-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -28px 0 18px;
}

.milestone-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-ocean);
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.milestone-arrow:hover:not(:disabled) {
  border-color: var(--primary-coral);
  background: var(--primary-coral);
  color: var(--white);
  transform: translateY(-2px);
}

.milestone-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.milestone-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 225px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  scroll-snap-align: start;
}

.milestone-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 56, 30, 0.3);
  box-shadow: var(--shadow-md);
}

.milestone-card h3 {
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.milestone-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

.milestone-card-featured {
  border-color: var(--dark-ocean);
  background-color: var(--dark-ocean);
  background-image: var(--dark-ocean-gradient);
}

.milestone-card-featured h3,
.milestone-card-featured p {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   11. CONTACT & LOCATION SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--gray-50);
}

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

.contact-info-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(217, 56, 30, 0.1);
  color: var(--primary-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-text p, .contact-text a {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.contact-text a:hover {
  color: var(--primary-coral);
}

.instagram-qr-card {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffbf16 0%, #ff6b35 52%, #ff1f6d 100%);
  color: var(--white);
}

.instagram-qr-image {
  width: 190px;
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(91, 20, 46, 0.22);
  flex-shrink: 0;
}

.instagram-qr-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.instagram-qr-content > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.instagram-qr-content h4 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.35rem;
}

.instagram-qr-content p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.instagram-qr-content > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-market-reach {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.market-reach-heading {
  text-align: center;
  margin-bottom: 20px;
}

.market-reach-heading > span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-coral);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-market-reach .market-reach-heading h4 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.market-reach-heading p {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.market-reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.market-reach-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: start;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.market-reach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 56, 30, 0.3);
}

.market-card-icon {
  background: rgba(217, 56, 30, 0.1);
  color: var(--primary-coral);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.market-card-content h5 {
  font-size: 1.1rem;
  color: var(--dark-ocean);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.market-card-content p {
  font-size: 0.92rem;
  color: var(--primary-coral);
  font-weight: 600;
  margin-bottom: 6px;
}

.market-card-content small {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--navy-800);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  min-height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition-fast);
  outline: none;
  background-color: var(--white);
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 4px rgba(217, 56, 30, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* --------------------------------------------------------------------------
   11. FLOATING WHATSAPP CHAT WIDGET
   -------------------------------------------------------------------------- */
.wa-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  z-index: 1500;
  transition: var(--transition-normal);
  animation: pulse-glow 2s infinite;
  border: none;
  touch-action: manipulation;
  overflow: hidden;
}

.wa-floating-btn i {
  font-size: 2rem;
  line-height: 1;
}

.wa-floating-btn:hover, .wa-floating-btn:active {
  transform: scale(1.08);
  background-color: var(--wa-green-hover);
}

.wa-badge-notify {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: var(--primary-coral);
  border: 2px solid var(--white);
  border-radius: 50%;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* WhatsApp Interactive Popup Box */
.wa-chat-box {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 350px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1500;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition-normal);
  border: 1px solid var(--gray-200);
}

.wa-chat-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-chat-header {
  background: var(--wa-green-dark);
  color: var(--white);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
  object-fit: cover;
}

.wa-status h4 {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.2;
}

.wa-status p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-online-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  display: inline-block;
}

.wa-close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 6px;
  opacity: 0.85;
}

.wa-close-btn:hover {
  opacity: 1;
}

.wa-chat-body {
  padding: 18px;
  background: #E5DDD5;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 12px 12px;
  max-height: 300px;
  overflow-y: auto;
}

.wa-message-bubble {
  background: var(--white);
  padding: 12px 14px;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  font-size: 0.86rem;
  color: var(--navy-800);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  position: relative;
}

.wa-message-time {
  font-size: 0.68rem;
  color: var(--gray-600);
  text-align: right;
  margin-top: 4px;
}

.wa-quick-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.wa-quick-btn {
  background: var(--white);
  border: 1px solid var(--wa-green);
  color: var(--wa-green-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 14px;
  min-height: 42px;
  border-radius: var(--radius-full);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  touch-action: manipulation;
}

.wa-quick-btn:hover, .wa-quick-btn:active {
  background: var(--wa-green);
  color: var(--white);
}

.wa-chat-footer {
  padding: 12px 14px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 8px;
}

.wa-chat-input {
  flex-grow: 1;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 16px;
  outline: none;
}

.wa-chat-send {
  background: var(--wa-green);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-coral);
}

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

.footer-links a {
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--primary-coral);
  padding-left: 4px;
}

.seo-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seo-tag {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   13. COMPREHENSIVE RESPONSIVE BREAKPOINTS (TABLETS & SMARTPHONES)
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 36px 28px;
    align-items: flex-start;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xl);
    border-right: 1px solid var(--gray-200);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content .badges-row {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .hero-image-card img {
    height: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-stack {
    max-width: 520px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .milestones-grid {
    grid-template-columns: none;
  }

  .milestone-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
    padding: 0 18px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-card img {
    height: 320px;
  }

  .hero-badge-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .about-image-stack {
    width: 100%;
  }

  .main-img {
    width: 78%;
    height: auto;
  }

  .overlay-img {
    width: 44%;
    height: auto;
    bottom: -14px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    gap: 14px;
    padding: 2px 2px 10px;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid .gallery-item {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .gallery-grid .gallery-overlay {
    opacity: 1;
  }

  .gallery-grid .gallery-item:hover img,
  .gallery-grid .gallery-item:active img {
    transform: none;
  }

  .gallery-grid .gallery-item:last-child {
    margin-right: 2px;
  }

  .gallery-grid + .gallery-instagram-link {
    margin-top: 22px;
  }

  .gallery-item {
    height: 240px;
  }

  .milestones-grid {
    gap: 14px;
    padding: 2px 2px 10px;
  }

  .milestone-controls {
    margin-top: -32px;
    margin-bottom: 16px;
  }

  .milestone-card {
    flex: 0 0 88%;
    min-height: 300px;
  }

  .contact-info-card, .contact-form-card {
    padding: 24px 20px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .instagram-qr-card {
    flex-direction: column;
    text-align: center;
  }

  .instagram-qr-image {
    width: min(240px, 100%);
  }

  .market-reach-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 12px 0;
  }

  .logo-wrapper img {
    height: 36px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-tag {
    font-size: 0.62rem;
  }

  .nav-cta .btn-whatsapp span {
    display: none;
  }

  .nav-cta .btn-whatsapp {
    padding: 10px 14px;
    min-height: 40px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
  }

  .hero-image-card img {
    height: 260px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .wa-floating-btn {
    bottom: 20px;
    right: 18px;
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }

  .wa-chat-box {
    right: 16px;
    left: 16px;
    bottom: 84px;
    width: auto;
    max-width: none;
  }
}
