/* ============================================
   SHRI VRINDAVAN IMPEX — Design System
   Premium B2B Textile Export Website
   Apple × COS × Swiss Corporate Design
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Variables */
  --brand: #004700;
  --brand-dark: #00381A;
  --brand-light: #005E2A;

  --accent: #FFDD43;
  --accent-hover: #E6C72E;

  --background: #FAFAF8;
  --surface: #FFFFFF;

  --text: #1F2937;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;

  --border: #E5E7EB;

  --success: #16A34A;
  --error: #DC2626;

  /* Legacy Mapping for compatibility */
  --primary: var(--brand);
  --primary-hover: var(--brand-dark);
  --primary-light: #DDEFD9;
  --bg: var(--surface);
  --bg-section: var(--background);
  --bg-surface: #FAFAF8;
  --text-heading: var(--text);
  --text-body: var(--text-light);
  --text-muted: #9CA3AF;

  /* Typography */
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Manrope', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Container */
  --container: 1200px;
  --container-narrow: 960px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}

/* ── RTL Support ── */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

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

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 32px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── Section ── */
.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-dark {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.section-dark .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .mini-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.section-dark .mini-card h3 {
  color: #ffffff;
}

.section-dark .mini-card p {
  color: rgba(255, 255, 255, 0.7);
}

.section-head {
  margin-bottom: var(--space-3xl);
}

.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-3xl);
}

.section-head h2 {
  margin-bottom: var(--space-md);
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Section Tag Badge ── */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-accent,
.btn-premium {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

.btn-accent:hover,
.btn-premium:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 221, 67, 0.2);
}

.product-actions {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0B3B1D; /* Dark green background as shown in reference */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
  border-bottom: 1px solid rgba(255, 221, 67, 0.15); /* subtle gold line */
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  background: rgba(11, 59, 29, 0.98);
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #d4af37, #FFDD43, #d4af37);
  min-height: 34px;
  height: auto;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

/* Shine overlay effect */
.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
  0% {
    left: -150%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.announcement-text {
  color: #00381A; /* dark brand green */
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 1;
  line-height: 1.35;
  display: block;
}

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

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo.logo-pill {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Reference Golden Text Style */
.logo-text-main {
  font-family: 'Berkshire Swash', 'Cormorant Garamond', 'Georgia', serif;
  color: #FFDD43; /* bright yellow gold */
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none; /* Sri Vrindavan Impex */
  transition: color var(--duration) var(--ease);
}

.logo-text-main:hover {
  color: #ffffff;
}

/* Footer logo circle */
.footer-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFDD43;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease);
  display: block;
}

.footer-logo-circle:hover {
  transform: scale(1.06);
}

/* Official Brand Seal Image */
.brand-seal-img {
  width: 160px; /* Zoomed default size */
  height: 160px;
  border-radius: 50%;
  border: 3px solid #FFDD43; /* gold border */
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  object-fit: cover;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  cursor: pointer;
}

.brand-seal-img:hover {
  transform: scale(1.15); /* Zoom even more on hover */
  box-shadow: var(--shadow-lg);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85); /* white text for dark header */
  position: relative;
  padding: 4px 0;
  transition: color var(--duration) var(--ease);
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent); /* gold hover */
}

.nav-cta {
  background: var(--accent); /* gold CTA button */
  color: var(--brand-dark) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--duration) var(--ease);
}

.nav-cta:hover {
  background: #ffffff;
  color: var(--brand-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 221, 67, 0.3);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25); /* white border */
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85); /* white text */
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  background: transparent;
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-btn .globe-icon {
  font-size: 1rem;
}

.lang-btn .arrow {
  font-size: 0.6rem;
  transition: transform var(--duration) var(--ease);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease);
  overflow: hidden;
  z-index: 100;
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  width: 100%;
  text-align: left;
  color: var(--text-body);
}

.lang-option .fi {
  width: 1.25em;
  height: 0.95em;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.lang-option:hover,
.lang-option.active {
  background: var(--bg-surface);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff; /* white color for dark header */
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg);
  padding: 80px var(--space-xl) var(--space-xl);
  box-shadow: var(--shadow-xl);
  transition: right var(--duration-slow) var(--ease);
  z-index: 1050; /* Set higher than fixed header (1000) so sidebar covers header cleanly */
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040; /* Above header (1000) */
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.mobile-nav-overlay.open {
  opacity: 1;
}

.mobile-nav .nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  color: #1F2937; /* Visible dark text on white mobile nav background */
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  color: var(--brand);
  padding-left: 8px;
}

.mobile-nav .lang-btn {
  color: #1F2937;
  border-color: var(--border);
  background: #FFFFFF;
}

.mobile-nav .lang-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.mobile-nav .nav-cta {
  display: block;
  text-align: center;
  margin-top: var(--space-lg);
  padding: 14px;
}

.mobile-nav .lang-switcher {
  margin-top: var(--space-lg);
  justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: 190px; /* Generous clearance for header & announcement bar on desktop */
  padding-bottom: 80px;
  overflow: hidden;
  background-color: #ffffff;
  background-image: url('../images/hero_banner_bg.png');
  background-repeat: no-repeat;
  background-position: right 80px;
  background-size: cover;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.1s forwards;
}

.hero-statement {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-statement > span {
  display: block;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.hero-statement .line-green {
  color: var(--brand);
  animation: fadeInUp 0.8s var(--ease) 0.2s forwards;
}

.hero-statement .line-gold {
  color: var(--brand-light);
  animation: fadeInUp 0.8s var(--ease) 0.3s forwards;
}

.hero-statement .line-white {
  color: var(--text);
  animation: fadeInUp 0.8s var(--ease) 0.4s forwards;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: #111827;
  font-weight: 500;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.6s forwards;
}

.hero .btn-premium {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

.hero .btn-premium:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

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

.hero .btn-secondary:hover {
  background: var(--brand);
  color: #ffffff;
}

.hero-stats-row {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.7s forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 59, 29, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: center;
  align-items: center;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.stat-item strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.stat-item span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--brand); /* Make labels darker brand green for high visibility */
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-spacer {
  width: 100%;
  height: 100%;
  min-height: 350px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-grid h2 {
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-heading);
  margin-bottom: var(--space-md);
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
}

.about-feature-item:hover {
  background: var(--surface);
  border-color: var(--brand);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.about-feature-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--brand);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
}

.about-feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 2px;
}

.about-feature-item p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* About Visual overlapping grid */
.about-visual-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-main-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(0, 43, 0, 0.95), rgba(0, 43, 0, 0.4) 60%, transparent);
  color: #fff;
  text-align: left;
}

.about-image-overlay strong {
  font-size: 1.15rem;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.about-image-overlay p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.about-floating-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.about-badge-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

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

.about-badge-card .badge-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.about-badge-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 2px;
}

.about-badge-card span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Credentials Trust Board */
.credentials-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.credential-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

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

.credential-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  margin: 0 auto var(--space-lg);
}

.credential-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.credential-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Inner Subpages — Premium Dark Page Header Banner */
.page-header-banner {
  padding: 160px 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
  color: #ffffff;
  text-align: center;
  border-bottom: 2px solid var(--accent);
}

.page-header-banner h1 {
  color: #ffffff !important;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.page-header-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

.page-header-banner .section-tag {
  background: rgba(255, 221, 67, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 221, 67, 0.3);
}

/* ============================================
   ABOUT SECTION — Compact Summary (index.php)
   ============================================ */

/* Summary grid: text left, stats right */
.about-summary-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-summary-grid h2 {
  margin-bottom: var(--space-md);
}

.about-lead {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

/* SGCCI inline badge */
.sgcci-badge-inline {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: all var(--duration) var(--ease);
}

.sgcci-badge-inline:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--brand);
}

.sgcci-badge-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
}

.sgcci-badge-inline strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.3px;
}

.sgcci-badge-inline span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Stats 2×2 grid */
.about-stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.about-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--duration) var(--ease);
}

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

.about-stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-stat-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

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

.service-card:hover::before {
  opacity: 1;
}

.icon-circle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Redesigned Services Page Components */
.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.service-card-premium {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--duration) var(--ease);
}

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

.service-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  font-size: 1.8rem;
  margin: 0 auto var(--space-xl);
}

.service-card-premium h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.service-card-premium p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Process Timeline Step Cards */
.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.process-step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.process-step-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-step-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 71, 0, 0.08);
  font-family: var(--font-heading);
}

.process-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.process-step-card p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Document Folder Mockup Card */
.document-mockup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
}

.mockup-header-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
}

.mockup-badge {
  background: rgba(0, 71, 0, 0.08);
  color: var(--brand);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.mockup-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mockup-doc-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mockup-doc-list li:last-child {
  border-bottom: none;
}

.doc-icon {
  font-size: 1.2rem;
  margin-right: var(--space-md);
}

.doc-name {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  text-align: left;
}

.status-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.status-tag.verified {
  background: rgba(0, 71, 0, 0.08);
  color: var(--brand);
}

.status-tag.certified {
  background: rgba(255, 221, 67, 0.15);
  color: var(--brand-dark);
}

/* Services Banner — dark section for index.php */
.services-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-light) 100%);
  padding: var(--space-4xl) 0;
  color: #fff;
}

.services-banner .section-tag {
  background: rgba(255, 221, 67, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 221, 67, 0.3);
}

.services-banner-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.services-banner-head h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.services-banner-head p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

/* Horizontal row of services */
.services-banner-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-3xl);
}

.services-banner-item {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-xl);
}

.services-banner-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 221, 67, 0.15);
  border: 1px solid rgba(255, 221, 67, 0.3);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin: 0 auto var(--space-md);
  transition: all var(--duration) var(--ease);
}

.services-banner-item:hover .services-banner-icon {
  background: rgba(255, 221, 67, 0.25);
  transform: scale(1.1);
}

.services-banner-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.services-banner-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin-bottom: 0;
}

.services-banner-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.services-banner-cta {
  text-align: center;
}


/* ============================================
   PRODUCTS / FABRIC RANGE
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

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

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

.product-image-container {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  background: var(--bg-surface);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease);
}

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

.product-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.product-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.product-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  border-color: var(--primary);
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-2xl) var(--space-3xl);
  text-align: left;
}

.product-highlight .highlight-text {
  flex: 1;
}

.product-highlight h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.product-highlight p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.product-highlight .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.product-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,71,0,0.25);
}

/* ============================================
   GLOBAL REACH SECTION
   ============================================ */
.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.markets-group {
  margin-bottom: var(--space-xl);
}

.markets-group h3 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--space-md);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.markets-group h3 .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-active { background: var(--primary); }
.dot-expanding { background: var(--accent); }

.market-flags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.market-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--duration) var(--ease);
}

.market-pill:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.market-pill .flag {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
}

.market-pill .fi {
  width: 1.25em;
  height: 0.95em;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Logistics & Ports Card */
.logistics-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

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

.logistics-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.logistics-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.port-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.port-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.port-item:hover {
  background: var(--surface);
  border-color: var(--brand);
  transform: translateX(4px);
}

.port-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.port-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.port-info strong {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}

.port-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.mini-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--duration) var(--ease);
}

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

.mini-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.mini-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.filter-btn:hover {
  background: var(--border);
  color: var(--text-heading);
}

.filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 71, 0, 0.15);
}

.gallery-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.gallery-modern-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

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

.gallery-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eaeaea;
  border-bottom: 1px solid var(--border);
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.gallery-card-body {
  padding: var(--space-xl) var(--space-lg);
}

.gallery-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.gallery-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text-heading);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.gallery-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  transition: color var(--duration) var(--ease);
}

.gallery-card-action:hover {
  color: var(--brand-dark);
}

.gallery-card-action .arrow {
  transition: transform var(--duration) var(--ease);
}

.gallery-card-action:hover .arrow {
  transform: translateX(4px);
}

/* Gallery Teaser (index.php) */
.gallery-teaser-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.gallery-teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}

.gallery-teaser-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
  overflow: hidden;
}

.gallery-teaser-footer {
  padding: var(--space-lg);
  background: var(--surface);
  text-align: left;
  border-top: 1px solid var(--border);
}

.gallery-teaser-footer h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.gallery-teaser-footer span {
  font-size: 0.82rem;
  color: var(--brand);
  font-weight: 600;
  display: inline-block;
  transition: transform var(--duration) var(--ease);
}

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

.gallery-teaser-card:hover .gallery-teaser-image {
  transform: scale(1.05);
}

.gallery-teaser-card:hover .gallery-teaser-footer span {
  transform: translateX(4px);
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-section {
  text-align: center;
}

.cert-title {
  margin-bottom: var(--space-2xl);
}

.cert-carousel {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  justify-content: center;
}

.cert-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
  background: var(--bg);
}

.cert-arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.cert-slider {
  display: flex;
  gap: var(--space-lg);
  overflow: hidden;
  max-width: 800px;
}

.cert-card {
  flex: 0 0 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  transition: all var(--duration) var(--ease);
}

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

.cert-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cert-placeholder span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-left h2 {
  margin-bottom: var(--space-md);
}

.contact-intro {
  color: var(--text-body);
  margin-bottom: var(--space-lg);
}

.contact-trust-line {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--duration) var(--ease);
}

.contact-info-card:hover {
  background: var(--bg-surface);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: var(--space-lg);
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-heading);
  background: var(--bg);
  transition: all var(--duration) var(--ease);
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,71,0,0.08);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.contact-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,221,67,0.25);
}

/* ── Dark Contact Form Overrides ── */
.section-dark .contact-form {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.section-dark .contact-form input,
.section-dark .contact-form textarea,
.section-dark .contact-form select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.section-dark .contact-form input:focus,
.section-dark .contact-form textarea:focus,
.section-dark .contact-form select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255,221,67,0.15);
}

.section-dark .contact-form select option,
.form-row select option {
  color: var(--text) !important;
  background: var(--surface) !important;
}

.section-dark .contact-form label {
  color: #ffffff;
}

.section-dark .contact-info-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.section-dark .contact-info-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.section-dark .contact-info-card strong {
  color: #ffffff;
}

.section-dark .contact-info-card p {
  color: rgba(255, 255, 255, 0.85);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success.show {
  display: block;
}

.form-success .check {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.form-success h3 {
  color: var(--success);
  margin-bottom: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-simple {
  background: linear-gradient(135deg, #001a00 0%, #002200 100%);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-simple-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-simple-nav {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-simple-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}

.footer-simple-nav a:hover {
  color: var(--accent);
}

.footer-simple-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-simple-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0;
}

.footer-simple-right {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.footer-simple-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-simple-socials a {
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--duration) var(--ease);
  display: flex;
  align-items: center;
}

.footer-simple-socials a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.back-to-top {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.back-to-top:hover {
  color: var(--accent);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--duration) var(--ease);
  animation: pulse-wa 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

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

.call-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: #0066cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.4);
  z-index: 999;
  transition: all var(--duration) var(--ease);
  animation: pulse-call 2s infinite;
}

.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 102, 204, 0.5);
  color: #fff;
}

.call-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0, 102, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: transform, opacity;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  will-change: transform, opacity;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-right {
  opacity: 0;
  transform: translate3d(30px, 0, 0);
  will-change: transform, opacity;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  will-change: transform, opacity;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ── Keyframes ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6); }
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: all var(--duration) var(--ease);
  position: relative;
}

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

.testimonial-stars {
  color: var(--accent-hover);
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.testimonial-quote::before {
  content: '“';
  font-size: 4.5rem;
  color: var(--brand);
  opacity: 0.08;
  position: absolute;
  top: -28px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
  margin-top: auto;
}

.testimonial-author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-author-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   SPECIFICATIONS TABLES
   ============================================ */
.specs-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

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

.specs-table th {
  background: rgba(0, 71, 0, 0.04);
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(0, 71, 0, 0.1);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td strong {
  color: var(--brand-dark);
  font-weight: 600;
}

.specs-table tr:hover {
  background: rgba(0, 71, 0, 0.01);
}

/* ============================================
   RESPONSIVE — Fully Mobile First
   ============================================ */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .header-inner { height: 70px; }
  .header-logo img { height: 38px; width: auto; }
  .nav { display: none; }
  .lang-switcher.desktop { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }

  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }
  p { font-size: 17px; }

  .hero { min-height: auto; padding: 180px 0 60px; background-position: right 80px; background-size: cover; background-color: #ffffff; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero-spacer { display: none; }
  .hero-copy {
    max-width: 100%;
    background: rgba(250, 250, 248, 0.92);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 71, 0, 0.08);
  }
  .hero-statement { font-size: 2.8rem; }
  .stat-item strong { font-size: 1.8rem; }

  .about-summary-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .credentials-board { grid-template-columns: repeat(2, 1fr); }
  .gallery-teaser-row { grid-template-columns: repeat(2, 1fr); }
  .services-banner-row { flex-wrap: wrap; }
  .services-banner-item { flex: 0 0 calc(50% - 1px); padding: var(--space-lg); }
  .services-banner-divider { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-premium-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .global-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-modern-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-simple-top { flex-direction: column; text-align: center; }

  .section { padding: var(--space-3xl) 0; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-2xl) 0; }

  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  p { font-size: 16px; }

  .hero { padding: 175px 0 40px; }
  .page-header-banner { padding-top: 165px; padding-bottom: 40px; }
  .announcement-bar { padding: 8px 12px; }
  .announcement-text { font-size: 0.74rem; }
  .hero-copy { padding: 20px; }
  .hero-statement { font-size: 2.2rem; }
  .hero-stats-row { gap: var(--space-lg); }
  .stat-item strong { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .product-actions .btn {
    width: 100%;
    margin-left: 0 !important;
    justify-content: center;
    text-align: center;
  }

  .services-grid { grid-template-columns: 1fr; }
  .services-premium-grid { grid-template-columns: 1fr; }
  .process-timeline-grid { grid-template-columns: 1fr; }
  .services-banner-item { flex: 0 0 100%; }
  .services-banner { padding: var(--space-3xl) 0; }
  .products-grid { grid-template-columns: 1fr; }
  .product-highlight { flex-direction: column; text-align: center; padding: var(--space-xl); }
  .product-highlight .btn { width: 100%; text-align: center; }
  .why-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-modern-grid { grid-template-columns: 1fr; }
  .gallery-teaser-row { grid-template-columns: 1fr; }
  .credentials-board { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-simple-top { flex-direction: column; text-align: center; }
  .footer-simple-bottom { flex-direction: column; text-align: center; gap: var(--space-md); }
  .footer-simple-right { flex-direction: column; gap: var(--space-md); }
  .cert-slider { max-width: 260px; }
  .cert-card { flex: 0 0 200px; }

  .mobile-nav { width: 280px; }
  .visual-box-row { grid-template-columns: 1fr; }
  .about-stats-block { grid-template-columns: 1fr 1fr; }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-sm); }
  h1 { font-size: 26px; }
  .hero { padding: 170px 0 30px; }
  .hero-statement { font-size: 1.8rem; }
  .hero-stats-row { flex-wrap: wrap; gap: var(--space-md); }
  .glass-card { padding: var(--space-lg); }
  .contact-form { padding: var(--space-lg); }
  .whatsapp-btn { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
  .call-btn { width: 50px; height: 50px; bottom: 20px; left: 20px; right: auto; }
  .call-btn svg { width: 22px; height: 22px; }
  .about-floating-badges { grid-template-columns: 1fr; }
  .about-stats-block { grid-template-columns: 1fr; }
  .header-logo img { height: 32px; width: auto; }
  html, body { overflow-x: hidden; }
}

/* Disable scroll reveals on inner pages for immediate content readability */
body:not(.page-home) .reveal,
body:not(.page-home) .reveal-left,
body:not(.page-home) .reveal-right,
body:not(.page-home) .stagger-children > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

