/* ═══════════════════════════════════════════════════════
   KANANI DYES CHEM LLP — style.css  v3
   White Navbar | Professional | Multi-page
═══════════════════════════════════════════════════════ */
:root {
  --yellow: #FFC107;
  --orange: #FF6F00;
  --orange-mid: #FF8F00;
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --white: #FFFFFF;
  --off-white: #FFF8F0;
  --light-bg: #F7F6F3;
  --border: #E5E2DC;
  --text-dark: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 7px;
  --transition: 0.3s ease;
  --navbar-h: 76px;
}

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

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

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ─── TYPOGRAPHY ─── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Nunito+Sans:wght@300;400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ─── UTILITIES ─── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: 72px 0;
}

.bg-light {
  background: var(--light-bg);
}

.bg-dark {
  background: #111;
}

.bg-brand {
  background: linear-gradient(135deg, var(--red-dark), var(--red) 45%, var(--orange) 85%, var(--orange-mid));
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: .3px;
}

.section-heading em {
  color: var(--orange);
  font-style: normal;
}

.section-heading.light {
  color: #fff;
}

.section-heading.light em {
  color: var(--yellow);
}

.section-sub {
  font-size: .98rem;
  line-height: 1.82;
  color: var(--text-mid);
  max-width: 660px;
  margin-bottom: 44px;
}

.section-sub.light {
  color: rgba(255, 255, 255, .82);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .13);
  transform: translateX(-100%);
  transition: transform .4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 111, 0, .28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(255, 111, 0, .42);
}

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

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, .65);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: .82rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════
   NAVBAR — WHITE BACKGROUND
══════════════════════════════════ */
.top-bar {
  background: linear-gradient(135deg, var(--red), var(--orange));
  padding: 7px 0;
}

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

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-info a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .88);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.top-bar-info a:hover {
  color: #fff;
}

.top-bar-info a i {
  font-size: .72rem;
}

.top-bar-social {
  display: flex;
  gap: 10px;
}

.top-bar-social a {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .72rem;
  transition: background var(--transition);
}

.top-bar-social a:hover {
  background: rgba(255, 255, 255, .28);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .09);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .14);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
}

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

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: .98rem;
  color: var(--text-dark);
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.logo-sub {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3px;
}

.logo-sub-top {
  font-size: .48rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .8px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-sub-bottom {
  font-size: .58rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* Nav links — BLACK text */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--orange);
  background: rgba(255, 111, 0, .06);
}

.arrow-icon {
  font-size: .6rem;
  transition: transform .3s;
}

.dropdown:hover .arrow-icon {
  transform: rotate(180deg);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--red)) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  margin-left: 8px;
  box-shadow: 0 3px 12px rgba(255, 111, 0, .3);
}

.nav-links .nav-cta:hover {
  opacity: .92;
  transform: translateY(-1px);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text-mid);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  color: var(--orange);
  background: rgba(255, 111, 0, .05);
  padding-left: 24px;
}

.dropdown-menu li a i {
  width: 16px;
  font-size: .78rem;
  color: var(--orange);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all .3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════
   HERO — WHITE BG, NO IMAGE
══════════════════════════════════ */
.hero {
  background: #fff;
  padding: 56px 0 64px;
  border-bottom: 3px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(135deg, var(--off-white), rgba(255, 193, 7, .08));
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}


.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 111, 0, .08);
  border: 1px solid rgba(255, 111, 0, .2);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 16px;
}

.hero-title .l1 {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: var(--text-dark);
  letter-spacing: 1px;
}

.hero-title .l2 {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.h-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.h-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.h-stat-label {
  font-size: .7rem;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.h-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  align-self: center;
}

.hero-right {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}

.hero-feature-card:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.hfc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 111, 0, .1), rgba(255, 193, 7, .06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.hero-feature-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: .3px;
}

.hero-feature-card p {
  font-size: .8rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ══════════════════════════════════
   ABOUT STRIP (homepage)
══════════════════════════════════ */
.about-strip {
  padding: 72px 0;
}

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

.about-img-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--off-white), rgba(255, 193, 7, .08));
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}

.about-img-placeholder i {
  font-size: 3rem;
  color: var(--orange);
  opacity: .4;
}

.about-img-placeholder span {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-accent-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-accent-badge .big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-accent-badge .small {
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .85;
}


.about-text p {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.av-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.av-item i {
  color: var(--orange);
  font-size: .9rem;
  width: 18px;
  flex-shrink: 0;
}

.av-item span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ══════════════════════════════════
   PRODUCTS PREVIEW (homepage)
══════════════════════════════════ */
.products-preview {
  padding: 72px 0;
  background: var(--light-bg);
}

.products-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

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

.product-card-swatch {
  height: 150px;
  display: block;
  position: relative;
  overflow: hidden;
}

.product-card-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.product-card-body {
  padding: 12px 14px 10px;
}

.product-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.product-card-body p {
  font-size: .75rem;
  line-height: 1.55;
  color: var(--text-mid);
}

.product-card-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  transition: gap var(--transition);
}

.product-card:hover .product-card-link {
  gap: 9px;
}

/* ══════════════════════════════════
   APPLICATIONS PREVIEW
══════════════════════════════════ */
.apps-preview {
  padding: 72px 0;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.app-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.app-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.app-card-banner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--light-bg), var(--off-white));
  color: var(--orange);
}

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

.app-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.app-card-body p {
  font-size: .83rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.app-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ══════════════════════════════════
   GLOBAL + QUALITY + SUSTAIN STRIP
══════════════════════════════════ */
.highlights-strip {
  padding: 72px 0;
  background: var(--light-bg);
}

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

.highlight-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.hc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 111, 0, .1), rgba(255, 193, 7, .06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 16px;
}

.highlight-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: .86rem;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.hc-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.highlight-card:hover .hc-link {
  gap: 9px;
}

/* ══════════════════════════════════
   CONTACT STRIP (homepage)
══════════════════════════════════ */
.contact-strip {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red) 45%, var(--orange));
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-strip-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.contact-strip-left p {
  font-size: .97rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
}

.contact-strip-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: background var(--transition);
}

.cs-item:hover {
  background: rgba(255, 255, 255, .16);
}

.cs-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.cs-item strong {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 2px;
}

.cs-item span,
.cs-item a {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}

.cs-item a:hover {
  color: var(--yellow);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: #0e0e0e;
  padding: 64px 0 0;
  border-top: 3px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 9px;
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  letter-spacing: 1.5px;
}

.footer-tagline {
  font-size: .62rem;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-brand p {
  font-size: .84rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, .42);
  margin-bottom: 20px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: #fff;
  transition: all var(--transition);
}

.social-btn:hover {
  transform: translateY(-2px);
}

.whatsapp-social {
  background: #25D366;
}

.email-social {
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.web-social {
  background: rgba(255, 255, 255, .1);
}

.web-social:hover {
  background: rgba(255, 255, 255, .2);
}

.footer-links h5,
.footer-contact h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-links ul li {
  margin-bottom: 9px;
}

.footer-links ul li a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .42);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links ul li a i {
  font-size: .68rem;
  color: var(--orange);
}

.footer-links ul li a:hover {
  color: var(--yellow);
}

.footer-contact p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .42);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p i {
  color: var(--orange);
  font-size: .82rem;
  width: 13px;
}

.footer-contact a {
  color: rgba(255, 255, 255, .42);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: .76rem;
  color: rgba(255, 255, 255, .26);
}

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 40%, var(--red-dark) 100%);
  padding: 52px 0 48px;
}

.page-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.page-hero p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .72);
  margin-top: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb i {
  font-size: .6rem;
  color: rgba(255, 255, 255, .35);
}

/* ══════════════════════════════════
   FLOATING & CHAT
══════════════════════════════════ */
.floating-btns {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
  transition: all .3s;
  cursor: pointer;
  color: #fff;
  font-size: 1.15rem;
}

.float-btn:hover {
  transform: scale(1.12) translateX(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.email {
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.float-btn.chat-btn {
  background: linear-gradient(135deg, #1565C0, #0D47A1);
}

.chatbox {
  position: fixed;
  bottom: 22px;
  right: 76px;
  width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
  z-index: 1100;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  max-height: 500px;
  animation: slideIn .3s ease;
}

.chatbox.open {
  display: flex;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.chat-header {
  background: linear-gradient(135deg, var(--orange), var(--red));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.chat-header>div {
  flex: 1;
}

.chat-header strong {
  display: block;
  font-size: .9rem;
}

.chat-header small {
  font-size: .7rem;
  opacity: .75;
}

.chat-close {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: .85rem;
}

.chat-close:hover {
  background: rgba(255, 255, 255, .25);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
}

.chat-msg {
  padding: 11px 14px;
  border-radius: 13px;
  font-size: .84rem;
  line-height: 1.62;
  max-width: 88%;
  animation: fadeIn .3s;
}

.chat-msg.bot {
  background: #f5f5f5;
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-msg.typing {
  background: #f5f5f5;
  color: var(--text-light);
  font-style: italic;
}

.chat-input-row {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 11px 13px;
  gap: 8px;
}

.chat-input-row input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 9px 15px;
  font-size: .84rem;
  outline: none;
  background: var(--off-white);
  transition: border-color var(--transition);
}

.chat-input-row input:focus {
  border-color: var(--orange);
  background: #fff;
}

.chat-input-row button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.chat-input-row button:hover {
  transform: scale(1.1);
}

/* ══════════════════════════════════
   CONTACT FORM (contact page)
══════════════════════════════════ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.ci-row:last-child {
  margin-bottom: 0;
}

.ci-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(255, 111, 0, .1), rgba(255, 193, 7, .07));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--orange);
  flex-shrink: 0;
}

.ci-row>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ci-row strong {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 700;
}

.ci-row span,
.ci-row a {
  font-size: .94rem;
  color: var(--text-dark);
  font-weight: 600;
}

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

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group:last-of-type {
  margin-bottom: 8px;
}

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--orange);
  font-size: .76rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 111, 0, .08);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.form-error-msg {
  font-size: .73rem;
  color: var(--red);
  min-height: 14px;
}

.form-success {
  margin-top: 14px;
  padding: 13px 18px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  color: #2e7d32;
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-error-global {
  margin-top: 14px;
  padding: 13px 18px;
  background: #ffebee;
  border: 1px solid #ef9a9a;
  border-radius: var(--radius-sm);
  color: var(--red);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ══════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════ */
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pdc-swatch {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pdc-swatch i {
  font-size: 2rem;
  color: rgba(255, 255, 255, .8);
}

.pdc-swatch h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .95);
  letter-spacing: .5px;
}

.pdc-body {
  padding: 22px;
}

.pdc-ci {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pdc-body p {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.pdc-specs {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.pdc-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}

.pdc-spec-label {
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.pdc-spec-val {
  color: var(--text-dark);
  font-weight: 700;
}

/* ══════════════════════════════════
   APPLICATIONS PAGE
══════════════════════════════════ */
.apps-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.app-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: grid;
  grid-template-columns: auto 1fr;
}

.app-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.adc-icon-col {
  width: 160px;
  min-height: 160px;
  background: linear-gradient(135deg, rgba(255, 111, 0, .08), rgba(255, 193, 7, .05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  border-right: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.adc-icon-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adc-icon-col i {
  position: relative;
  z-index: 1;
}

.adc-body {
  padding: 22px;
}

.adc-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.adc-body p {
  font-size: .86rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 12px;
}

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

.adc-tag {
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255, 111, 0, .08);
  border: 1px solid rgba(255, 111, 0, .2);
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ══════════════════════════════════
   GLOBAL PRESENCE PAGE
══════════════════════════════════ */
.global-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 52px;
  align-items: start;
}

.region-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.region-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.region-card:hover,
.region-card.active {
  border-color: rgba(255, 111, 0, .35);
  background: rgba(255, 111, 0, .02);
  box-shadow: var(--shadow-md);
}

.rc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 193, 7, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}

.rc-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.rc-info p {
  font-size: .83rem;
  line-height: 1.65;
  color: var(--text-mid);
}

.world-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--navbar-h) + 20px);
}

.world-map {
  width: 100%;
  height: auto;
  background: #f0ece4;
}

.pulse-ring {
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: .6
  }

  100% {
    transform: scale(2.5);
    opacity: 0
  }
}

.global-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.gstat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.gstat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
}

.gstat-label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ══════════════════════════════════
   GALLERY PAGE
══════════════════════════════════ */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.gallery-filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  background: #fff;
  transition: all var(--transition);
  cursor: pointer;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  position: relative;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  transition: transform .5s;
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.07);
}

.gallery-thumb-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

.gallery-overlay span {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .93);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .2);
}

.lightbox-content {
  width: 380px;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(255, 193, 7, .15);
}

.lightbox-caption {
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  text-align: center;
  max-width: 480px;
  font-style: italic;
}

/* ══════════════════════════════════
   SUSTAINABILITY & QUALITY PAGES
══════════════════════════════════ */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sustain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.sustain-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left;
}

.sustain-card:hover::after {
  transform: scaleX(1);
}

.sustain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.sc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 111, 0, .1), rgba(255, 193, 7, .07));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 14px;
}

.sustain-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 9px;
}

.sustain-card p {
  font-size: .86rem;
  line-height: 1.78;
  color: var(--text-mid);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.quality-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.quality-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.qc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, .04);
  position: absolute;
  top: 14px;
  right: 20px;
  line-height: 1;
}

.qc-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(255, 111, 0, .1), rgba(255, 193, 7, .06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 14px;
}

.quality-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.quality-card p {
  font-size: .86rem;
  line-height: 1.78;
  color: var(--text-mid);
}

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-page-content p {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

.about-mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}

.about-mini-card:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.amc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 111, 0, .1), rgba(255, 193, 7, .06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.about-mini-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.about-mini-card p {
  font-size: .82rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.r-d1 {
  transition-delay: .1s
}

.r-d2 {
  transition-delay: .2s
}

.r-d3 {
  transition-delay: .3s
}

.r-d4 {
  transition-delay: .4s
}


/* ══════════════════════════════════════════════════════════
   FULLY RESPONSIVE — All Breakpoints
   Desktop (1440+) → Laptop (1200) → Tablet (1024/768) → Mobile (480/375/320)
══════════════════════════════════════════════════════════ */

/* ─── LARGE DESKTOP (1440px+) ─── */
@media (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }

  .nav-container {
    max-width: 1400px;
  }

  .hero-title .l1,
  .hero-title .l2 {
    font-size: 5.6rem;
  }

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

/* ─── LAPTOP / SMALL DESKTOP (1200px) ─── */
@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }

  .nav-links>li>a {
    padding: 8px 10px;
    font-size: .82rem;
  }

  .hero-title .l1,
  .hero-title .l2 {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  }

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

/* ─── TABLET LANDSCAPE / SMALL LAPTOP (1024px) ─── */
@media (max-width: 1024px) {
  :root {
    --navbar-h: 70px;
  }

  .container {
    padding: 0 22px;
  }

  /* HERO */
  .hero {
    padding: 44px 0 52px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 36px;
  }

  .hero::after {
    display: none;
  }

  .hero-desc {
    max-width: 100%;
  }

  /* ABOUT */
  .about-strip-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-img-wrap {
    height: 300px;
  }

  /* PRODUCTS PREVIEW */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* APPS */
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* HIGHLIGHTS */
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* CONTACT STRIP */
  .contact-strip-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  /* INNER PAGES */
  .global-page-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .world-map-wrap {
    position: static;
  }

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

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

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

  .apps-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

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

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

  /* NAV */
  .nav-links>li>a {
    padding: 7px 9px;
    font-size: .79rem;
  }
}

/* ─── TABLET PORTRAIT (768px) ─── */
@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
  }

  .container {
    padding: 0 18px;
  }

  .section-pad {
    padding: 48px 0;
  }

  /* TOP BAR */
  .top-bar {
    display: none;
  }

  /* NAVBAR MOBILE */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--navbar-h) + 16px) 22px 80px;
    gap: 2px;
    transform: translateX(-100%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    z-index: 1050;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .navbar {
    z-index: 1060;
  }

  .nav-links>li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
  }

  .nav-links>li:last-child {
    border-bottom: none;
  }

  .nav-links>li>a {
    padding: 14px 16px;
    font-size: 1rem;
    letter-spacing: .5px;
    border-radius: 0;
    width: 100%;
    white-space: normal;
  }

  .nav-links>li>a:hover,
  .nav-links>li>a.active {
    background: rgba(255, 111, 0, .05);
    padding-left: 20px;
  }

  .nav-links .nav-cta {
    margin-left: 0 !important;
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    font-size: .95rem !important;
    border-bottom: none !important;
  }

  .arrow-icon {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 111, 0, .03);
    margin: 4px 0 6px 12px;
    border: 1px solid rgba(255, 111, 0, .1);
    border-radius: var(--radius-sm);
    box-shadow: none;
  }

  .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, .04);
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu li a {
    padding: 10px 16px;
    font-size: .88rem;
  }

  /* HERO */
  .hero {
    padding: 36px 0 44px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
  }

  .hero-feature-card {
    padding: 16px 14px;
  }

  .hero-feature-card h4 {
    font-size: .9rem;
  }

  .hero-feature-card p {
    font-size: .75rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-stats {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .h-stat-div {
    display: none;
  }

  .h-stat-num {
    font-size: 1.6rem;
  }

  .h-stat-label {
    font-size: .65rem;
  }

  /* ABOUT STRIP */
  .about-img-wrap {
    height: 240px;
  }

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

  /* PRODUCTS PREVIEW */
  .products-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  /* APPS */
  .apps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* HIGHLIGHTS */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* CONTACT STRIP */
  .contact-strip {
    padding: 52px 0;
  }

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

  /* FOOTER */
  .footer {
    padding: 48px 0 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
  }

  /* FLOATING BUTTONS */
  .floating-btns {
    right: 12px;
    top: auto;
    bottom: 22px;
    transform: none;
    flex-direction: column-reverse;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.1rem;
  }

  .float-btn:hover {
    transform: scale(1.1);
  }

  /* CHATBOX */
  .chatbox {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 130px;
    left: 12px;
    max-height: calc(100vh - 180px);
    border-radius: 14px;
  }

  .chat-messages {
    max-height: calc(100vh - 320px);
  }

  /* PAGE HERO */
  .page-hero {
    padding: 40px 0 36px;
  }

  .page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* PRODUCTS PAGE */
  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* APPS PAGE */
  .apps-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .app-detail-card {
    grid-template-columns: 1fr;
  }

  .adc-icon-col {
    width: 100%;
    height: 180px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  /* SUSTAINABILITY */
  .sustain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* QUALITY */
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-filters {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 7px 14px;
    font-size: .75rem;
  }

  /* GLOBAL */
  .global-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
  }

  /* CONTACT FORM */
  .contact-form-card {
    padding: 28px 20px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ABOUT PAGE */
  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* LIGHTBOX */
  .lightbox-content {
    width: calc(100vw - 40px);
    height: calc(100vw - 40px);
    max-width: 360px;
    max-height: 360px;
  }
}

/* ─── MOBILE (576px) ─── */
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .section-pad {
    padding: 40px 0;
  }

  /* HERO */
  .hero {
    padding: 28px 0 40px;
  }

  .hero-title .l1,
  .hero-title .l2 {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  .hero-eyebrow {
    font-size: .7rem;
    padding: 5px 12px;
    letter-spacing: 1.5px;
  }

  .hero-desc {
    font-size: .93rem;
  }

  .hero-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-stats {
    gap: 12px;
    flex-wrap: wrap;
  }

  .h-stat-num {
    font-size: 1.5rem;
  }

  /* PRODUCTS GRID */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-card-body h4 {
    font-size: .9rem;
  }

  .product-card-body p {
    font-size: .72rem;
  }

  /* HIGHLIGHTS */
  .highlight-card {
    padding: 24px 18px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand-name {
    font-size: .82rem;
  }

  /* SUSTAIN */
  .sustain-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* GLOBAL STATS */
  .global-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .gstat {
    padding: 16px 12px;
  }

  .gstat-num {
    font-size: 1.8rem;
  }

  /* PRODUCTS PAGE */
  .products-page-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* CONTACT */
  .contact-form-card {
    padding: 22px 16px;
  }

  .contact-form-card h3 {
    font-size: 1.3rem;
  }

  /* CHATBOX */
  .chatbox {
    border-radius: 12px;
    bottom: 120px;
  }

  .chat-header {
    padding: 13px 16px;
  }

  .chat-messages {
    padding: 14px;
    gap: 8px;
  }

  .chat-input-row {
    padding: 10px 12px;
  }
}

/* ─── SMALL PHONE (480px) ─── */
@media (max-width: 480px) {
  :root {
    --navbar-h: 60px;
  }

  .container {
    padding: 0 14px;
  }

  /* LOGO on small phone */
  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-main {
    font-size: .85rem;
    letter-spacing: .8px;
  }

  /* HERO */
  .hero-title .l1,
  .hero-title .l2 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .hero-right {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-feature-card {
    padding: 12px 10px;
  }

  .hfc-icon {
    width: 36px;
    height: 36px;
    font-size: .95rem;
    margin-bottom: 8px;
  }

  /* SECTION HEADINGS */
  .section-heading {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  /* PRODUCTS */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .product-card-swatch {
    height: 120px;
  }

  .product-card-body {
    padding: 10px 12px 8px;
  }

  /* APPS */
  .app-card-body {
    padding: 14px 16px;
  }

  /* HIGHLIGHTS */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* CONTACT STRIP */
  .cs-item {
    padding: 12px 14px;
    gap: 10px;
  }

  .cs-icon {
    width: 32px;
    height: 32px;
    font-size: .85rem;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* GLOBAL */
  .global-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* LIGHTBOX */
  .lightbox-content {
    width: calc(100vw - 32px);
    height: calc(100vw - 32px);
  }

  /* ABOUT VALUES */
  .about-values {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .av-item {
    padding: 10px 12px;
  }

  /* QUALITY/SUSTAIN */
  .sustain-grid {
    grid-template-columns: 1fr;
  }

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

  /* FOOTER */
  .footer {
    padding: 40px 0 0;
  }

  .footer-bottom {
    padding: 14px 0;
  }

  .footer-bottom p {
    font-size: .7rem;
  }

  /* CHATBOX */
  .chatbox {
    width: calc(100vw - 20px);
    right: 10px;
    left: 10px;
    bottom: 110px;
  }

  /* FLOATING BUTTONS */
  .floating-btns {
    right: 10px;
    bottom: 16px;
    gap: 8px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  /* BUTTONS */
  .btn {
    padding: 11px 22px;
    font-size: .88rem;
  }

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

/* ─── VERY SMALL PHONE (375px — iPhone SE, etc.) ─── */
@media (max-width: 375px) {
  :root {
    --navbar-h: 58px;
  }

  .container {
    padding: 0 12px;
  }

  /* LOGO */
  .logo-img {
    width: 36px;
    height: 36px;
  }

  .logo-main {
    font-size: .78rem;
    letter-spacing: .5px;
  }

  .logo-sub-top {
    font-size: .42rem;
  }

  .logo-sub-bottom {
    font-size: .52rem;
  }

  /* HERO */
  .hero {
    padding: 24px 0 36px;
  }

  .hero-title .l1,
  .hero-title .l2 {
    font-size: clamp(1.9rem, 12vw, 2.5rem);
  }

  .hero-eyebrow {
    font-size: .65rem;
    letter-spacing: 1px;
    padding: 5px 10px;
  }

  .hero-desc {
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero-btns {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-right {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 22px;
  }

  .hero-feature-card {
    padding: 10px 9px;
  }

  .hero-feature-card h4 {
    font-size: .82rem;
    margin-bottom: 4px;
  }

  .hero-feature-card p {
    font-size: .7rem;
    line-height: 1.5;
  }

  .hfc-icon {
    width: 32px;
    height: 32px;
    font-size: .85rem;
    margin-bottom: 7px;
  }

  .hero-stats {
    gap: 10px;
  }

  .h-stat-num {
    font-size: 1.35rem;
  }

  .h-stat-label {
    font-size: .6rem;
    letter-spacing: 1px;
  }

  /* NAV mobile drawer */
  .nav-links {
    padding: calc(var(--navbar-h) + 12px) 16px 70px;
  }

  .nav-links>li>a {
    padding: 13px 14px;
    font-size: .95rem;
  }

  /* PRODUCTS */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .product-card-swatch {
    height: 100px;
  }

  .product-card-body h4 {
    font-size: .84rem;
  }

  .product-card-body p {
    display: none;
  }

  .product-card-link {
    font-size: .75rem;
    padding: 8px 12px 10px;
  }

  /* SECTION HEADINGS */
  .section-heading {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 12px;
  }

  .section-eyebrow {
    font-size: .68rem;
    letter-spacing: 2.5px;
  }

  /* APPS */
  .app-card-banner {
    height: 80px;
    font-size: 1.8rem;
  }

  .app-card-body {
    padding: 14px;
  }

  .app-card-body h4 {
    font-size: 1rem;
  }

  .app-card-body p {
    font-size: .8rem;
  }

  /* HIGHLIGHT CARDS */
  .highlight-card {
    padding: 20px 16px;
  }

  .highlight-card h3 {
    font-size: 1.05rem;
  }

  .highlight-card p {
    font-size: .82rem;
  }

  /* CONTACT STRIP */
  .contact-strip-left h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .contact-strip-left p {
    font-size: .88rem;
  }

  /* FOOTER */
  .footer-grid {
    gap: 20px;
  }

  .footer-brand-name {
    font-size: .78rem;
    letter-spacing: .8px;
  }

  .footer-tagline {
    font-size: .58rem;
  }

  .footer-brand p {
    font-size: .8rem;
  }

  .footer-links ul li a,
  .footer-contact p {
    font-size: .8rem;
  }

  /* ABOUT STRIP */
  .about-img-wrap {
    height: 200px;
  }

  .about-text p {
    font-size: .9rem;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  /* GLOBAL STATS */
  .global-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gstat {
    padding: 14px 10px;
  }

  .gstat-num {
    font-size: 1.6rem;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 32px 0 28px;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-hero p {
    font-size: .85rem;
  }

  /* CONTACT FORM */
  .contact-form-card {
    padding: 18px 14px;
    border-radius: var(--radius-sm);
  }

  .contact-info-card {
    padding: 18px 14px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: .85rem;
  }

  /* REGION CARDS */
  .region-card {
    padding: 14px 16px;
    gap: 12px;
  }

  .rc-icon {
    width: 36px;
    height: 36px;
    font-size: .9rem;
  }

  .rc-info h4 {
    font-size: .95rem;
  }

  .rc-info p {
    font-size: .78rem;
  }

  /* CHATBOX */
  .chatbox {
    width: calc(100vw - 16px);
    right: 8px;
    left: 8px;
    bottom: 108px;
    border-radius: 10px;
  }

  .chat-messages {
    max-height: 200px;
  }

  /* FLOATING */
  .floating-btns {
    right: 8px;
    bottom: 14px;
    gap: 7px;
  }

  .float-btn {
    width: 42px;
    height: 42px;
  }

  /* BUTTONS */
  .btn {
    padding: 10px 20px;
    font-size: .86rem;
    letter-spacing: .8px;
  }

  .btn-sm {
    padding: 8px 14px;
    font-size: .76rem;
  }
}

/* ─── TINY PHONE (320px — iPhone 4/5, old Androids) ─── */
@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  .logo-main {
    font-size: .72rem;
    letter-spacing: .3px;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }

  .hero-title .l1,
  .hero-title .l2 {
    font-size: 1.8rem;
  }

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

  .hero-right {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero-feature-card h4 {
    font-size: .78rem;
  }

  .hero-feature-card p {
    display: none;
  }

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

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

  .global-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    gap: 18px;
  }
}

/* ─── TOUCH & ACCESSIBILITY IMPROVEMENTS ─── */
@media (hover: none) and (pointer: coarse) {

  /* Larger touch targets on touch devices */
  .nav-links>li>a {
    min-height: 44px;
  }

  .btn {
    min-height: 44px;
  }

  .float-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .chat-input-row button {
    min-width: 44px;
    min-height: 44px;
  }

  .gallery-filter-btn {
    min-height: 40px;
  }

  /* Disable hover-only transforms on touch */
  .product-card:hover,
  .app-card:hover,
  .highlight-card:hover,
  .hero-feature-card:hover,
  .sustain-card:hover,
  .quality-card:hover,
  .region-card:hover {
    transform: none;
  }

  /* Dropdown always visible in nav on touch when open */
  .dropdown .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* ─── PRINT MEDIA ─── */
@media print {

  .navbar,
  .floating-btns,
  .chatbox,
  .footer-social {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}