/* ===================================================
   S.Ram Corporation – Premium Website Styles
   =================================================== */

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

:root {
  --blue-dark: #0a1628;
  --blue-mid: #0d2244;
  --blue-primary: #1565C0;
  --blue-light: #2979FF;
  --blue-glow: #42A5F5;
  --gold: #E6A817;
  --gold-light: #FFD04A;
  --white: #FFFFFF;
  --off-white: #F4F6FA;
  --text-dark: #0d1a2e;
  --text-mid: #3a4f6a;
  --text-light: #687d9a;
  --border: rgba(100, 130, 180, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 12px rgba(12, 30, 70, 0.08);
  --shadow-md: 0 8px 32px rgba(12, 30, 70, 0.14);
  --shadow-lg: 0 24px 64px rgba(12, 30, 70, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

address {
  font-style: normal;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-logo {
  width: 120px;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.loader-bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-glow), var(--gold));
  border-radius: 999px;
  animation: load-fill 1.8s ease forwards;
}

@keyframes load-fill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--blue-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-primary);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  padding: 0;
}

.nav-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: padding var(--transition);
}

.navbar.scrolled .nav-container {
  padding: 12px 40px;
}

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

.nav-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: height var(--transition);
}

.navbar.scrolled .nav-logo {
  height: 42px;
}

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

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.45);
  transition: all var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21, 101, 192, 0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-zoom 18s ease-in-out alternate infinite;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06)
  }

  to {
    transform: scale(1.0)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(10, 22, 40, 0.93) 0%,
      rgba(13, 34, 68, 0.85) 50%,
      rgba(10, 22, 40, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 12px;
  animation: fadeInUp 0.7s ease 0.15s both;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin-bottom: 44px;
  font-weight: 400;
  animation: fadeInUp 0.7s ease 0.25s both;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 44px;
  animation: fadeInUp 0.7s ease 0.35s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.45s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.4
  }

  50% {
    opacity: 1
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(21, 101, 192, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.65);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.btn-toro {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-dark);
  font-weight: 700;
  margin-top: 28px;
  box-shadow: 0 6px 24px rgba(230, 168, 23, 0.4);
}

.btn-toro:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 168, 23, 0.6);
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-dark), var(--blue-primary));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee-scroll 42s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.marquee-track .sep {
  color: var(--gold);
  font-size: 0.6rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  background: linear-gradient(90deg, rgba(21, 101, 192, 0.12), rgba(41, 121, 255, 0.12));
  border: 1px solid rgba(21, 101, 192, 0.2);
  color: var(--blue-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.accent {
  color: var(--blue-primary);
}

.section-desc {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ===== ANIMATE ON SCROLL ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--off-white);
}

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

.about-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-body {
  color: var(--text-mid);
  margin-bottom: 36px;
  font-size: 1rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.45);
}

.badge-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.88;
}

/* ===== PRODUCTS ===== */
.products-section {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, 0.25);
}

.product-card.featured {
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.product-card.featured .product-card-icon {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.product-card.featured .product-card-title {
  color: var(--white);
}

.product-card.featured .product-card-desc {
  color: rgba(255, 255, 255, 0.7);
}

.product-card.featured .product-list {
  color: rgba(255, 255, 255, 0.85);
}

.product-card.featured .product-list li::before {
  background: var(--gold);
}

.product-card-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.product-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(41, 121, 255, 0.08));
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-card-icon svg {
  width: 28px;
  height: 28px;
}

.product-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
  flex-shrink: 0;
}

/* ===== TREATMENTS ===== */
.treatments-section {
  background: var(--blue-dark);
}

.treatments-section .section-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.treatments-section .section-title {
  color: var(--white);
}

.treatments-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

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

.treatment-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}

.treatment-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(230, 168, 23, 0.4);
  transform: translateY(-4px);
}

.treatment-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.treatment-item h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.treatment-item p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== APPLICATIONS ===== */
.applications-section {
  background: var(--off-white);
}

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

.app-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--white);
}

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

.app-card-img {
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.app-icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.app-card-body {
  padding: 24px 28px 28px;
}

.app-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.app-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== TORO ===== */
.toro-section {
  position: relative;
  min-height: 80vh;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1f3c 50%, #0a0e1a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.toro-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(21, 101, 192, 0.22), transparent 70%);
  pointer-events: none;
}

.toro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.toro-tag {
  display: inline-block;
  background: rgba(230, 168, 23, 0.12);
  border: 1px solid rgba(230, 168, 23, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.toro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.toro-logo-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.toro-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.toro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.toro-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.toro-feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.toro-coatings-title,
.toro-sectors-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.toro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 500;
}

.toro-sectors {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.toro-img {
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* ===== GROUP OF COMPANIES ===== */
.group-section {
  background: var(--white);
}

.group-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.group-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.group-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.group-card--primary::before {
  background: linear-gradient(90deg, var(--gold), #f5c842);
}

.group-card--agro::before {
  background: linear-gradient(90deg, #2E7D32, #66BB6A);
}

.group-card--ginning::before {
  background: linear-gradient(90deg, #BF6900, #F4A020);
}

.group-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.group-card--primary:hover {
  box-shadow: 0 20px 60px rgba(230, 168, 23, 0.15);
}

.group-card--agro:hover {
  box-shadow: 0 20px 60px rgba(46, 125, 50, 0.15);
}

.group-card--ginning:hover {
  box-shadow: 0 20px 60px rgba(191, 105, 0, 0.15);
}

.group-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.group-card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(230, 168, 23, 0.12);
  color: #9a6e00;
  border: 1px solid rgba(230, 168, 23, 0.25);
}

.group-card-badge--agro {
  background: rgba(46, 125, 50, 0.1);
  color: #1B5E20;
  border-color: rgba(46, 125, 50, 0.25);
}

.group-card-badge--gin {
  background: rgba(191, 105, 0, 0.1);
  color: #7A4100;
  border-color: rgba(191, 105, 0, 0.25);
}

.group-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.group-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.group-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.group-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.group-card-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

.group-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.group-card-location {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

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

@media (max-width: 600px) {
  .group-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== WHY CHOOSE US ===== */

.why-section {
  background: var(--off-white);
}

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

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.2);
}

.why-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(21, 101, 192, 0.07);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

/* ===== CERTIFICATIONS ===== */
.certifications-section {
  background: var(--white);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.cert-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  background: var(--off-white);
  transition: all var(--transition);
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  box-shadow: 0 10px 40px rgba(21, 101, 192, 0.1);
  border-color: rgba(21, 101, 192, 0.3);
}

.cert-seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
}

.cert-seal-blue {
  background: linear-gradient(135deg, #1565C0, #0288D1);
}

.cert-seal-green {
  background: linear-gradient(135deg, #2E7D32, #43A047);
  box-shadow: 0 8px 24px rgba(67, 160, 71, 0.35);
}

.cert-seal-orange {
  background: linear-gradient(135deg, #E65100, #F57C00);
  box-shadow: 0 8px 24px rgba(230, 81, 0, 0.35);
}

.cert-seal-purple {
  background: linear-gradient(135deg, #6A1B9A, #AB47BC);
  box-shadow: 0 8px 24px rgba(106, 27, 154, 0.35);
}

.cert-seal-teal {
  background: linear-gradient(135deg, #00695C, #26A69A);
  box-shadow: 0 8px 24px rgba(0, 105, 92, 0.35);
}

.cert-seal-inner {
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cert-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

.cert-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(90deg, rgba(21, 101, 192, 0.06), rgba(41, 121, 255, 0.04));
  border: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.cert-note span {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cert-note p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.cert-note a {
  color: var(--blue-primary);
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

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

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

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: 0.835rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #dde3ef;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

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

.form-submit {
  width: 100%;
  font-size: 1rem;
  gap: 10px;
  border-radius: var(--radius-md);
}

.submit-icon {
  transition: transform var(--transition);
}

.form-submit:hover .submit-icon {
  transform: translateX(4px);
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(67, 160, 71, 0.1);
  border: 1px solid rgba(67, 160, 71, 0.3);
  border-radius: var(--radius-sm);
  color: #2E7D32;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}



.social-link:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col address {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-col address p {
  margin-bottom: 8px;
}

.footer-col address a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col address a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 8px;
}

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

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(21, 101, 192, 0.65);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

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

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .about-image-block {
    order: -1;
  }

  .toro-container {
    grid-template-columns: 1fr;
  }

  .toro-image {
    display: none;
  }

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

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 70px 0 0;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    z-index: 999;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 20px;
    width: 100%;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 0 0 48%;
    border-right: none;
    padding: 12px 0;
  }

  .hero-content {
    padding-top: 120px;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 20px;
  }

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

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

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

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

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

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

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

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

  .about-img-badge {
    right: 0;
    bottom: -10px;
  }

  .toro-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

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

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

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

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.dropdown-arrow {
  display: inline-block;
  font-size: 0.7rem;
  transition: transform var(--transition);
  color: rgba(255, 255, 255, 0.6);
}

.nav-dropdown.open .dropdown-arrow,
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--white);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 360px;
  background: rgba(8, 18, 36, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}

/* small triangle pointer */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: rgba(10, 22, 40, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  rotate: 45deg;
  border-radius: 2px 0 0 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 13px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  transition: all var(--transition);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
}

.nav-dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  transition: opacity 0.2s;
  opacity: 0;
}

/* Industry accent colours */
.nav-dropdown-item:nth-child(1)::before {
  background: linear-gradient(to bottom, #4FC3F7, #0288D1);
}

.nav-dropdown-item:nth-child(2)::before {
  background: linear-gradient(to bottom, #81C784, #2E7D32);
}

.nav-dropdown-item:nth-child(3)::before {
  background: linear-gradient(to bottom, #CE93D8, #7B1FA2);
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-item:hover::before {
  opacity: 1;
}


.nav-dropdown-item>div {
  flex: 1;
  padding: 0;
}

.nav-dropdown-item::after {
  content: '→';
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.2);
  padding-right: 16px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.nav-dropdown-item:hover::after {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(3px);
}

.nav-dropdown-item strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.nav-dropdown-item span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  line-height: 1.4;
}

/* Mobile dropdown in hamburger menu */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    transform: none;
  }
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  background: var(--white);
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--white);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

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

.industry-card:hover .industry-card-arrow {
  transform: translateX(6px);
  opacity: 1;
}

.industry-card-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition);
}

.industry-card:hover .industry-card-bg {
  transform: scale(1.04);
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 55%, transparent 100%);
}

.industry-card-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  font-size: 2.8rem;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition);
}

.industry-card:hover .industry-card-icon {
  transform: scale(1.1);
}

.industry-card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  padding-top: 88px;
}

.industry-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.industry-card-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.industry-tags span {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.industry-card-arrow {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin: 0 28px 28px auto;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.6;
  transition: all var(--transition);
}

@media (max-width: 1024px) {
  .industry-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .industry-card {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .industry-cards {
    max-width: 100%;
  }
}

/* ===== TEXTILE PAGE – INDUSTRY HERO ===== */
.industry-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, rgba(5, 20, 45, 0.85) 0%, rgba(10, 35, 80, 0.78) 60%, rgba(8, 22, 55, 0.88) 100%),
    url('assets/textile-hero.png') center center / cover no-repeat;
  overflow: hidden;
}

.industry-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(21, 101, 192, 0.25), transparent 65%);
  pointer-events: none;
}

.industry-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.industry-hero-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.industry-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.industry-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.industry-hero-breadcrumb a:hover {
  color: var(--gold);
}

.industry-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

.industry-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.industry-hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.industry-hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

/* ===== CERT BADGE STRIP ===== */
.cert-badge-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cert-badge-icon {
  color: var(--gold);
}

/* ===== CERTIFICATION CARDS (3-col) ===== */
.triple-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.triple-cert-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.triple-cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.25);
}

.triple-cert-label {
  display: inline-block;
  background: linear-gradient(90deg, rgba(21, 101, 192, 0.1), rgba(41, 121, 255, 0.1));
  border: 1px solid rgba(21, 101, 192, 0.2);
  color: var(--blue-primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.triple-cert-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.triple-cert-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== PORTFOLIO CARDS ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 101, 192, 0.25);
}

.portfolio-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.portfolio-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

/* ===== YARN / FABRIC SPEC TABS ===== */
.spec-section {
  background: var(--blue-dark);
}

.spec-section .section-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.spec-section .section-title {
  color: var(--white);
}

.spec-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.spec-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.spec-tab {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}

.spec-tab:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.spec-tab.active {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.45);
}

.spec-panel {
  display: none;
  animation: fadeInUp 0.35s ease both;
}

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

.spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.spec-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.spec-table td {
  padding: 9px 0;
  vertical-align: top;
}

.spec-table td:first-child {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 38%;
  padding-right: 12px;
}

.spec-table td:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.spec-best-for {
  background: rgba(21, 101, 192, 0.15);
  border: 1px solid rgba(21, 101, 192, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 16px;
}

.spec-best-for h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-glow);
  margin-bottom: 6px;
}

.spec-best-for p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.spec-key-benefit {
  background: rgba(230, 168, 23, 0.08);
  border: 1px solid rgba(230, 168, 23, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 12px;
}

.spec-key-benefit h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 6px;
}

.spec-key-benefit p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Packaging specs strip */
.packaging-strip {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pkg-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pkg-item .pkg-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.35);
}

.pkg-item .pkg-value {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

/* ===== QUOTE CTA SECTION ===== */
.quote-section {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.quote-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.quote-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.btn-white {
  background: var(--white);
  color: var(--blue-primary);
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

/* ===== COMING SOON PAGE ===== */
.coming-soon-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  text-align: center;
  padding: 120px 40px;
}

.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.coming-soon-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.coming-soon-section p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* ===== RESPONSIVE: NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .triple-cert-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .triple-cert-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-hero-stats {
    flex-wrap: wrap;
  }

  .packaging-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .packaging-strip {
    grid-template-columns: 1fr;
  }
}