/* ==========================================================================
   Abu Chicken Universe Uganda Limited (ACU) - Refined Design System (Inter)
   ========================================================================== */

:root {
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --primary-emerald: #0f4c28;
  --primary-emerald-hover: #0a381d;
  --accent-gold: #d4a373;
  --accent-gold-light: #f4e8d3;
  
  --bg-main: #fcfbf9;
  --bg-surface: #ffffff;
  --bg-alt: #f4f6f3;
  
  --text-dark: #1b1b1b;
  --text-muted: #555555;
  --text-light: #888888;

  --border-color: #e5e7eb;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);

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

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

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

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--primary-emerald) 0%, #166534 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION - SOLID WHITE & PERFECT SINGLE HORIZONTAL LINE
   -------------------------------------------------------------------------- */
.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff !important;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  flex-wrap: nowrap;
}

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

/* BOLD STANDALONE PICTURE LOGO */
.brand-logo-img {
  width: 78px !important;
  height: 78px !important;
  object-fit: contain;
  border-radius: 6px;
}

/* Straight Horizontal Line Nav Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  height: 100%;
}

.nav-item {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0 4px;
  line-height: 1;
}

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

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle .arrow {
  font-size: 0.65rem;
  margin-top: 1px;
  color: var(--accent-gold);
}

/* Submenu Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 1100;
}

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

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: normal;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu a:hover {
  background-color: var(--bg-alt);
  color: var(--primary-emerald);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

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

.btn-emerald:hover {
  background-color: var(--primary-emerald-hover);
  transform: translateY(-1px);
}

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

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

.btn-lg {
  padding: 14px 30px;
  font-size: 0.95rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   RICH DEEP GREEN HERO BANNER FOR SECONDARY INNER PAGES
   -------------------------------------------------------------------------- */
.inner-page-banner {
  background: linear-gradient(135deg, #07190d 0%, #0f4c28 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 3px solid var(--accent-gold);
}

.inner-page-banner .banner-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.inner-page-banner .banner-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.inner-page-banner .banner-lead {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   CINEMATIC DUAL-MOTION SPLIT EDITORIAL SLIDER (INTER TYPOGRAPHY)
   -------------------------------------------------------------------------- */
.editorial-hero-section {
  position: relative;
  background-color: #07170d;
  color: #ffffff;
  height: 680px;
  min-height: 680px;
  max-height: 680px;
  overflow: hidden;
}

.editorial-viewport {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 680px;
  min-height: 680px;
  max-height: 680px;
  position: relative;
}

/* Center Vertical Gold Curtain Wipe Accent */
.editorial-curtain-wipe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--primary-emerald) 100%);
  z-index: 100;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 15px var(--accent-gold);
}

.editorial-curtain-wipe.wiping {
  transform: scaleY(1);
}

/* Left Editorial Panel (LOCKED 680px Height) */
.editorial-left-col {
  position: relative;
  background: linear-gradient(135deg, #092213 0%, #0d381c 100%);
  height: 680px;
  padding: 80px 60px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.editorial-slide-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 680px;
  padding: 80px 60px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.editorial-slide-left.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: absolute;
}

.editorial-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.editorial-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}

.editorial-title span {
  color: var(--accent-gold);
}

.editorial-desc {
  font-size: 1.05rem;
  color: #d1d5db;
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.6;
}

/* SPEC LENS CARD - EXACT LOOK AS USER IMAGE */
.spec-lens-card {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 16px 24px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.spec-lens-header {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.spec-lens-values {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.spec-val-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.spec-star-icon {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* ALL ICONS IN WARM GOLD COLOR */
.spec-icon-svg, 
.vm-icon svg, 
.service-icon svg, 
.ind-icon svg, 
.info-tile .tile-icon svg {
  stroke: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}

.editorial-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  font-weight: 700;
}

.btn-gold:hover {
  background-color: #ffffff;
}

.btn-glass {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Right Image Panel (LOCKED 680px Height) */
.editorial-right-col {
  position: relative;
  overflow: hidden;
  height: 680px;
}

.editorial-slide-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 680px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08) translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.editorial-slide-right.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  position: absolute;
}

.editorial-img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  filter: brightness(0.9);
}

/* Floating Glassmorphic Lens Badge on Photo */
.floating-lens-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(10, 31, 18, 0.88);
  border: 1px solid rgba(212, 163, 115, 0.4);
  padding: 20px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  max-width: 320px;
}

.badge-headline {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 0.82rem;
  color: #d1d5db;
}

/* Dual-Motion Control Strip */
.editorial-nav-bar {
  position: absolute;
  bottom: 30px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.editorial-dots {
  display: flex;
  gap: 12px;
}

.editorial-dot {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.editorial-dot.active {
  background-color: var(--accent-gold);
  width: 50px;
}

.editorial-arrows {
  display: flex;
  gap: 10px;
}

.editorial-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.editorial-arrow-btn:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   SECTIONS & SLEEK CARDS
   -------------------------------------------------------------------------- */
.section {
  padding: 85px 0;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

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

/* About Us Section (With Clean Small Padding Below Header) */
.about-section {
  background-color: #ffffff;
}

.about-header {
  margin-bottom: 32px !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-text-card p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--text-muted);
}

.about-text-card .lead-text {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.about-image-card {
  position: relative;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-card img {
  width: 100%;
  height: 310px !important;
  object-fit: cover;
  border-radius: 0 !important;
}

.about-stat-box {
  background-color: var(--primary-emerald);
  color: #ffffff;
  padding: 24px;
  border-radius: 0 !important;
}

.about-stat-box h4 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.about-stat-box p {
  font-size: 0.9rem;
  color: #e2e8f0;
}

/* Vision & Mission Cards */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.vm-card {
  background-color: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.vm-icon {
  margin-bottom: 12px;
}

.vm-icon svg {
  stroke: var(--accent-gold) !important;
}

.vm-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-emerald);
}

.vm-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* 10 Core Values Grid */
.values-section {
  background-color: var(--bg-alt);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.value-card {
  background-color: #ffffff;
  padding: 22px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-emerald);
}

.value-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary-emerald);
  font-family: var(--font-heading);
  font-weight: 700;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services Grid (What We Do) */
.services-section {
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--bg-main);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrap {
  height: 190px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 26px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  margin-bottom: 12px;
}

.service-icon svg {
  stroke: var(--accent-gold) !important;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-emerald);
  margin-bottom: 12px;
}

.service-list {
  list-style: none;
  margin-bottom: 16px;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.btn-detail {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-emerald);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Industries Grid */
.industries-section {
  background-color: var(--bg-alt);
}

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

.industry-box {
  background-color: #ffffff;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.ind-icon {
  margin-bottom: 12px;
}

.ind-icon svg {
  stroke: var(--accent-gold) !important;
}

.industry-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-emerald);
  margin-bottom: 6px;
}

.industry-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Why Choose Us */
.why-section {
  background-color: #ffffff;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.why-checklist {
  list-style: none;
  margin-top: 20px;
}

.why-checklist li {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  position: relative;
  padding-left: 26px;
}

.why-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-gold);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-pillars-col {
  display: flex;
  flex-direction: column;
}

.pillars-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-emerald);
  margin-bottom: 8px;
}

.pillars-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px !important;
}

.pillar-card {
  background-color: var(--bg-alt);
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent-gold);
  margin-bottom: 22px;
}

.pillar-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pillar-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* HOMEPAGE NEWSLETTER SECTION */
.newsletter-section {
  background: linear-gradient(135deg, #0a1f12 0%, #0f4c28 100%);
  color: #ffffff;
  padding: 90px 0;
}

.newsletter-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.newsletter-lead {
  font-size: 1.05rem;
  color: #d1d5db;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.95);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-btn {
  padding: 14px 28px;
  background-color: var(--accent-gold);
  color: var(--text-dark);
  font-weight: 700;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.newsletter-btn:hover {
  background-color: #ffffff;
}

.newsletter-feedback {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #86efac;
}

/* Footer */
.footer {
  background-color: #07150c;
  color: #9ca3af;
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 8px;
}

.footer-links-col a {
  font-size: 0.85rem;
  color: #9ca3af;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .editorial-viewport, .about-grid, .why-wrapper {
    grid-template-columns: 1fr;
  }
  .editorial-hero-section, .editorial-viewport, .editorial-left-col, .editorial-right-col, .editorial-slide-left, .editorial-slide-right, .editorial-img {
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .editorial-left-col {
    padding: 60px 30px 90px;
  }
  .editorial-right-col {
    height: 420px;
  }
  .editorial-slide-right {
    height: 420px;
  }
  .editorial-img {
    height: 420px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid, .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .editorial-title {
    font-size: 2.2rem;
  }
  .editorial-nav-bar {
    left: 30px;
    bottom: 20px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .spec-lens-values {
    flex-direction: column;
    gap: 8px;
  }
  .values-grid, .services-grid, .industries-grid, .vision-mission-grid, .footer-top {
    grid-template-columns: 1fr;
  }
}
