/* =========================================
   Cimmerian Industrial - Shared Styles
   ========================================= */

:root {
  /* Color Palette */
  --color-bg-dark: #1a1d24; /* Slightly lighter dark background */
  --color-bg-steel: #242832; /* Mid-tone steel blue - softer than original */
  --color-bg-steel-light: #2e3440; /* Lighter steel for subtle contrast */
  --color-text-primary: #e2e8f0; /* Light gray - high contrast text */
  --color-text-secondary: #94a3b8; /* Medium gray - readable secondary text */
  --color-accent: #0055ff; /* Electric Blue - kept for brand consistency */
  --color-accent-hover: #0044cc;
  --color-accent-glow: rgba(0, 85, 255, 0.04);
  --color-metallic: #cbd5e1; /* Metallic for contrast */
  --color-border: rgba(226, 232, 240, 0.12); /* Subtle border for dark background */

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing */
  --section-padding: 6rem 1.5rem;
  --container-max-width: 1320px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-weight: 700;
}

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

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 85, 255, 0.4);
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--color-text-primary);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  background: rgba(26, 29, 36, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-text-primary);
  border-left: 2px solid var(--color-accent);
  padding-left: 1rem;
}

.nav-menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  position: relative;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.65);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.indicator.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 29, 36, 0.85) 0%, rgba(26, 29, 36, 0.1) 60%, rgba(26, 29, 36, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  z-index: 1;
  width: 100%;
}

.hero-headers-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-header-left {
  text-align: center;
  width: 100%;
}

.hero-header-right {
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 4.5rem);
  color: var(--color-text-primary);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
  line-height: 1.2;
}

.hero-subtitle-highlight {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #6ec6ff;
  text-shadow: 0 0 30px rgba(110, 198, 255, 0.4), 0 4px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   Stats Bar
   ========================================= */
.stats-bar {
  background-color: var(--color-bg-steel);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* =========================================
   Section Styling
   ========================================= */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   Cards (Services, Products, Projects)
   ========================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: var(--color-bg-steel);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.card-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-bottom: 1px solid var(--color-border);
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.card-text {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.card-link:hover {
  color: var(--color-accent-hover);
  gap: 0.5rem;
}

.card-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition-smooth);
}

.card-link:hover::after {
  margin-left: 0.75rem;
}

/* =========================================
   Partners Section
   ========================================= */
.partners-section {
  background-color: var(--color-bg-steel-light);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind the grid */
.partners-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max-width);
  margin: 3rem auto 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Base Partner Card - Shrunk & Refined */
.partner-logo {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 1.25rem 1rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(6px);
}

/* Logo crop wrapper - allows logos to overflow vertically without pushing card taller */
.partner-logo-crop {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-logo:hover {
  border-color: rgba(0, 85, 255, 0.4);
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Unified logo sizing with high-contrast light silhouette on dark bg */
.partner-logo-img {
  max-width: 85%;
  max-height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Turn logos into clean, highly visible white/light-gray silhouettes */
  filter: brightness(0) invert(1) opacity(0.85);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.partner-logo:hover .partner-logo-img {
  /* Reveal true colors on hover */
  filter: brightness(1) invert(0) opacity(1);
  transform: scale(1.08);
}

/* Enlarge Conductix Wampfler and HADEF — crop container clips top/bottom overflow */
.partner-logo-img-conductix {
  max-width: 95%;
  max-height: none;
  height: 90px;
  width: auto;
}

.partner-logo-img-hadef {
  max-width: 90%;
  max-height: none;
  height: 85px;
  width: auto;
  margin-left: 0;
}

.partner-logo-sub {
  font-size: 0.65rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.7;
}

/* ABUS Primary Partner - Maximum Emphasis */
.partner-logo-primary {
  grid-column: 1 / -1; /* Spans full width for ultimate prominence */
  background: linear-gradient(160deg, rgba(0, 85, 255, 0.1) 0%, rgba(0, 85, 255, 0.02) 100%);
  border: 2px solid var(--color-accent);
  min-height: 160px;
  padding: 2rem;
  gap: 1rem;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 85, 255, 0.3),
    0 12px 40px -8px rgba(0, 85, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: none;
}

.partner-logo-primary:hover {
  transform: translateY(-4px);
  border-color: #3388ff;
  box-shadow:
    0 0 0 1px rgba(51, 136, 255, 0.5),
    0 16px 48px -8px rgba(0, 85, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.partner-logo-primary .partner-logo-img {
  max-height: 70px;
  max-width: 350px;
  filter: none; /* Full color always */
}

.partner-logo-primary .partner-logo-sub {
  font-size: 0.85rem;
  color: var(--color-text-primary);
  opacity: 1;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* Centered premium badge for ABUS */
.partner-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent) 0%, #0044cc 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.25rem;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 85, 255, 0.4);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-note {
  margin-top: 3rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Mobile Responsiveness for Partners */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .partner-logo-primary {
    grid-column: 1 / -1;
    min-height: 130px;
    padding: 1.5rem 1rem;
  }

  .partner-logo {
    min-height: 70px;
    padding: 0.75rem;
  }

  .partner-logo-img {
    max-height: 35px;
  }

  .partner-logo-primary .partner-logo-img {
    max-height: 55px;
    max-width: 250px;
  }
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background-color: var(--color-bg-steel);
  padding: 5rem 1.5rem 2.5rem;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.85fr 1.1fr;
  gap: 3rem;
  max-width: var(--container-max-width);
  margin: 0 auto 3.5rem;
}

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

.footer-brand .logo-img {
  height: 80px;
}

.footer-brand .logo-text {
  font-size: 1.7rem;
}

.footer-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  color: var(--color-text-primary);
  letter-spacing: 0.08em;
}

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

.footer-links li {
  margin-bottom: 0.95rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 0.25rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

/* =========================================
   Page Headers (Subpages)
   ========================================= */
.page-header {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-bg-steel);
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 29, 36, 0.9) 0%, rgba(26, 29, 36, 0.2) 100%);
  z-index: 0;
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--color-text-secondary);
}

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

.breadcrumb-sep {
  margin: 0 0.5rem;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* =========================================
   Contact Form
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.contact-form {
  background-color: var(--color-bg-steel);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

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

.contact-info-block {
  margin-bottom: 2.5rem;
}

.contact-info-block h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.contact-info-block p,
.contact-info-block a {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.contact-info-block a:hover {
  color: var(--color-accent);
}

.map-container {
  width: 100%;
  height: 300px;
  background-color: var(--color-bg-steel-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}

/* =========================================
   Mobile Responsiveness
   ========================================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bg-steel);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--color-border);
  }

  .nav-menu.active {
    right: 0;
  }

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

  .hero-title,
  .hero-subtitle-highlight {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

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

}

/* =========================================
   Cranes Page - Custom Grid
   ========================================= */
.cranes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cranes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Card Specs (Bullets) */
.card-specs {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.card-specs li {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  padding: 0.35rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.card-specs li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Accent Glow Hover */
.card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 85, 255, 0.15);
}

/* =========================================
   CTA Strip
   ========================================= */
.cta-strip {
  background-color: var(--color-bg-steel);
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-strip-text {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .cta-strip-content {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================
   Sitelink Pages - Shared Styles
   ========================================= */

/* Showcase Sections (Inline Images) */
.showcase-image img {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.showcase-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.showcase-text p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.overview-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

.overview-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.spec-card {
  background-color: var(--color-bg-steel);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2rem;
}

.spec-card h3 {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

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

.spec-label {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.spec-value {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.feature-tile {
  background-color: var(--color-bg-steel);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-tile:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 85, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-size: 1.25rem;
}

.feature-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Applications Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.app-tile {
  background-color: var(--color-bg-steel);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.app-tile:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.app-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.app-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Enquiry CTA Band */
.enquiry-band {
  background-color: var(--color-bg-steel);
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.enquiry-band p {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* =========================================
   AOS Animation Overrides
   ========================================= */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
