/* GLOBALMATE EXPORTS - LUXURY NAVY & GREEN STYLESHEET */
:root {
  /* Brand Primary Colors (User Specified Logo Palette) */
  --navy-dark: #081B33;
  --navy-main: #0B2545;
  --navy-light: #13315C;
  --navy-accent: #1E3A60;

  /* Leaf & Emerald Greens */
  --green-primary: #1E8D50;
  --green-secondary: #27AE60;
  --green-light: #2ECC71;
  --green-dark: #145A32;
  --green-glow: rgba(46, 204, 113, 0.25);

  /* Gold & Neutral Accents */
  --gold-accent: #D4AF37;
  --gold-light: #F4D03F;
  --bg-cream: #F7FAF8;
  --bg-card: #FFFFFF;
  --text-primary: #0E1E30;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --border-color: #E2E8F0;

  /* Typography */
  --font-heading: 'Cinzel', 'Cormorant Garamond', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadow Effects */
  --shadow-sm: 0 2px 4px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 8px 16px rgba(11, 37, 69, 0.1);
  --shadow-lg: 0 16px 32px rgba(11, 37, 69, 0.15);
  --shadow-glow: 0 0 25px rgba(30, 141, 80, 0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 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);
  background-color: var(--bg-cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--green-secondary);
}

ul {
  list-style: none;
}

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

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.w-full {
  width: 100%;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.text-green {
  color: var(--green-secondary) !important;
}

.text-green-light {
  color: var(--green-light) !important;
}

.text-whatsapp {
  color: #25D366 !important;
}

/* UTILITY BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(30, 141, 80, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-secondary), var(--green-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 141, 80, 0.4);
  color: #FFFFFF;
}

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

.btn-outline:hover {
  background: var(--green-primary);
  color: #FFFFFF;
}

.btn-outline-navy,
.btn-know-more {
  background: transparent;
  border: 2px solid var(--navy-main);
  color: var(--navy-main);
  font-weight: 700;
  transition: var(--transition);
}

.btn-outline-navy i,
.btn-know-more i {
  color: var(--navy-main);
  transition: var(--transition);
}

.btn-outline-navy:hover,
.btn-outline-navy:active,
.btn-outline-navy:focus,
.btn-outline-navy:focus-visible,
.btn-know-more:hover,
.btn-know-more:active,
.btn-know-more:focus,
.btn-know-more:focus-visible {
  background: var(--navy-main) !important;
  border-color: var(--navy-main) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.25);
  transform: translateY(-2px);
}

.btn-outline-navy:hover i,
.btn-outline-navy:active i,
.btn-outline-navy:focus i,
.btn-know-more:hover i,
.btn-know-more:active i,
.btn-know-more:focus i {
  color: #FFFFFF !important;
}

.btn-grey,
.btn-outline-green,
.btn-outline-gold {
  background: #475569 !important;
  border: 2px solid #475569 !important;
  color: #FFFFFF !important;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(71, 85, 105, 0.25);
}

.btn-grey i,
.btn-outline-green i,
.btn-outline-gold i {
  color: #FFFFFF !important;
  transition: var(--transition);
}

.btn-grey:hover,
.btn-grey:active,
.btn-grey:focus,
.btn-grey:focus-visible,
.btn-outline-green:hover,
.btn-outline-green:active,
.btn-outline-green:focus,
.btn-outline-green:focus-visible,
.btn-outline-gold:hover,
.btn-outline-gold:active,
.btn-outline-gold:focus,
.btn-outline-gold:focus-visible {
  background: #1E293B !important;
  border-color: #1E293B !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 16px rgba(30, 41, 59, 0.4);
  transform: translateY(-2px);
}

.btn-grey:hover i,
.btn-grey:active i,
.btn-grey:focus i,
.btn-outline-green:hover i,
.btn-outline-green:active i,
.btn-outline-green:focus i,
.btn-outline-gold:hover i,
.btn-outline-gold:active i,
.btn-outline-gold:focus i {
  color: #FFFFFF !important;
}

.btn-navy-gold {
  background: linear-gradient(135deg, var(--navy-main), var(--navy-dark));
  color: #FFFFFF;
  border: 1px solid var(--green-primary);
}

.btn-navy-gold:hover {
  border-color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.3);
}

.btn-whatsapp {
  background-color: var(--green-primary);
  color: #FFFFFF;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background-color: var(--green-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 141, 80, 0.35);
}

.btn-whatsapp-stacked {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem !important;
  text-align: center;
}

.btn-whatsapp-stacked i {
  font-size: 1.95rem;
  flex-shrink: 0;
}

.whatsapp-btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.wa-line-1 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.wa-line-2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 0.15rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background-color: var(--navy-dark);
  color: #CBD5E0;
  font-size: 0.825rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-info span {
  margin-right: 1.5rem;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-contact a {
  color: #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-contact a:hover {
  color: var(--green-light);
}

.social-header-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icon.wa:hover {
  background: #25D366;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.social-icon.fb:hover {
  background: #1877F2;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(24, 119, 242, 0.5);
}

.social-icon.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(220, 39, 67, 0.5);
}

.social-icon.li:hover {
  background: #0A66C2;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(10, 102, 194, 0.5);
}

/* FOOTER SOCIAL ROW */
.footer-social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-btn.wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
}

.social-btn.fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(24, 119, 242, 0.5);
}

.social-btn.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(220, 39, 67, 0.5);
}

.social-btn.li:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(10, 102, 194, 0.5);
}

.whatsapp-badge {
  background-color: rgba(37, 211, 102, 0.15);
  color: #25D366 !important;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: calc(0.85rem + 1pt);
  font-weight: 600;
}

/* HEADER & NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 2rem;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1.5rem;
}

.brand-logo-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid var(--green-primary);
  box-shadow: 0 0 12px rgba(30, 141, 80, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #FFFFFF;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.08) saturate(1.1);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--navy-dark);
  letter-spacing: 0.75px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  margin-left: 0;
  margin-right: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dark);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

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

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

.main-nav a.active {
  color: var(--green-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-actions .btn {
  height: 40px;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.825rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}

.header-actions .btn-primary {
  box-shadow: 0 4px 10px rgba(30, 141, 80, 0.25);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-dark);
  cursor: pointer;
}

/* MOBILE NAV DRAWER */
.mobile-nav {
  display: none;
  background-color: var(--navy-dark);
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-main) 60%, #0d2a4a 100%);
  color: #FFFFFF;
  padding: 4.5rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 141, 80, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 141, 80, 0.2);
  border: 1px solid var(--green-primary);
  color: var(--green-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: calc(0.85rem + 1pt);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.text-green-gradient {
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(5px);
  text-align: left !important;
}

.hero-feature-item div {
  text-align: left !important;
}

.hero-feature-item .icon-box {
  width: 42px;
  height: 42px;
  background: rgba(30, 141, 80, 0.25);
  color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: left !important;
  margin: 0 0 0.15rem 0;
}

.hero-feature-item p {
  font-size: 0.78rem;
  color: #A0AEC0;
  text-align: left !important;
  margin: 0;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* HERO VISUAL COLLAGE */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-main-img {
  width: 100%;
  aspect-ratio: 1022 / 754;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(30, 141, 80, 0.4);
  display: block;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #081B33;
  border: 1.5px solid var(--green-primary);
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  z-index: 10;
  text-align: left;
}

.floating-badge div {
  text-align: left;
}

.floating-badge i {
  font-size: 1.8rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.floating-badge strong {
  display: block;
  font-size: calc(1.0rem + 1pt);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.floating-badge span {
  display: block;
  font-size: calc(0.85rem + 1pt);
  font-weight: 600;
  color: #E2E8F0;
  letter-spacing: 0.3px;
}

.badge-top-right {
  top: -20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
}

/* SECTION STYLES */
.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.sub-heading {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
}

.light-text .section-title {
  color: #FFFFFF;
}

.light-text .section-desc {
  color: rgba(255, 255, 255, 0.88);
}

.gold-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-accent));
  margin: 0.85rem auto 1.25rem auto;
  border-radius: 2px;
}

.green-divider {
  width: 70px;
  height: 3px;
  background: var(--green-primary);
  margin: 0.85rem 0 1.25rem 0;
  border-radius: 2px;
}

.text-center .green-divider,
.text-center .gold-divider {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* CERTIFICATIONS GRID */
.certifications-section {
  background-color: #FFFFFF;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.cert-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green-primary);
  transition: var(--transition);
}

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

.cert-card:hover::before {
  width: 8px;
}

.cert-icon-wrap {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--navy-main), var(--navy-dark));
  color: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(11, 37, 69, 0.2);
}

.cert-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}

.cert-authority {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cert-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.cert-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(30, 141, 80, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* ABOUT SECTION */
.about-section {
  background-color: var(--bg-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-card {
  position: relative;
  width: 100%;
  display: flex;
}

.about-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--green-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  min-width: 160px;
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}

.exp-text {
  font-size: calc(0.75rem + 1pt);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-item i {
  width: 38px;
  height: 38px;
  background: var(--green-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.highlight-item h4 {
  font-size: 1.05rem;
  color: var(--navy-dark);
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* PRODUCTS SECTION */
.products-section {
  background-color: #FFFFFF;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dark);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--navy-main);
  color: #FFFFFF;
  border-color: var(--navy-main);
}

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

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

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

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

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

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: calc(0.75rem + 1pt);
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-green {
  background-color: var(--green-primary);
}

.badge-red {
  background-color: #C0392B;
}

.badge-navy {
  background-color: var(--navy-main);
}

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

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-primary);
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
  min-height: 2.2rem;
  display: flex;
  align-items: center;
}

.product-short-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  min-height: 4.0rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin-bottom: 1.5rem;
  min-height: 5.0rem;
  align-content: flex-start;
}

.tag {
  background: #FFFDF9;
  border: 1px solid #E5DCD3;
  color: var(--navy-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  white-space: nowrap;
}

.tag:hover {
  border-color: var(--gold-dark);
  background-color: #FAF4EB;
  color: var(--gold-dark);
}

.product-card-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
}

.product-card-actions .btn {
  flex: 1 1 auto;
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

/* WHY CHOOSE US SECTION */
.why-choose-section {
  background-color: var(--cream-bg);
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-choose-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-primary));
  opacity: 0;
  transition: var(--transition);
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
}

.why-choose-card:hover::before {
  opacity: 1;
}

.why-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(30, 141, 80, 0.12), rgba(30, 141, 80, 0.22));
  color: var(--green-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(30, 141, 80, 0.3);
  transition: var(--transition);
}

.why-choose-card:hover .why-icon-wrapper {
  background: var(--green-primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.why-choose-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-choose-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* EXPORT CAPABILITY SECTION */
.capabilities-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-main) 100%);
  color: #FFFFFF;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.capability-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.capability-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--green-primary);
  transform: translateY(-5px);
}

.cap-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(30, 141, 80, 0.2);
  border: 1px solid var(--green-primary);
  color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem auto;
  flex-shrink: 0;
}

.capability-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.cap-highlight {
  font-weight: 700;
  color: var(--green-light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-text {
  font-size: 0.9rem;
  color: #E2E8F0;
  font-weight: 500;
  line-height: 1.55;
}

/* QUOTE & CONTACT SECTION */
.quote-section {
  background-color: var(--bg-cream);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
}

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

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  white-space: nowrap;
}

.required-star {
  color: #C0392B;
  font-weight: 800;
}

.form-group input,
.form-group select {
  height: 48px;
  padding: 0 1rem;
  border: 1px solid #CBD5E0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--text-primary);
  background-color: #FFFFFF;
  transition: var(--transition);
  box-sizing: border-box;
  width: 100%;
}

.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #CBD5E0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--text-primary);
  background-color: #FFFFFF;
  transition: var(--transition);
  box-sizing: border-box;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(30, 141, 80, 0.15);
}

.product-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  background: #F7FAF8;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #CBD5E0;
  box-sizing: border-box;
  width: 100%;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-primary);
  cursor: pointer;
}

/* SIDEBAR CONTACT CARDS */
.quote-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-contact-card {
  background: var(--navy-dark);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--green-primary);
}

.sidebar-contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.sidebar-sub {
  font-size: 0.875rem;
  color: #A0AEC0;
  margin-bottom: 1.75rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  background: rgba(30, 141, 80, 0.25);
  color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-light);
  letter-spacing: 0.5px;
}

.info-val {
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.4;
}

.whatsapp-qr-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.qr-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  margin-bottom: 1.25rem;
}

.qr-header i {
  font-size: 2.2rem;
}

.qr-header h4 {
  font-size: 1.05rem;
  color: var(--navy-dark);
}

.qr-header span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.qr-code-wrapper {
  background: #F7FAF8;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--green-primary);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.qr-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* FOOTER STYLES */
.site-footer {
  background-color: var(--navy-dark);
  color: #A0AEC0;
  padding-top: 4.5rem;
  border-top: 3px solid var(--green-primary);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logo .brand-logo-circle {
  width: 78px;
  height: 78px;
}

.footer-logo-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid var(--green-primary);
  box-shadow: 0 0 12px rgba(30, 141, 80, 0.25);
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 2px;
}

.footer-brand-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.85rem;
  color: #FFFFFF;
  letter-spacing: 0.75px;
  line-height: 1.1;
}

.footer-brand-tag {
  display: block;
  font-size: 0.65rem;
  color: var(--green-light);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-certs-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.mini-cert {
  background: rgba(255, 255, 255, 0.08);
  color: var(--green-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  border: 1px solid rgba(30, 141, 80, 0.4);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: #CBD5E0;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--green-light);
  padding-left: 5px;
}

.footer-col p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer-col p a {
  color: #CBD5E0;
  transition: var(--transition);
  padding-left: 0 !important;
}

.footer-col p a:hover {
  color: var(--green-light);
  text-decoration: underline;
  padding-left: 0 !important;
}

.footer-col p i {
  color: var(--green-primary);
  margin-top: 0.2rem;
}

.footer-bottom {
  background-color: #051224;
  padding: 1.25rem 0;
  font-size: 0.85rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #CBD5E0;
}

/* MODALS */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 27, 51, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

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

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-lg {
  max-width: 850px;
}

.modal-close {
  position: sticky;
  top: 15px;
  float: right;
  z-index: 1000;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--navy-dark);
  cursor: pointer;
  transition: var(--transition);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: -0.5rem;
  margin-right: -0.5rem;
}

.modal-close:hover {
  background: var(--navy-dark);
  color: #FFFFFF;
  transform: scale(1.08);
}



.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (DESKTOP, TABLET & MOBILE OPTIMIZATION)
   ========================================================================== */

/* 1. LARGE TABLETS & LAPTOPS (max-width: 1024px) */
@media (max-width: 1024px) {
  .brand-logo-container {
    margin-right: 0.85rem;
  }

  .main-nav ul {
    gap: 0.85rem;
  }

  .hero-container,
  .about-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products-grid,
  .certifications-grid,
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  .about-img {
    height: 450px;
  }
}

/* 2. TABLETS & MOBILE DEVICES (max-width: 992px) */
@media (max-width: 992px) {
  .top-bar-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
  }

  .top-info {
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: center;
  }

  .top-info span {
    margin-right: 0;
  }

  .top-info .desktop-only {
    display: none;
  }

  .top-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.85rem;
    width: 100%;
  }

  .top-contact a {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .social-header-links {
    margin-left: 0;
  }

  /* Switch Header to Mobile Layout */
  .header-container {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .brand-logo-container {
    margin-right: 0;
    gap: 0.6rem;
  }

  .brand-logo-circle {
    width: 46px;
    height: 46px;
    border-width: 2px;
  }

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

  .main-nav {
    display: none !important;
  }

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

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    color: var(--navy-dark);
    border-radius: var(--radius-sm);
    background: rgba(11, 37, 69, 0.06);
    border: 1px solid rgba(11, 37, 69, 0.12);
  }

  /* Form & Checkboxes 1 Column Stack */
  .form-row,
  .product-checkbox-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
}

/* 3. PHONES & SMALL TABLETS (max-width: 768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .top-bar {
    padding: 0.4rem 0;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 2.5rem 0 3rem 0;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

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

  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-main-img {
    width: 100%;
    aspect-ratio: 1022 / 754;
    height: auto;
    object-fit: cover;
  }

  /* Floating Badges Mobile Preservation */
  .floating-badge {
    padding: 0.55rem 0.85rem;
    gap: 0.55rem;
    border-radius: var(--radius-sm);
    text-align: left;
  }

  .floating-badge div {
    text-align: left;
  }

  .floating-badge i {
    font-size: 1.25rem;
  }

  .floating-badge strong {
    font-size: 0.82rem;
    line-height: 1.2;
    margin-bottom: 0.1rem;
    white-space: nowrap;
    text-align: left;
  }

  .floating-badge span {
    font-size: 0.7rem;
    line-height: 1.2;
    white-space: nowrap;
    text-align: left;
  }

  .badge-top-right {
    top: -10px;
    right: -6px;
  }

  .badge-bottom-left {
    bottom: -10px;
    left: -6px;
  }

  .hero-features-grid,
  .products-grid,
  .certifications-grid,
  .why-choose-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .hero-feature-item,
  .hero-feature-item div,
  .hero-feature-item h4,
  .hero-feature-item p {
    text-align: left !important;
  }

  .about-img {
    height: 320px;
  }

  /* Product Card Buttons Stack on Mobile */
  .product-card-actions {
    flex-direction: column !important;
    gap: 0.6rem;
  }

  .product-card-actions .btn {
    width: 100% !important;
    justify-content: center;
  }

  /* Inputs prevent iOS auto-zoom */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

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

  /* Modals Mobile Optimization */
  .modal-backdrop {
    padding: 0.75rem;
  }

  .modal-box {
    padding: 1.5rem 1rem;
    max-height: 90vh;
    width: 94%;
    border-radius: var(--radius-md);
  }

  .modal-close {
    top: 10px;
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }

  /* Table horizontal scroll container for specs */
  .specs-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* 4. SMALL MOBILE PHONES (max-width: 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

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

  .product-card-body {
    padding: 1.25rem 1rem;
  }

  .product-tags {
    gap: 0.35rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }

  .quote-form-card {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   PRINT MEDIA RULES (PERFECT PDF PRINT GENERATION)
   ========================================================================== */
@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }

  html, body {
    width: 210mm !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    overflow: visible !important;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
}

/* =============================================
   CATALOGUE QR DOWNLOAD CARD
   ============================================= */

.catalogue-card-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding: 0 1rem;
}

.catalogue-qr-card {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(11, 37, 69, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

/* Header */
.cat-card-header {
  text-align: center;
  margin-top: 0.2rem;
}

.cat-pdf-icon {
  font-size: 1.6rem;
  color: var(--navy-main);
  margin-bottom: 0.2rem;
}

.cat-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 0.08em;
  margin: 0.2rem 0 0.2rem;
}

.cat-card-sub {
  font-size: 0.82rem;
  color: #64748B;
  margin: 0;
}

/* QR Code */
.cat-qr-wrapper {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-qr-img {
  width: 160px;
  height: 160px;
  display: block;
  border-radius: 6px;
}

/* Link Section */
.cat-link-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.cat-link-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cat-link-box {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  color: var(--navy-main);
  word-break: break-all;
  text-align: center;
  font-family: 'Courier New', monospace;
}

.cat-copy-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border: none;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 141, 80, 0.3);
}

.cat-copy-btn:hover,
.cat-copy-btn:active {
  background: linear-gradient(135deg, var(--green-secondary), var(--green-primary));
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 141, 80, 0.4);
}

.cat-copy-btn.copied {
  background: var(--navy-main);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.3);
}

.cat-open-link {
  font-size: 0.82rem;
  color: var(--gold-accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cat-open-link:hover {
  color: var(--navy-main);
  text-decoration: underline;
}

/* Download Button */
.cat-download-btn {
  width: 100%;
  background: transparent;
  border: 2px solid var(--navy-main);
  color: var(--navy-main);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition);
  text-decoration: none;
  margin-top: 0.3rem;
}

.cat-download-btn:hover,
.cat-download-btn:active {
  background: var(--navy-main);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.25);
  transform: translateY(-2px);
}

/* =============================================
   CATALOGUE MODAL
   ============================================= */

.cat-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 27, 51, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cat-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cat-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.94);
  z-index: 9001;
  width: 90%;
  max-width: 420px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.cat-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.cat-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1000;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--navy-dark);
  cursor: pointer;
  transition: var(--transition);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cat-modal-close:hover {
  background: var(--navy-dark);
  color: #FFFFFF;
  transform: scale(1.08);
}