/**
 * BALAJI ORGANICS — PREMIUM B2B PHARMACEUTICAL STYLESHEET
 * International corporate pharmaceutical design system
 */

:root {
  /* Color Palette */
  --primary: #0a4e60;
  --primary-dark: #073b49;
  --primary-light: #e8f4f7;
  --primary-subtle: #f0f7f9;
  --accent: #2a9d8f;
  --accent-light: #e6f5f3;
  --navy: #0e2b5c;
  --navy-dark: #081d3f;
  --orange: #f4a03a;
  --orange-light: #fef5ea;

  /* Neutrals */
  --text-main: #1a202c;
  --text-muted: #5a6a85;
  --text-light: #8a99ad;
  --bg-body: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #edf2f7;

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

  /* Elevations & Transitions */
  --shadow-sm: 0 2px 4px rgba(14, 43, 92, 0.04);
  --shadow-md: 0 6px 18px rgba(14, 43, 92, 0.07);
  --shadow-lg: 0 14px 35px rgba(14, 43, 92, 0.1);
  --shadow-xl: 0 24px 60px rgba(14, 43, 92, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

a:hover {
  color: var(--orange);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-pad {
  padding-top: 85px;
  padding-bottom: 85px;
}

@media (max-width: 768px) {
  .section-pad {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

.bg-alt { background-color: var(--bg-alt); }
.bg-primary-light { background-color: var(--primary-light); }
.bg-subtle { background-color: var(--primary-subtle); }
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* Section Headers */
.section-header {
  margin-bottom: 50px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
}

.eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-left: 10px;
}

.section-title {
  font-size: 34px;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .section-title { font-size: 26px; }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 78, 96, 0.25);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

.btn-ghost {
  background-color: #f1f5f9;
  color: var(--navy);
}

.btn-ghost:hover {
  background-color: var(--border-color);
  color: var(--primary);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #1ebc57;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

.product-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.product-badge-featured {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: var(--orange);
}

.top-bar .wa-link {
  color: #25d366;
  font-weight: 600;
}

.btn-quote-top {
  background-color: var(--orange);
  color: white !important;
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .top-bar { display: none; }
}

/* ==========================================================================
   MAIN HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 2px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 28px 0;
  display: block;
}

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

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  width: 920px;
  background: #ffffff;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 100;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 180px;
  gap: 20px;
}

.mega-col {
  border-right: 1px solid var(--border-light);
  padding-right: 15px;
}

.mega-cat-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--primary-light);
}

.mega-cat-link:hover {
  color: var(--primary);
}

.mega-product-list {
  list-style: none;
}

.mega-product-list li {
  margin-bottom: 8px;
}

.mega-product-list a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.35;
  display: block;
}

.mega-product-list a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.mega-cta-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: var(--primary-subtle);
  padding: 15px;
  border-radius: var(--radius-sm);
}

.mega-view-all {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.mega-quote {
  font-size: 12px;
  color: var(--text-muted);
}

/* Header Extras */
.header-search-btn {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

@media (max-width: 991px) {
  .main-nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* SEARCH OVERLAY */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  display: none;
}

.search-overlay.active {
  display: block;
}

.search-form-header {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  padding: 4px 18px;
  background: #ffffff;
}

.search-form-header input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
}

.search-form-header button {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
}

/* MOBILE OFF-CANVAS MENU */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 43, 92, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #ffffff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 15px 0;
  flex: 1;
}

.mobile-nav-item a {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-footer {
  padding: 20px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-color);
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 10px;
}

/* ==========================================================================
   HERO SECTION & SLIDER
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--navy);
}

.hero-slide {
  min-height: 580px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 28, 40, 0.88) 0%, rgba(10, 78, 96, 0.55) 55%, rgba(14, 43, 92, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 46px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.18;
}

@media (max-width: 768px) {
  .hero-slide { min-height: 460px; padding: 50px 0; }
  .hero-title { font-size: 30px; }
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   TRUST PILLARS BAR
   ========================================================================== */
.trust-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 24px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
}

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

.trust-item i {
  font-size: 30px;
  color: var(--primary);
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--navy);
}

.trust-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   INTRO & ABOUT SECTION
   ========================================================================== */
.intro-grid, .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .intro-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.intro-features {
  list-style: none;
  margin-bottom: 30px;
}

.intro-features li {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-features i {
  color: var(--accent);
}

.intro-img, .about-img-placeholder svg {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ==========================================================================
   PRODUCT CATEGORY CARDS
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

@media (min-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

.category-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.category-card-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  min-height: 190px;
  background: var(--primary-light);
  overflow: hidden;
  display: block;
}

.category-card-img-wrap img, .category-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 190px;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-img-wrap img {
  transform: scale(1.06);
}

.category-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  z-index: 2;
}

.category-card-body {
  padding: 20px;
}

.category-card-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.category-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-count {
  display: block;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.category-cta {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   PRODUCT CARDS & GRID
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.product-card-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

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

.product-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.5;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ==========================================================================
   WHY CHOOSE US & VALUES
   ========================================================================== */
.why-grid, .mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.why-card, .mv-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover, .mv-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon, .mv-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-card h3, .mv-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p, .mv-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   INDUSTRIES GRID
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.industry-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.industry-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.industry-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   BLOG CARDS & RESOURCES
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--primary-light);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

.blog-read-more {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  font-size: 14px;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ==========================================================================
   GLOBAL CALL TO ACTION
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 70px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

@media (max-width: 900px) {
  .cta-inner { flex-direction: column; text-align: center; }
}

.cta-heading {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ==========================================================================
   PRODUCT CATALOGUE & FILTERS
   ========================================================================== */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .products-layout { grid-template-columns: 1fr; }
}

.filter-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.filter-title {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.category-filter-list {
  list-style: none;
}

.category-filter-list li {
  margin-bottom: 8px;
}

.category-filter-list a {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 14px;
}

.category-filter-list li.active a,
.category-filter-list a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.category-filter-list .count {
  font-size: 12px;
  color: var(--text-light);
}

.products-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.products-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 2px 10px;
  width: 320px;
  max-width: 100%;
}

.products-search input {
  border: none;
  outline: none;
  padding: 8px;
  flex: 1;
  font-size: 14px;
}

.products-search button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.clear-search {
  font-size: 12px;
  color: var(--danger);
  margin-left: 8px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
}

.gallery-main {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.gallery-main img, #galleryMainImg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.brochure-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ffffff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
  padding: 4px;
}

.gallery-thumb:hover {
  border-color: var(--primary);
}

.product-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.product-lead {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.product-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.product-tabs {
  margin-top: 50px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tab-nav {
  display: flex;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

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

.tab-content {
  padding: 30px;
  display: none;
}

.tab-content.active {
  display: block;
}

.specs-table, .specs-table-preview {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td,
.specs-table-preview td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.specs-table th {
  background: var(--bg-alt);
  font-family: var(--font-heading);
  text-align: left;
}

.related-products {
  margin-top: 70px;
}

.related-title {
  font-size: 24px;
  margin-bottom: 25px;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb-nav {
  background: var(--bg-alt);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-item::after {
  content: '/';
  margin-left: 8px;
  color: var(--text-light);
}

.breadcrumb-item:last-child::after {
  display: none;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

/* ==========================================================================
   PAGE HERO
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-hero-title {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 8px;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

/* ==========================================================================
   ENQUIRY MODAL
   ========================================================================== */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 43, 92, 0.7);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
  z-index: 2;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-header h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.enquiry-product-tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 78, 96, 0.1);
}

.required { color: #e53e3e; }
.field-error { font-size: 12px; color: #e53e3e; margin-top: 4px; display: block; }

.form-success {
  text-align: center;
  padding: 20px 0;
  color: var(--navy);
}

.form-success i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ==========================================================================
   WHATSAPP & FLOATING ACTIONS
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 990;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  z-index: 995;
  grid-template-columns: 1fr 1fr 1.2fr;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  gap: 3px;
  cursor: pointer;
}

.mobile-bar-btn i { font-size: 16px; }
.mobile-bar-call { color: var(--navy); }
.mobile-bar-whatsapp { color: #25d366; }
.mobile-bar-quote { background: var(--primary); color: #ffffff !important; }

@media (max-width: 768px) {
  .whatsapp-float { display: none; }
  .mobile-bottom-bar { display: grid; }
  body { padding-bottom: 60px; }
}

/* ==========================================================================
   COOKIE NOTICE
   ========================================================================== */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  background: var(--navy);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 1080;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-notice p { margin: 0; line-height: 1.4; }
.cookie-policy-link { color: var(--orange); text-decoration: underline; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-main {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 45px;
}

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--primary);
  color: #ffffff;
}

.footer-col-title {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.footer-links, .footer-contact-list {
  list-style: none;
}

.footer-links li, .footer-contact-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list i {
  color: var(--orange);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 13px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-policy-links {
  display: flex;
  gap: 20px;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-policy-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .reveal:not(.active) {
  opacity: 0;
  transform: translateY(16px);
}

html.js-ready .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, html.js-ready .reveal:not(.active) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
