/* ==========================================================================
   SUREJASE CO. (PT SUMBER REMPAH JAYA SELALU)
   Official B2B Export Portal Stylesheet
   Designed strictly following the official corporate profile design language
   ========================================================================== */

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

:root {
  /* Brand Palette from Official Company Profiles */
  --primary: #974736;
  --primary-dark: #7A3527;
  --primary-deep: #5E261B;
  --primary-light: #B35845;
  --primary-soft: #F9EFEA;
  --primary-subtle: rgba(151, 71, 54, 0.08);

  --accent-gold: #C88E38;
  --accent-gold-light: #E5A844;
  --accent-gold-soft: #FAF4E8;

  --accent-sage: #52796F;
  --accent-sage-dark: #354F52;
  --accent-sage-light: #EAF1EE;

  --dark-base: #1A1413;
  --dark-surface: #241E1D;
  --dark-border: #3A312F;

  --bg-body: #FBF9F5;
  --bg-card: #FFFFFF;
  --bg-muted: #F5F1E9;
  --bg-subtle: #FAF6F0;

  --text-main: #231C1A;
  --text-muted: #665C59;
  --text-light: #948A87;
  --text-white: #FFFFFF;

  --border-light: #E8E2D8;
  --border-focus: #974736;

  /* Typography */
  --font-family: 'Avenir Next', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(35, 28, 26, 0.05);
  --shadow-md: 0 6px 20px rgba(35, 28, 26, 0.07);
  --shadow-lg: 0 12px 36px rgba(35, 28, 26, 0.1);
  --shadow-hover: 0 16px 40px rgba(151, 71, 54, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --transition: all 0.25s ease-in-out;
  --container-width: 1220px;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Section Header Styles */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background-color: var(--primary-soft);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(151, 71, 54, 0.18);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--dark-base);
  color: #DDD6D3;
  font-size: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--dark-border);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info-items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-info-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-contacts a {
  color: #DDD6D3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-contacts a:hover {
  color: var(--accent-gold-light);
}

/* Main Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(251, 249, 245, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.99);
  box-shadow: var(--shadow-sm);
}

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

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(151, 71, 54, 0.2);
  flex-shrink: 0;
}

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

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-main);
  line-height: 1.15;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

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

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

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

.mobile-menu-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.68rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(151, 71, 54, 0.22);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(151, 71, 54, 0.32);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-soft);
  color: var(--primary-dark);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text-main);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EFE6 100%);
  padding: 5rem 0 6rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(151, 71, 54, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge-wrap {
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: var(--primary-soft);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(151, 71, 54, 0.2);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.hero-visual-card {
  position: relative;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  overflow: hidden;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #F8F5EE;
}

.hero-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-visual-card:hover .hero-img-wrap img {
  transform: scale(1.02);
}

.hero-float-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 226, 216, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-float-badge .badge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero-float-badge .badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-float-badge .badge-tag {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* Trust Bar */
.trust-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}

.trust-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.trust-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* General Section Spacing */
.section {
  padding: 5rem 0;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-subtle {
  background-color: var(--bg-subtle);
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.value-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.value-box h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.value-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
}

/* Two Core Products Section */
.products-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.product-showcase-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(151, 71, 54, 0.3);
}

.product-card-top {
  position: relative;
  background-color: #F8F5EF;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.product-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-showcase-card:hover .product-card-top img {
  transform: scale(1.05);
}

.product-badge-flag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.product-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.product-subtitle-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.spec-bullet-list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.spec-bullet-list li {
  font-size: 0.86rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.spec-bullet-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

/* Candlenut Oil Variants Lineup */
.variants-section-wrap {
  margin-top: 3.5rem;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.variants-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.variants-header-text h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
}

.variants-header-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.currency-toggle {
  display: inline-flex;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.currency-btn {
  background: transparent;
  border: none;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  border-radius: 4px;
  transition: var(--transition);
}

.currency-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(151, 71, 54, 0.25);
}

.variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.variant-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background-color: var(--bg-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.variant-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.variant-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.variant-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
  padding: 3px;
  object-fit: cover;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.variant-card:hover .variant-thumb {
  transform: scale(1.06);
}

.variant-titles {
  flex: 1;
}

.variant-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.variant-app {
  font-size: 0.74rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
}

.variant-details {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.5;
}

.variant-price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-muted);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.variant-price-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.variant-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

/* Technical Specification Table & Drawer */
.specs-section {
  background-color: #FFFFFF;
}

.specs-container-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.specs-nav-tabs {
  display: flex;
  background-color: var(--bg-muted);
  border-bottom: 1px solid var(--border-light);
}

.spec-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spec-tab-btn:hover {
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.5);
}

.spec-tab-btn.active {
  color: var(--primary);
  background-color: #FFFFFF;
  border-bottom-color: var(--primary);
}

.spec-panel {
  display: none;
  padding: 2.5rem;
}

.spec-panel.active {
  display: block;
}

.mobile-table-hint {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--primary-soft);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.spec-table th {
  background-color: var(--primary);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.9rem 1.2rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
}

.spec-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
}

.spec-table tr:nth-child(even) td {
  background-color: var(--bg-subtle);
}

.spec-table tr:hover td {
  background-color: var(--primary-subtle);
}

.spec-table .highlight {
  font-weight: 700;
  color: var(--primary-dark);
}

.specs-footer-note {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--primary-soft);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Certifications Section */
.cert-section {
  background-color: #FFFFFF;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.cert-card {
  background-color: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cert-logo-box {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cert-logo-box img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.cert-status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--primary-soft);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.cert-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.cert-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: monospace;
  margin-bottom: 1rem;
}

.cert-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cert-summary-table-box {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

/* Packaging & Shipping Section */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.packaging-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.packaging-img-box {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  overflow: hidden;
  padding: 1rem;
}

.packaging-img-box img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.packaging-card:hover .packaging-img-box img {
  transform: scale(1.05);
}

.packaging-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.packaging-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-sage-dark);
  background: var(--accent-sage-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.packaging-specs-list {
  list-style: none;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.packaging-specs-list strong {
  color: var(--text-main);
}

/* Contact & Request Quotation Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.contact-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-details a {
  color: var(--primary);
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.whatsapp-action-box {
  background: linear-gradient(135deg, #F0FBF4 0%, #E3F8EA 100%);
  border: 1px solid #A8E8BE;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.whatsapp-action-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1A5336;
  margin-bottom: 0.25rem;
}

.whatsapp-action-text p {
  font-size: 0.84rem;
  color: #2F6F4C;
}

.inquiry-form-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  color: var(--text-main);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(151, 71, 54, 0.12);
}

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

/* Footer Section */
.site-footer {
  background-color: var(--dark-base);
  color: #BDB2AF;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--dark-border);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.footer-brand .footer-tagline {
  font-size: 0.85rem;
  color: var(--accent-gold-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #9E918E;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-list a {
  font-size: 0.86rem;
  color: #BDB2AF;
}

.footer-nav-list a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #2F2422;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #8C7F7D;
}

/* Floating Action Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: #25D366;
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ==========================================================================
   Responsive Media Queries (Thorough Mobile & Tablet Optimization)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .variants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Layout & Global Spacing */
  .container {
    padding: 0 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }

  .top-bar {
    display: none;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  /* Header & Mobile Drawer */
  .nav-container {
    height: 72px;
  }

  .brand-logo-img {
    width: 38px;
    height: 38px;
  }

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

  .brand-sub {
    font-size: 0.58rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-muted);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    cursor: pointer;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.75rem;
    box-shadow: 0 16px 36px rgba(35, 28, 26, 0.15);
    border-bottom: 3px solid var(--primary);
    gap: 0.25rem;
    z-index: 1000;
  }

  .nav-links.mobile-open {
    display: flex;
    animation: mobileMenuSlide 0.25s ease-out;
  }

  @keyframes mobileMenuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.8rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 1px solid #F4EFEA;
  }

  .nav-link:hover, .nav-link.active {
    color: var(--primary);
    padding-left: 0.85rem;
  }

  .nav-link::after {
    display: none;
  }

  .mobile-menu-cta {
    display: block;
    margin-top: 1rem;
    padding-top: 0.5rem;
  }

  .mobile-menu-cta .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.85rem;
    font-size: 0.95rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 2.25rem 0 3.25rem;
  }

  .hero-badge-wrap {
    margin-bottom: 1.25rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.8rem;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.85rem;
  }

  .hero-visual {
    margin-top: 1.75rem;
  }

  .hero-visual-card {
    padding: 0.85rem;
  }

  .hero-img-wrap img {
    height: 280px;
  }

  .hero-float-badge {
    position: static;
    margin-top: 0.85rem;
    box-shadow: none;
    background-color: var(--bg-muted);
    border: 1px solid var(--border-light);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
  }

  .hero-float-badge .badge-tag {
    align-self: flex-start;
  }

  /* Trust Bar (2x2 Grid, Mathematically Perfect Symmetrical Squares) */
  .trust-bar {
    padding: 1.25rem 0;
  }

  .trust-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .trust-item {
    background-color: #FAF8F5;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.95rem 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
  }

  .trust-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .trust-icon svg {
    width: 18px;
    height: 18px;
  }

  .trust-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
  }

  .trust-text h4 {
    font-size: 0.82rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
    font-weight: 700;
  }

  .trust-text p {
    font-size: 0.7rem;
    line-height: 1.35;
    color: var(--text-muted);
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .about-img-frame {
    max-height: 260px;
  }

  /* Products Overview & Cards */
  .products-overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-card-top {
    height: 240px;
    padding: 1rem;
  }

  .product-badge-flag {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.68rem;
    padding: 0.25rem 0.6rem;
  }

  .product-price-tag {
    top: auto;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .product-card-body {
    padding: 1.5rem;
  }

  .product-name-title {
    font-size: 1.35rem;
  }

  .product-card-footer {
    flex-direction: column;
    gap: 0.65rem;
  }

  .product-card-footer .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Variants Lineup */
  .variants-section-wrap {
    padding: 1.5rem 1.25rem;
    margin-top: 2.5rem;
  }

  .variants-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .currency-toggle {
    width: 100%;
    display: flex;
  }

  .currency-btn {
    flex: 1;
    text-align: center;
    padding: 0.55rem;
  }

  .variants-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Technical Specifications */
  .specs-container-box {
    border-radius: var(--radius-md);
  }

  .specs-nav-tabs {
    flex-direction: column;
  }

  .spec-tab-btn {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
    text-align: left;
    justify-content: flex-start;
    border-bottom: 1px solid var(--border-light);
    border-left: 3px solid transparent;
  }

  .spec-tab-btn.active {
    border-left-color: var(--primary);
    border-bottom-color: var(--border-light);
    background-color: #FFFFFF;
  }

  .spec-panel {
    padding: 1.25rem 1rem;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
  }

  .spec-table {
    min-width: 620px;
    font-size: 0.82rem;
  }

  .spec-table th, .spec-table td {
    padding: 0.65rem 0.85rem;
  }

  .specs-footer-note {
    font-size: 0.78rem;
    padding: 0.85rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Certifications */
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .cert-card {
    padding: 1.75rem 1.25rem;
  }

  .cert-summary-table-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
  }

  .cert-summary-table-box .spec-table {
    min-width: 580px;
  }

  /* Packaging Section */
  .packaging-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .packaging-card {
    padding: 1.5rem 1.25rem;
  }

  .packaging-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Contact & Request Quotation */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-action-box {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 1rem;
  }

  .whatsapp-action-box .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .inquiry-form-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-input, .form-textarea, .form-select {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    padding: 0.85rem 1rem;
  }

  /* Footer */
  .site-footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

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

  /* Floating WhatsApp */
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

/* Extra small devices (phones < 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .trust-flex {
    gap: 0.5rem;
  }
  .trust-item {
    padding: 0.75rem 0.65rem;
  }
  .trust-text h4 {
    font-size: 0.76rem;
  }
  .trust-text p {
    font-size: 0.66rem;
  }
}

