/* ========================================
   HAMBURG MASCHINEN - Modern Landing Page
   Red & Black Theme with Light/Dark Mode
   ======================================== */

:root {
  --red: #C41E3A;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-light: #F8F8F8;
  --gray-mid: #666666;
  
  /* White theme (default) */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9F9F9;
  --text-primary: #111111;
  --text-secondary: #666666;
  --border-color: #E0E0E0;
}

[data-theme="dark"] {
  /* Soft Dark Grey theme - lighter and easier on eyes */
  --bg-primary: #2D2D2D;
  --bg-secondary: #3A3A3A;
  --text-primary: #F5F5F5;
  --text-secondary: #C0C0C0;
  --border-color: #505050;
}

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

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background 0.3s ease, color 0.3s ease;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

main {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(213, 0, 0, 0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  z-index: 1000;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  height: 80px;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  height: 80px;
}

[data-theme="dark"] .site-header.scrolled {
  background: rgba(45, 45, 45, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
  transition: background 0.4s ease;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.brand:hover {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(196, 30, 58, 0.5));
}

.brand-logo {
  height: 4.5rem;
  width: auto;
  max-width: 480px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
  transition: filter 0.4s ease;
  vertical-align: middle;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--black);
  cursor: pointer;
  text-shadow: none;
  transition: color 0.4s ease, transform 0.3s ease;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.nav-toggle:hover {
  transform: translateY(-3px) scale(1.2) rotate(90deg);
}

.site-header.scrolled .nav-toggle {
  color: var(--black);
  text-shadow: none;
}

[data-theme="dark"] .nav-toggle {
  color: var(--white);
}

[data-theme="dark"] .site-header.scrolled .nav-toggle {
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: none;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  transform: translateY(-3px) scale(1.05);
}

.site-header.scrolled .nav-links a {
  color: var(--black);
  text-shadow: none;
}

[data-theme="dark"] .nav-links a {
  color: var(--white);
}

[data-theme="dark"] .site-header.scrolled .nav-links a {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease, background 0.4s ease;
}

.site-header.scrolled .nav-links a::after {
  background: var(--red);
}

.nav-links a:hover {
  color: var(--red);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--red);
  transform: translateY(-3px) scale(1.05);
}

[data-theme="dark"] .nav-links a:hover {
  color: var(--red);
  transform: translateY(-3px) scale(1.05);
}

[data-theme="dark"] .site-header.scrolled .nav-links a:hover {
  color: var(--red);
  transform: translateY(-3px) scale(1.05);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Contact Us button in navigation */
.nav-contact-btn {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(196, 30, 58, 0.3);
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
}

.nav-contact-btn::after {
  display: none;
}

.nav-contact-btn:hover {
  background: #A01828 !important;
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5) !important;
}

.site-header.scrolled .nav-contact-btn {
  background: var(--red);
  color: var(--white) !important;
}

.site-header.scrolled .nav-contact-btn:hover {
  background: #A01828 !important;
  color: var(--white) !important;
}

[data-theme="dark"] .nav-contact-btn {
  background: var(--red);
  color: var(--white) !important;
}

[data-theme="dark"] .nav-contact-btn:hover {
  background: #A01828 !important;
  color: var(--white) !important;
}

[data-theme="dark"] .site-header.scrolled .nav-contact-btn {
  background: var(--red);
  color: var(--white) !important;
}

[data-theme="dark"] .site-header.scrolled .nav-contact-btn:hover {
  background: #A01828 !important;
  color: var(--white) !important;
}

.theme-toggle {
  background: #5A5A5A;
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(90, 90, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-header.scrolled .theme-toggle {
  box-shadow: 0 2px 8px rgba(90, 90, 90, 0.3);
}

.theme-toggle:hover {
  opacity: 0.8;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 65vh;
  width: 100vw;
  background-image: url('../assets/pp.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  padding-bottom: 3rem;
  overflow-x: hidden;
  margin-top: 80px;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  left: 0;
  right: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/pp.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  margin: 0;
  padding: 0;
}

.hero-content-wrapper {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  padding-top: 0;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  margin: 0;
  padding: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 65vh;
  display: block;
  margin: 0;
  padding: 0;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
  min-height: auto;
}

.hero-overlay {
  display: none;
}

.hero-content,
.hero-content-box {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem 2.5rem;
  max-width: 700px;
  min-width: 500px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
  margin-left: 4rem;
  margin-right: 4rem;
  margin-top: 0;
}

.hero-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--white);
  font-family: 'Roboto', 'Open Sans', sans-serif;
  text-align: left;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
}

.hero-sub {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.1px;
  color: var(--white);
  font-family: 'Roboto', 'Open Sans', sans-serif;
  text-align: left;
  max-width: 100%;
}

.hero-sub:last-of-type:not(.hero-highlight) {
  margin-bottom: 1rem;
}

.hero-highlight {
  font-weight: 600;
  font-style: italic;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.9vw, 1.15rem);
  color: #FFFFFF;
}

.hero-cta {
  margin-top: 0.3rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background: #A01828;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.6);
}

.btn-hero {
  background: #f6b400;
  color: var(--black);
  box-shadow: 0 4px 15px rgba(246, 180, 0, 0.3);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.btn-hero:hover {
  background: #e0a300;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(246, 180, 0, 0.6);
}

/* ========================================
   SECTIONS
   ======================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
  background: var(--bg-primary);
  transition: background 0.3s ease;
  position: relative;
  margin: 0;
}

.section:nth-child(even) {
  background: var(--bg-primary);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  color: var(--text-primary);
  position: relative;
  letter-spacing: -0.3px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
  cursor: default;
}

.section-title:hover {
  transform: scale(1.08) translateY(-12px);
  filter: drop-shadow(0 10px 20px rgba(196, 30, 58, 0.3));
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--red);
  margin: 1rem auto;
  transition: width 0.4s ease, background 0.3s ease;
}

.section-title:hover::after {
  width: 120px;
}

.section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.section-sub:hover {
  color: var(--text-primary);
  transform: scale(1.02);
}

/* ========================================
   WHAT WE DO SECTION
   ======================================== */
#products.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

#products .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 2rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

.what-we-do-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

.what-we-do-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-block {
  background: var(--bg-primary);
  padding: 1.5rem 1.8rem;
  border-radius: 10px;
  border-left: 4px solid var(--red);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-left-width 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-block:nth-child(1) {
  animation-delay: 0.1s;
}

.service-block:nth-child(2) {
  animation-delay: 0.3s;
}

.service-block:nth-child(3) {
  animation-delay: 0.5s;
}

.service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(196, 30, 58, 0.2);
  border-left-width: 8px;
}

.service-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--red);
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.service-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.service-block p:last-child {
  margin-bottom: 0;
}

.service-block p strong {
  color: var(--text-primary);
  font-weight: 600;
  font-style: italic;
}

.service-block ul {
  list-style: none;
  margin: 0.8rem 0;
  padding: 0;
}

.service-block ul li {
  padding: 0.2rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.4;
  font-size: 0.95rem;
}

.service-block ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
  top: 0.5rem;
}

.what-we-do-image {
  position: sticky;
  top: 100px;
  height: fit-content;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.service-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.service-image:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
  text-align: center;
  border: 2px solid var(--border-color);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

.card:nth-child(4) {
  animation-delay: 0.4s;
}

.card:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 20px 50px rgba(196, 30, 58, 0.35);
  border-color: var(--red);
}

.card:hover .card-icon {
  transform: scale(1.2) rotate(5deg);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: inline-block;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.card:hover h3 {
  color: var(--red);
  transform: scale(1.05);
}

.card p {
  color: var(--text-secondary);
  line-height: 1.7;
  transition: color 0.3s ease;
}

.card:hover p {
  color: var(--text-primary);
}

/* ========================================
   INDUSTRIES SLIDER SECTION
   ======================================== */
.industries-slider-section {
  position: relative;
  width: 100vw;
  height: 75vh;
  min-height: 600px;
  overflow-x: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  left: 0;
  right: 0;
}

.industry-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
  z-index: 0;
}

.industry-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.industry-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.industry-slide.active .industry-background {
  transform: scale(1.05);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.industry-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.industry-content .container {
  width: 100%;
  max-width: 100%;
  padding: 0 4rem;
}

.industry-text-wrapper {
  max-width: 100%;
  width: 100%;
  padding: 3rem 0;
  animation: fadeInLeft 1s ease-out;
}

.industry-slide.active .industry-text-wrapper {
  animation: fadeInLeft 1s ease-out 0.3s backwards;
}

.industry-category {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  opacity: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.industry-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0 0 2rem 0;
  letter-spacing: -1px;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.9);
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

.industry-description {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  font-family: 'Roboto', 'Open Sans', sans-serif;
}

/* Navigation Dots */
.industry-dots-container {
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 100%;
  z-index: 3;
}

.industry-dots {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.industry-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
  outline: none;
}

.industry-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.industry-dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* ========================================
   INDUSTRIES
   ======================================== */
#industries.section {
  padding: 5rem 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.industry-grid > div {
  background: var(--red);
  color: var(--white);
  padding: 2rem 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.industry-grid > div:nth-child(1) {
  animation-delay: 0.1s;
}

.industry-grid > div:nth-child(2) {
  animation-delay: 0.2s;
}

.industry-grid > div:nth-child(3) {
  animation-delay: 0.3s;
}

.industry-grid > div:nth-child(4) {
  animation-delay: 0.4s;
}

.industry-grid > div:nth-child(5) {
  animation-delay: 0.5s;
}

.industry-grid > div:nth-child(6) {
  animation-delay: 0.6s;
}

.industry-grid > div:hover {
  background: #A01828;
  transform: translateY(-15px) scale(1.12);
  box-shadow: 0 20px 45px rgba(196, 30, 58, 0.6);
}

/* ========================================
   SERVICES
   ======================================== */
#services.section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-left: 4px solid var(--red);
  border-radius: 5px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-left-width 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 45px rgba(196, 30, 58, 0.3);
  border-left-width: 8px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--red);
  letter-spacing: -0.2px;
  transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

.service-card:hover h3 {
  transform: translateX(8px);
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover p {
  color: var(--text-primary);
  transform: translateX(5px);
}

/* ========================================
   ABOUT
   ======================================== */
#about.section {
  padding: 5rem 0;
}

#about .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 2rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.about-grid > div {
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.about-grid > div:nth-child(1) {
  animation-delay: 0.1s;
}

.about-grid > div:nth-child(2) {
  animation-delay: 0.3s;
}

.about-grid > div:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 35px rgba(196, 30, 58, 0.15);
  background: var(--bg-secondary);
}

.about-grid h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--red);
  letter-spacing: -0.2px;
  transition: transform 0.3s ease;
}

.about-grid > div:hover h3 {
  transform: translateX(5px);
}

.about-grid p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ========================================
   CONTACT FORM
   ======================================== */
#contact.section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

#contact .section-title {
  background: var(--red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.3s ease;
}

#contact .section-title:hover {
  transform: scale(1.1) translateY(-12px);
  box-shadow: 0 20px 45px rgba(196, 30, 58, 0.6);
  background: #A01828;
}

#contact .section-title::after {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease;
}

.contact-form label:hover {
  transform: translateX(3px);
}

.contact-form span {
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.contact-form label:hover span {
  color: var(--red);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 15px rgba(196, 30, 58, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 18px rgba(196, 30, 58, 0.25);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  font-size: 0.9rem;
  color: var(--red);
  min-height: 1.5rem;
}

.map-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.map-wrap h3:hover {
  color: var(--red);
  transform: translateX(5px);
}

.map-placeholder iframe {
  width: 100%;
  height: 400px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.map-placeholder iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-color: var(--red);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--red);
  letter-spacing: 0;
  transition: transform 0.3s ease, letter-spacing 0.3s ease;
  cursor: default;
}

.footer-grid h4:hover {
  transform: translateX(5px);
  letter-spacing: 1px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding-left 0.3s ease;
  display: inline-block;
}

.footer-grid a:hover {
  color: var(--red);
  transform: translateX(8px) translateY(-3px) scale(1.05);
  padding-left: 5px;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
}

.footer-grid > div:first-child strong {
  display: block;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.footer-grid > div:first-child strong a {
  transition: none;
  transform: none;
  padding-left: 0;
}

.footer-grid > div:first-child strong a:hover {
  color: var(--white);
  transform: none;
  padding-left: 0;
}

.footer-grid > div:first-child p {
  font-size: 0.79rem;
  margin: 0;
  padding: 0;
  text-align: left;
  color: var(--red);
  line-height: 1.2;
}

.qr-code-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
}

.footer-grid > div:last-child h4 {
  margin-bottom: 0.5rem;
}

.qr-code {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
  padding: 8px;
}

.qr-code:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-mid);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
  background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.65) 0%, rgba(26, 26, 26, 0.55) 100%), url('../assets/handshake-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0 3.5rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}


.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-size: clamp(2.9rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.contact-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: left;
}

.benefit-text {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
}

.benefit-text::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.contact-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-form-wrapper {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.15);
}

.contact-form-title,
.contact-info-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--red);
  margin-bottom: 2rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 1rem;
}

.contact-form-title::after,
.contact-info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--red);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-left-width 0.3s ease;
  cursor: default;
}

.info-block:hover {
  transform: translateX(8px) translateY(-5px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
  border-left-width: 8px;
}

.info-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.info-block:hover .info-icon {
  transform: scale(1.2) rotate(5deg);
}

.info-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.info-block:hover .info-text h3 {
  color: var(--red);
}

.info-text p {
  color: var(--text-secondary);
  margin: 0 0 0.5rem 0;
  line-height: 1.6;
}

.info-text p:last-child {
  margin-bottom: 0;
}

.info-text a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.info-text a:hover {
  color: var(--red);
}

.map-wrapper {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.map-wrapper h3:hover {
  color: var(--red);
  transform: translateX(5px);
}

.map-wrapper .map-placeholder {
  border-radius: 10px;
  overflow: hidden;
}

.map-wrapper .map-placeholder iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper .map-placeholder:hover iframe {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.contact-section .container {
  max-width: 90%;
  padding: 0 3rem;
}

.products-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
  align-items: start;
}

.product-left-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-image-wrapper {
  height: fit-content;
}

.product-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  min-height: 100%;
}

.product-image-wrapper {
  background: transparent;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.15);
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.product-image-wrapper:hover .product-image {
  transform: scale(1.02);
}

.product-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
}

.product-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--red);
  margin: 0;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 1rem;
  line-height: 1.2;
}

.product-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.product-model {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border-left: 3px solid var(--red);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-left-width 0.3s ease;
}

.product-model:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
  border-left-width: 5px;
}

.model-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.model-number {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

.tech-specs-section {
  margin-top: 0;
}

.tech-specs-heading {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}

.tech-specs-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.tech-specs {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  table-layout: fixed;
}

.tech-specs:hover {
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.tech-specs thead {
  background: var(--red);
  color: var(--white);
}

.tech-specs th {
  padding: 0.85rem 1.2rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-specs tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.tech-specs tbody tr:last-child {
  border-bottom: none;
}

.tech-specs tbody tr:hover {
  background-color: rgba(196, 30, 58, 0.05);
}

.tech-specs td {
  padding: 0.7rem 1.2rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.4;
  vertical-align: top;
}

.tech-specs td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  width: 38%;
}

.tech-specs td:last-child {
  color: var(--text-secondary);
  width: 62%;
  word-wrap: break-word;
  white-space: normal;
  hyphens: auto;
}

.product-overview-section {
  margin-top: 3rem;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.product-overview-heading {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 0.75rem;
  text-align: left;
  width: 100%;
}

.product-overview-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.product-overview-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.product-features-section,
.product-applications-section {
  margin-top: 3rem;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.product-features-heading,
.product-applications-heading {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 0.75rem;
  text-align: left;
  width: 100%;
}

.product-features-heading::after,
.product-applications-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.product-features-list,
.product-applications-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 100%;
  text-align: left;
}

.product-features-list li,
.product-applications-list li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.product-features-list li::before,
.product-applications-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    height: auto;
  }

  .nav-links a {
    color: var(--black) !important;
    text-shadow: none !important;
  }

  .nav-contact-btn {
    color: var(--white) !important;
    text-align: center;
    display: block;
  }

  [data-theme="dark"] .nav-links {
    background: rgba(45, 45, 45, 0.98);
  }

  [data-theme="dark"] .nav-links a {
    color: var(--white) !important;
  }

  [data-theme="dark"] .nav-contact-btn {
    color: var(--white) !important;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .about-grid,
  .contact-grid,
  .what-we-do-layout,
  .contact-layout,
  .products-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-hero {
    padding: 6rem 0 3rem;
  }

  .contact-hero-benefits {
    margin-top: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-layout,
  .products-layout {
    gap: 3rem;
  }

  .product-left-column {
    gap: 1.5rem;
  }

  .product-image-wrapper {
    padding: 0;
  }

  .product-details-wrapper {
    padding: 1rem 0;
  }

  .product-overview-section {
    margin-top: 1.5rem;
    padding: 0;
  }

  .product-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .tech-specs-section {
    margin-top: 1.5rem;
  }

  .tech-specs-heading {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
  }

  .tech-specs th,
  .tech-specs td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .tech-specs th {
    font-size: 0.85rem;
  }

  .product-overview-section {
    margin-top: 1.5rem;
  }

  .product-overview-heading {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
  }

  .product-overview-text {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
  }

  .product-features-section,
  .product-applications-section {
    margin-top: 1.5rem;
  }

  .product-features-heading,
  .product-applications-heading {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
  }

  .product-features-list,
  .product-applications-list {
    max-width: 100%;
    padding: 0 1rem;
  }

  .product-features-list li,
  .product-applications-list li {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .what-we-do-image {
    position: relative;
    top: 0;
    order: -1;
  }

  .service-image {
    max-height: 400px;
  }

  .service-block {
    padding: 1.5rem;
  }

  .service-block h3 {
    font-size: 1.15rem;
  }

  .service-block p,
  .service-block ul li {
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 0;
  }

  /* Hero section mobile */
  .hero {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 2rem;
    min-height: 70vh;
    background-attachment: scroll;
    margin-top: 80px;
  }

  .hero-content-wrapper {
    justify-content: center;
    padding-top: 1.5rem;
  }

  .hero-text {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-content,
  .hero-content-box {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 2rem 1.5rem;
    max-width: calc(100% - 3rem);
    width: auto;
  }

  .hero-title {
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 4vw, 1.9rem);
    white-space: normal;
    letter-spacing: 0.3px;
  }

  .hero-content,
  .hero-content-box {
    min-width: auto;
  }

  .hero-sub {
    margin-bottom: 0.9rem;
    line-height: 1.6;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }

  .hero-highlight {
    margin-top: 1rem;
    padding-top: 1rem;
    margin-bottom: 1.25rem;
    font-size: clamp(0.9rem, 2.7vw, 1.05rem);
  }

  /* Industries Slider mobile */
  .industries-slider-section {
    height: 70vh;
    min-height: 500px;
  }

  .industry-background {
    background-position: center center;
  }

  .industry-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  .industry-content {
    padding-top: 0;
  }

  .industry-text-wrapper {
    padding: 2rem 1.5rem;
    max-width: 100%;
    width: 100%;
  }
  
  .industry-content .container {
    padding: 0 1.5rem;
  }

  .industry-category {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
  }

  .industry-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1.25rem;
  }

  .industry-description {
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    line-height: 1.5;
  }

  .industry-dots-container {
    bottom: 2rem;
  }

  .industry-dots {
    justify-content: center;
    gap: 0.75rem;
  }

  .industry-dot {
    width: 12px;
    height: 12px;
  }
}
