/* red-hat-display-300 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/red-hat-display-v20-latin_latin-ext-300.woff2') format('woff2');
}
/* red-hat-display-regular - latin_latin-ext */
@font-face {
  font-family: 'Red Hat Display';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/red-hat-display-v20-latin_latin-ext-400.woff2') format('woff2');
}
/* red-hat-display-500 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/red-hat-display-v20-latin_latin-ext-500.woff2') format('woff2');
}
/* red-hat-display-600 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/red-hat-display-v20-latin_latin-ext-600.woff2') format('woff2');
}
/* red-hat-display-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/red-hat-display-v20-latin_latin-ext-700.woff2') format('woff2');
}
/* red-hat-display-800 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/red-hat-display-v20-latin_latin-ext-800.woff2') format('woff2');
}
/* red-hat-display-900 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/red-hat-display-v20-latin_latin-ext-900.woff2') format('woff2');
}
/* red-hat-display-900italic - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Red Hat Display';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/red-hat-display-v20-latin_latin-ext-900italic.woff2') format('woff2');
}


/* --- VARIABLES & BASE STYLES --- */
:root {
  --color-primary-blue: #0b345a;
  --color-accent-orange: #f07c22;
  --color-accent-orange-dark: #d8680e;
  --color-accent-orange-light: #fbe6d5;
  --color-text-dark: #333333;
  --color-text-light: #ffffff;
  --color-text-muted: #555555;
  --color-background-light: #ffffff;
  --color-background-grey: #f8f9fa;
  --color-border-light: #e9e9e9;
  --color-success-green: #28a745;
  --container-width: 1200px;
  --header-height: 80px;
  --mobile-header-height: 70px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-family: 'Red Hat Display', sans-serif; }
body {
 font-family: 'Red Hat Display', sans-serif;
  background-color: var(--color-background-light);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

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

h1, h2, h3 { font-weight: 700; line-height: 1.2; color: var(--color-primary-blue); font-family: 'Red Hat Display', sans-serif; }
h2 { font-size: 2.5rem; margin-bottom: 3rem; text-align: left; }
section { padding: 80px 0; }
a { text-decoration: none; color: inherit; }

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-orange), var(--color-accent-orange-dark));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(240, 124, 34, 0.5);
}

/* --- UI COMPONENTS --- */
.btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-orange-dark));
  color: var(--color-text-light);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
  min-height: 44px;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn:hover { box-shadow: 0 8px 25px rgba(240, 124, 34, 0.3); }
.btn:hover::before { transform: scaleX(1); }
.btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }
.btn:disabled::before { display: none; }

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid var(--color-accent-orange);
    color: var(--color-accent-orange);
    background-color: transparent;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
    font-size: 1rem;
    text-align: center;
}
.btn-secondary:hover {
    background: var(--color-accent-orange);
    color: var(--color-text-light);
    box-shadow: 0 8px 20px rgba(240, 124, 34, 0.3);
}


.termsfeed-com---palette-light .cc-nb-okagree

 {
    color: #fff;
   
    background: linear-gradient(var(--color-accent-orange-dark));
}

.termsfeed-com---palette-light .cc-nb-reject {
    color: #fff;

    background: linear-gradient(20deg, #e28d4b);
}


.termsfeed-com---palette-light .cc-cp-foot-save

 {
     background: linear-gradient(var(--color-accent-orange-dark))!important;
    color: #fff;
}

.termsfeed-com---palette-light .cc-pc-head-close {
    background: none;
    color: #666;
    border: none !important;
}




/* --- FLOATING CONTACT FORM --- */
.floating-contact-btn {
  position: fixed;
  right: 30px;
  bottom: 100px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 8px 25px rgba(240, 124, 34, 0.3);
  transition: all 0.3s ease;
  animation: pulse-contact 2s infinite;
}
.floating-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(240, 124, 34, 0.4);
}
@keyframes pulse-contact {
  0%, 100% { box-shadow: 0 8px 25px rgba(240, 124, 34, 0.3), 0 0 0 0 rgba(240, 124, 34, 0.7); }
  50% { box-shadow: 0 8px 25px rgba(240, 124, 34, 0.3), 0 0 0 15px rgba(240, 124, 34, 0); }
}
.floating-contact-btn.hide { opacity: 0; visibility: hidden; }
.floating-contact-panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 400px;
  background: white;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  box-shadow: -5px 0 25px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.floating-contact-panel.active { transform: translateX(0); }
.floating-contact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.floating-contact-overlay.active { opacity: 1; visibility: visible; transition-delay: 0s; }
.floating-panel-header {
  padding: 25px 20px;
  background: linear-gradient(135deg, var(--color-primary-blue), #1a4a7a);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.floating-panel-header h3 { color: #fff; }
.floating-panel-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-panel-content { padding: 30px 20px; }

/* --- HEADER --- */
.site-header {
  height: var(--header-height);
  background-color: var(--color-background-light);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.logo { font-weight: 700; color: var(--color-text-dark); flex-shrink: 0; }
.main-nav ul { list-style: none; display: flex; gap: 40px; margin: 0; padding: 0; }
.main-nav a { 
  font-weight: 500; 
  position: relative; 
  padding: 10px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease; 
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary-blue);
}
/* Underline appears on hover, regardless of scroll position */
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
/* Underline for the ACTIVE link only appears AFTER the user has scrolled */
.site-header.scrolled .main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-cta { flex-shrink: 0; margin-left: 20px; display: block; }

/* =================================================================== */
/* START: UPDATED HERO SECTION WITH SLIDER                             */
/* =================================================================== */
.hero {
  padding: 80px 0;
  min-height: 690px;
  background-color: var(--color-primary-blue);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden; 
}
.hero > .container {
  width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-content-wrapper {
    margin: 0;
    text-align: left;
}
.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    line-height: 1.1;
}
.hero p {
    font-size: 1.25rem;
    max-width: 550px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}
.hero-badge {
    display: inline-block;
    background-color: var(--color-accent-orange);
    color: var(--color-primary-blue);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse-orange 2s infinite;
    box-shadow: 0 0 0 0 rgba(240, 124, 34, 0.7);
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 124, 34, 0.7); }
  50% { box-shadow: 0 0 0 15px rgba(240, 124, 34, 0); }
}

.hero-image-mobile { display: none; }

/* --- Elegant Layered Image Slider --- */
.hero-image {
    position: relative;
    height: 450px;
    perspective: 1200px;
    transform-style: preserve-3d;
}
.image-layers {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
.image-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-origin: center center;
}
.image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.8s ease;
    filter: brightness(0.9) contrast(1.1);
}
.image-layer.front {
    z-index: 5;
    transform: translateZ(0) scale(1) rotateY(0deg) translateY(0);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.image-layer.front:hover {
    transform: translateZ(15px) scale(1.03) rotateY(0deg) translateY(-8px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}
.image-layer.middle {
    z-index: 3;
    transform: translateZ(-80px) translateX(80px) translateY(20px) scale(0.92) rotateY(-8deg);
    opacity: 0.75;
}
.image-layer.back {
    z-index: 1;
    transform: translateZ(-160px) translateX(160px) translateY(35px) scale(0.85) rotateY(-15deg);
    opacity: 0.55;
}
.image-layers.transitioning .image-layer {
    transition: all 1.4s cubic-bezier(0.23, 1, 0.320, 1);
}
.progress-container {
    position: absolute;
    bottom: -70px;
    left: 0; right: 0;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    z-index: 10;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent-orange), var(--color-accent-orange-dark));
    border-radius: 3px;
    transition: width 0.1s linear;
    position: relative;
    box-shadow: 0 0 20px var(--color-accent-orange);
}
.progress-bar::after {
    content: '';
    position: absolute;
    top: 50%; right: 0;
    width: 8px; height: 8px;
    background: var(--color-accent-orange);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px var(--color-accent-orange);
    animation: pulse-orange-slider 1.5s ease-in-out infinite;
}
@keyframes pulse-orange-slider {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.3); opacity: 0.7; }
}
.layer-dots {
    position: absolute;
    bottom: -105px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    display: none;
}
.layer-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: none;
}
.layer-dot.active {
    transform: scale(1.4);
    background: var(--color-accent-orange);
    border-color: var(--color-accent-orange-dark);
    box-shadow: 0 0 25px rgba(240, 124, 34, 0.5);
}
.layer-dot:hover:not(.active) {
    transform: scale(1.2);
    border-color: var(--color-accent-orange);
}
.progress-status {
    position: absolute;
    bottom: -135px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: none;
}
.hero-image::before {
    content: '';
    position: absolute;
    top: -40px; left: -30px; right: 40px; bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    z-index: -1;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),   /* inner rim highlight */
    0 0 8px #fff,                          /* white halo (required) */
    8px 18px 30px rgba(29,33,41,0.08),     /* low, warm shadow */
    -6px -10px 20px rgba(255,255,255,0.6);
    transition: all 0.5s ease;
}
.hero-image:hover::before {
    content: '';
    position: absolute;
    top: -40px; left: -30px; right: 40px; bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    z-index: -1;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
   box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),   /* inner rim highlight */
    0 0 8px #fff,                          /* white halo (required) */
    8px 18px 30px rgba(29,33,41,0.09),     /* low, warm shadow */
    -6px -10px 20px rgba(255,255,255,0.7);
    transition: all 0.5s ease;
}


.hero-image::after {
    content: '';
    position: absolute;
    top: 20px; left: 30px; right: -30px; bottom: -40px;
    background: linear-gradient(315deg, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 24px;
    z-index: -2;
    transition: all 0.5s ease;
}
.hero-image:hover::before { transform: translate(-5px, -5px) rotate(-1deg); }
.hero-image:hover::after { transform: translate(5px, 5px) rotate(1deg); }
/* =================================================================== */
/* END: UPDATED HERO SECTION                                           */
/* =================================================================== */

#branchen { background-color: var(--color-background-grey); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; justify-items: center; }
.industry-item { width: 100%; padding: 30px 15px; border: 1px solid transparent; background-color: var(--color-background-light); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.05); min-height: 160px; }
.industry-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--color-accent-orange); }
.industry-item i { font-size: 3rem; color: var(--color-primary-blue); margin-bottom: 20px; transition: transform 0.3s; }
.industry-item:hover i { transform: scale(1.1); color: var(--color-accent-orange); }
.industry-item span { font-weight: 600; font-size: 1rem; }
.industry-detail-section { background-color: var(--color-background-light); padding: 100px 0; }
.industry-detail-section:nth-of-type(odd) { background-color: var(--color-background-grey); }
.industry-detail-section h2 { margin-bottom: 4rem; font-size: 2.8rem; }
.industry-hero { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; justify-content: center; margin-bottom: 80px; }
.industry-hero.reverse { flex-direction: row-reverse; }
.industry-hero-content { flex: 1; min-width: 320px; max-width: 600px; }
.industry-hero-content h3 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--color-accent-orange); }
.industry-hero-content p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--color-text-muted); }
.industry-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 20px; margin-bottom: 2rem; }
.stat-item { text-align: center; padding: 20px; background: rgba(240, 124, 34, 0.1); border-radius: 12px; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--color-accent-orange); display: block; }
.stat-label { font-size: 0.9rem; color: var(--color-text-muted); font-weight: 500; }
.industry-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 3rem 0; }
.benefit-item { display: flex; align-items: flex-start; gap: 15px; padding: 20px; background: var(--color-background-light); border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.benefit-item i { color: var(--color-accent-orange); font-size: 1.5rem; margin-top: 3px; flex-shrink: 0; }
.benefit-content h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--color-primary-blue); }
.benefit-content p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }
.industry-hero-image { flex: 1; min-width: 320px; max-width: 500px; position: relative; }
.industry-hero-image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.industry-hero-image-mobile { display: none; margin: 0 0 2rem 0; }
.industry-hero-image-mobile img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.industry-detail-content { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; justify-content: center; }
.industry-text-block { flex: 1; min-width: 300px; max-width: 600px; }
.industry-text-block h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--color-accent-orange); }
.industry-text-block p { margin-bottom: 1rem; color: var(--color-text-muted); }
.industry-text-block ul { list-style: none; padding-left: 0; margin-top: 20px; }
.industry-text-block ul li { margin-bottom: 10px; color: var(--color-text-dark); font-weight: 500; display: flex; align-items: center; }
.industry-text-block ul li i { color: var(--color-accent-orange); margin-right: 10px; font-size: 1.1rem; }
.industry-image-block { flex: 1; min-width: 300px; max-width: 500px; }
.industry-image-block img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.industry-product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 4rem; }
.industry-product-card { background-color: var(--color-background-light); border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); overflow: hidden; transition: box-shadow 0.3s ease; text-align: center; }
.industry-product-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.industry-product-card .image-wrapper { height: 180px; overflow: hidden; background-color: var(--color-background-grey); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--color-border-light); }
.industry-product-card .image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.industry-product-card:hover .image-wrapper img { transform: scale(1.05); }
.industry-product-card h3 { font-size: 1.25rem; margin: 15px 0 10px; color: var(--color-primary-blue); padding: 0 15px; }
.industry-product-card p { font-size: 0.9rem; color: var(--color-text-muted); padding: 0 15px 15px; }
.industry-detail-section .product-section-heading { font-size: 2.2rem; margin-top: 4rem; margin-bottom: 2rem; color: var(--color-primary-blue); }
.services-container { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; }
.services-list { flex: 1.1; min-width: 320px; }
.service-item { display: flex; align-items: flex-start; gap: 25px; margin-bottom: 40px; }
.service-item i { font-size: 2.5rem; color: var(--color-accent-orange); padding-top: 5px; width: 45px; text-align: center; flex-shrink: 0; }
.service-item h3 { font-size: 1.5rem; margin-bottom: 8px; }
.service-item p { color: var(--color-text-muted); }
.services-gallery { flex: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; min-width: 320px; }
.gallery-item { position: relative; padding-top: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.1); transition: box-shadow 0.4s; }
.gallery-item-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,52,90,0.8) 0%, rgba(0,0,0,0) 60%); }
.gallery-item-text { position: absolute; z-index: 2; bottom: 20px; left: 20px; right: 20px; color: white; font-size: 1.2rem; font-weight: 600; }
.gallery-item:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.gallery-item:hover .gallery-item-bg { transform: scale(1.1); }
.section-centered-heading { margin-bottom: 4rem; }
.section-centered-heading h2 { font-size: 3.5rem; margin-bottom: 1rem; }
.section-centered-heading h3 { font-size: 1.9rem; margin-bottom: 1rem; }



.section-centered-heading p { font-size: 1.25rem; color: var(--color-text-muted); text-align: left; }
.card-interaction { transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.card-interaction:hover { box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15); }
.feature-item { display: flex; align-items: flex-start; gap: 25px; margin-bottom: 40px; }
.feature-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-orange-dark)); box-shadow: 0 5px 15px rgba(240, 124, 34, 0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-item:hover .feature-icon { transform: rotate(10deg) scale(1.1); box-shadow: 0 10px 20px rgba(240, 124, 34, 0.3); }
.feature-icon i { color: var(--color-text-light); font-size: 1.8rem; }
.star-rating { color: var(--color-accent-orange); filter: drop-shadow(0 0 2px rgba(240, 124, 34, 0.5)); }
.comparison-container { position: relative; overflow: hidden; cursor: col-resize; border-radius: 12px; width: 100%; height: 500px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); margin: 0 auto; }
.comparison-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
#comparison-top { clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
.comparison-slider { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; background: white; transform: translateX(-50%); pointer-events: none; z-index: 10; }
.comparison-slider-handle { position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; border: 2px solid white; border-radius: 50%; background: var(--color-primary-blue); transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: space-evenly; color: white; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 40px; }
.step-card { 
    position: relative; 
    padding: 30px; 
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  
}
.step-number { 
    font-size: 4rem; 
    font-weight: 800; 
    color: rgba(255, 255, 255, 0.1); 
    position: absolute; 
    top: 10px; 
    right: 20px; 
    z-index: 0; 
    line-height: 1; 
    pointer-events: none; 
}
.step-content { position: relative; z-index: 1; }
.step-content .feature-icon { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 50%; }
.step-content h3 { font-size: 1.8rem; margin-bottom: 10px; }
.step-content p { color: rgba(255, 255, 255, 0.8); }
.sponsor-content { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; justify-content: center; }
.sponsor-text { flex: 1; min-width: 320px; max-width: 600px; }
.sponsor-text h2 { font-size: 2.2rem; margin-bottom: 1.5rem; text-align: left; }
.sponsor-text p { font-size: 1.1rem; margin-bottom: 2rem; color: var(--color-text-muted); }
.sponsor-text ul { list-style: none; padding-left: 0; margin-top: 20px; }
.sponsor-text ul li { margin-bottom: 12px; color: var(--color-text-dark); font-weight: 500; align-items: flex-start; }
.sponsor-text ul li i { color: var(--color-accent-orange); margin-right: 15px; font-size: 1.2rem; padding-top: 2px; flex-shrink: 0; }
.sponsor-image-block { 
    flex: 1; 
    min-width: 320px; 
    max-width: 500px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sponsor-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px;
}
.sponsor-cta-btn {
    margin-top: 25px;
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.blog-post-card { background-color: var(--color-background-light); border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.05); overflow: hidden; }
.blog-post-card .image-wrapper { height: 200px; overflow: hidden; border-top-left-radius: 12px; border-top-right-radius: 12px; }
.blog-post-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-post-card:hover img { transform: scale(1.05); }
.blog-post-card .content { padding: 25px; }
.blog-post-card .category-badge { display: inline-block; padding: 5px 10px; background-color: var(--color-primary-blue); color: var(--color-text-light); font-size: 0.75rem; font-weight: 600; border-radius: 50px; margin-bottom: 15px; }
.blog-post-card h3 { font-size: 1.3rem; margin-bottom: 10px; transition: color 0.3s; }
.blog-post-card h3:hover { color: var(--color-accent-orange); }
.blog-post-card p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 15px; }
.blog-post-card .read-more { font-weight: 600; color: var(--color-primary-blue); display: flex; align-items: center; transition: color 0.3s; }
.blog-post-card .read-more:hover { color: var(--color-accent-orange); }
.blog-post-card .read-more i { margin-left: 8px; transition: transform 0.3s; }
.blog-post-card .read-more:hover i { transform: translateX(5px); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.testimonial-card { background-color: var(--color-background-light); padding: 30px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.testimonial-card .author-info { display: flex; align-items: center; margin-bottom: 20px; }
.testimonial-card .author-avatar { width: 50px; height: 50px; background-color: var(--color-primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-text-light); font-weight: 600; margin-right: 15px; flex-shrink: 0; }
.testimonial-card .author-name { font-weight: 700; color: var(--color-primary-blue); margin-bottom: 2px; }
.testimonial-card .author-title { font-size: 0.9rem; color: var(--color-text-muted); }
.testimonial-card .star-rating { margin-bottom: 15px; }
.testimonial-card .star-rating i { font-size: 1rem; margin-right: 2px; }
.testimonial-card .review-text { color: var(--color-text-dark); margin-bottom: 15px; line-height: 1.6; }
.testimonial-card .review-date { font-size: 0.85rem; color: var(--color-text-muted); }
.why-bannerevent-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.why-bannerevent-item { background-color: var(--color-background-light); padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: box-shadow 0.3s ease; }
.why-bannerevent-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.why-bannerevent-item .icon-wrapper { width: 70px; height: 70px; background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-orange-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--color-text-light); font-size: 2.2rem; box-shadow: 0 5px 15px rgba(240, 124, 34, 0.2); transition: transform 0.3s; }
.why-bannerevent-item:hover .icon-wrapper { transform: scale(1.1); }
.why-bannerevent-item h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--color-primary-blue); }
.why-bannerevent-item p { color: var(--color-text-muted); font-size: 0.95rem; }
.image-placeholder { background: linear-gradient(135deg, var(--color-accent-orange-light) 0%, #fefefe 100%); border: 2px dashed var(--color-accent-orange); display: flex; align-items: center; justify-content: center; color: var(--color-primary-blue); border-radius: 12px; text-align: center; flex-direction: column; padding: 20px; }
.image-placeholder i { font-size: 3rem; margin-bottom: 10px; }
.image-placeholder p { font-weight: 500; font-size: 0.9rem; color: var(--color-primary-blue); }
.info-box-ux { display: flex; align-items: flex-start; gap: 20px; background-color: var(--color-accent-orange-light); border-left: 5px solid var(--color-accent-orange); padding: 25px; border-radius: 8px; margin-top: 4rem; box-shadow: 0 5px 15px rgba(240, 124, 34, 0.1); }
.info-box-ux i { font-size: 2rem; color: var(--color-accent-orange); margin-top: 5px; }
.info-box-content h4 { font-size: 1.25rem; color: var(--color-primary-blue); margin-bottom: 8px; }
.info-box-content p { color: var(--color-text-muted); margin: 0; line-height: 1.6; }
.info-box-content p a { color: var(--color-accent-orange-dark); font-weight: 600; transition: color 0.3s; }
.info-box-content p a:hover { color: var(--color-primary-blue); }
.faq-contact-section { display: flex; gap: 70px; align-items: flex-start; flex-wrap: wrap; }
.faq { flex: 1.2; min-width: 320px; }
.faq-item { border-bottom: 1px solid var(--color-border-light); padding-bottom: 15px; margin-bottom: 15px; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; cursor: pointer; transition: color 0.3s; padding: 15px 0; min-height: 44px; }
.faq-question:hover { color: var(--color-accent-orange); }
.faq-question i { transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28); }
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease; }
.faq-answer p { color: var(--color-text-muted); padding-top: 10px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; }
.contact-form-wrapper { flex: 1; background-color: var(--color-background-light); padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); min-width: 320px; }
.contact-form-wrapper h2 { font-size: 2rem; margin-bottom: 2rem; }
.form-group { position: relative; margin-bottom: 30px; }
.form-group input, .form-group textarea { width: 100%; padding: 18px 0; border: none; border-bottom: 2px solid #ccc; background-color: transparent; font-family: 'Red Hat Display', sans-serif; font-size: 1rem; color: var(--color-text-dark); transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary-blue); }
.form-group label { position: absolute; top: 18px; left: 0; font-size: 1rem; color: var(--color-text-muted); pointer-events: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label, .form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label { top: -10px; font-size: 0.85rem; color: var(--color-primary-blue); font-family: 'Red Hat Display', sans-serif; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form-wrapper .btn { width: 100%; font-size: 1.1rem; padding: 18px; margin-top: 10px; font-family: 'Red Hat Display', sans-serif;}
.honeypot-field { display: none; }
.form-group-consent { display: flex; align-items: flex-start; gap: 12px; font-size: 0.85rem; color: var(--color-text-muted); margin-top: 10px; margin-bottom: 25px; }
.form-group-consent input { width: auto; margin-top: 4px; accent-color: var(--color-primary-blue); min-width: 16px; min-height: 16px; flex-shrink: 0; }
.form-group-consent label { position: static; font-size: 0.85rem; line-height: 1.4; }
.form-group-consent label a { color: var(--color-primary-blue); text-decoration: underline; }
.form-message { padding: 15px; margin-top: 20px; border-radius: 8px; text-align: center; font-weight: 600; display: none; }
.form-message.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 52, 90, 0.85); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s 0.4s; }
.modal-overlay.visible { opacity: 1; visibility: visible; transition-delay: 0s; }
.modal-content { background: var(--color-background-light); padding: 40px 50px; border-radius: 12px; text-align: center; max-width: 480px; width: 90%; box-shadow: 0 10px 40px rgba(0,0,0,0.2); transform: scale(0.9) translateY(20px); transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28); }
.modal-overlay.visible .modal-content { transform: scale(1) translateY(0); }
.success-icon { width: 80px; height: 80px; margin: 0 auto 20px; background-color: var(--color-success-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 2.5rem; animation: pop-in 0.5s ease-out forwards; }
.modal-content h2 { margin-bottom: 10px; font-size: 2rem; }
.modal-content p { color: var(--color-text-muted); margin-bottom: 25px; line-height: 1.5; }
#close-modal { width: 100%; }
@keyframes pop-in { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }
.fade-in.delay-1 { transition-delay: 150ms; }
.fade-in.delay-2 { transition-delay: 300ms; }
.fade-in.delay-3 { transition-delay: 450ms; }
.fade-in.delay-4 { transition-delay: 600ms; }
.fade-in.delay-5 { transition-delay: 750ms; }
#scrollTopProgress { position: fixed; right: 30px; bottom: 30px; height: 60px; width: 60px; cursor: pointer; display: block; border-radius: 50%; background-color: var(--color-background-light); box-shadow: 0 5px 15px rgba(11, 52, 90, 0.2); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s, transform 0.4s; transform: translateY(20px); }
#scrollTopProgress.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTopProgress svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
#scrollTopProgress .progress-circle-bg { stroke: #e6e6e6; stroke-width: 4px; fill: none; }
#scrollTopProgress .progress-circle-path { stroke: var(--color-accent-orange); stroke-width: 5px; fill: none; stroke-linecap: round; transition: stroke-dashoffset 0.1s linear; transform: rotate(-90deg); transform-origin: 50% 50%; }
#scrollTopProgress .arrow-up { position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--color-primary-blue); transition: transform 0.3s; }
#scrollTopProgress:hover .arrow-up { transform: translateY(-3px); }
.menu-toggle { display: none; width: 30px; height: 20px; position: relative; cursor: pointer; z-index: 1001; flex-direction: column; justify-content: space-between; transition: transform 0.3s ease; padding: 10px; margin: -10px; }
.menu-toggle span { display: block; width: 100%; height: 3px; background-color: var(--color-primary-blue); border-radius: 2px; transition: all 0.3s ease-in-out; transform-origin: left center; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); width: 100%; }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-100%); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); width: 100%; }
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(11, 52, 90, 0.98); backdrop-filter: blur(8px); color: var(--color-text-light); display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateX(100%); transition: transform 0.4s ease-in-out, opacity 0.4s ease, visibility 0s 0.4s; z-index: 1000; opacity: 0; visibility: hidden; }
.mobile-nav-overlay.active { transform: translateX(0); opacity: 1; visibility: visible; transition-delay: 0s; }
.mobile-main-nav ul { list-style: none; display: flex; flex-direction: column; gap: 30px; font-size: 1.8rem; font-weight: 600; margin-bottom: 40px; padding-left: 0; text-align: center; }
.mobile-main-nav a { 
  color: var(--color-text-light); 
  transition: color 0.3s ease; 
  padding: 10px 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  min-height: 44px; 
  position: relative;
}
.mobile-main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background-color: var(--color-accent-orange);
    transition: transform 0.3s ease-out;
}
.mobile-main-nav a:hover,
.mobile-main-nav a.active {
  color: var(--color-accent-orange);
}
.mobile-main-nav a:hover::after,
.mobile-main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}
.mobile-header-cta { width: 80%; max-width: 300px; text-align: center; font-size: 1.2rem; padding: 18px 35px; }
#mobile-menu-close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2.5rem; color: var(--color-text-light); cursor: pointer; z-index: 1002; padding: 15px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background-color 0.2s ease, transform 0.2s ease; min-width: 44px; min-height: 44px; }
#mobile-menu-close-btn:hover { background-color: rgba(255, 255, 255, 0.1); transform: rotate(90deg); }
.site-footer { box-shadow: 0 0 8px #fff; background-color: var(--color-primary-blue); color: var(--color-text-light); padding: 60px 0; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: left; }
.footer-section h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; color: var(--color-accent-orange); }
.footer-section p { color: rgba(255, 255, 255, 0.8); margin-bottom: 15px; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a { color: rgba(255, 255, 255, 0.8); transition: color 0.3s ease; }
.footer-section ul li a:hover { color: var(--color-accent-orange); }
.footer-contact-info p { display: flex; align-items: flex-start; margin-bottom: 10px; }
.footer-contact-info i { margin-right: 10px; color: var(--color-accent-orange); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.footer-social-links { margin-top: 20px; display: none; }
.footer-social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.1); color: var(--color-text-light); font-size: 1.2rem; margin-right: 10px; transition: background-color 0.3s ease, color 0.3s ease; }
.footer-social-links a:hover { background-color: var(--color-accent-orange); color: var(--color-primary-blue); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; margin-top: 40px; text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.footer-bottom a { color: rgba(255, 255, 255, 0.6); text-decoration: underline; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--color-text-light); }

/* --- RESPONSIVE DESIGN --- */
@media(max-width: 1100px) {
  .services-container, .faq-contact-section, .sponsor-content,
  .industry-detail-content, .industry-hero { flex-direction: column; gap: 50px; }
  .industry-hero.reverse { flex-direction: column; }
  .industry-hero-content { order: 1; }
  .industry-hero-image { order: 2; }
  .industry-detail-section h2 { margin-bottom: 2rem; }
  .floating-contact-panel { max-width: 100%; }
  .industry-hero-content, .industry-hero-image { min-width: 300px; }
  .services-list, .services-gallery { min-width: 100%; }
  .services-gallery { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); text-align: center; gap: 20px; }
  .footer-section h4, .footer-section p, .footer-section ul, .footer-contact-info i { text-align: center; justify-content: center; }
  .footer-contact-info p { justify-content: center; }
  .footer-social-links { text-align: center; }
  .industry-hero-image { display: none; }
  .industry-hero-image-mobile { display: block; }
}

@media(max-width: 950px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; width: 44px; height: 44px; background-color: transparent; border: 1px solid var(--color-primary-blue); border-radius: 4px; padding: 10px; margin: -10px; box-sizing: border-box; }
  .menu-toggle span { background-color: var(--color-primary-blue); height: 3px; width: 100%; display: block; }
  :root { --header-height: var(--mobile-header-height); }
  .header-content { height: var(--mobile-header-height); padding: 0 20px; }
  .logo { margin-top:10px; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  section { padding: 60px 0; }
  
  .hero { padding: 80px 0; min-height: 0; padding-bottom: 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-content-wrapper { text-align: left; margin-top: -15px; }
  .hero h1 { font-size: 2.8rem !important; }
  .hero p { font-size: 1.1rem; max-width: 100%; }
  .hero-image { height: 350px; }
  .hero-image::before, .hero-image::after { display: none; }

  .industry-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
  .industry-item { min-height: 140px; padding: 25px 10px; }
  .industry-item i { font-size: 2.5rem; margin-bottom: 15px; }
  .industry-item span { font-size: 0.9rem; }
  .gallery-item { padding-top: 60%; }
  .section-centered-heading h2 { font-size: 2rem; }
  .section-centered-heading p { font-size: 1.1rem; }
  .comparison-container { height: 350px; }
  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .blog-grid, .reviews-grid, .why-bannerevent-grid, .industry-product-grid, .services-gallery { grid-template-columns: 1fr; gap: 20px; }
  .floating-contact-btn { bottom: 80px; right: 20px; width: 55px; height: 55px; font-size: 22px; }
  #scrollTopProgress { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1rem; }
  #scrollTopProgress .arrow-up { font-size: 1.1rem; }
  .industry-detail-section { padding: 60px 0; }
  .industry-hero-content, .industry-hero-image { min-width: 280px; }
  .industry-benefits, .industry-stats { grid-template-columns: 1fr; gap: 15px; }
  .stat-item { padding: 15px; }
  .stat-number { font-size: 2rem; }
  .feature-item { gap: 20px; margin-bottom: 30px; }
  .feature-icon { width: 50px; height: 50px; }
  .feature-icon i { font-size: 1.5rem; }
  .service-item { gap: 20px; margin-bottom: 30px; }
  .service-item i { font-size: 2rem; width: 35px; }
  .service-item h3 { font-size: 1.3rem; }
  .faq-contact-section { gap: 40px; }
  .contact-form-wrapper { padding: 30px 20px; }
  .form-group { margin-bottom: 25px; }
  .form-group input, .form-group textarea { padding: 15px 0; }
  .form-group label { top: 15px; }
  .industry-hero { gap: 40px; margin-bottom: 60px; }
  .industry-hero-content h3 { font-size: 1.8rem; }
  .industry-hero-content p { font-size: 1.1rem; }
  .benefit-item { padding: 15px; }
  .benefit-item i { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-section { margin-bottom: 30px; }
  .footer-section:last-child { margin-bottom: 0; }
  .footer-section h4 { margin-bottom: 15px; }
  .footer-contact-info p, .footer-social-links { justify-content: center; display: flex; }
}

.image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.8s ease;
    filter: brightness(0.9) contrast(1.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 8px #fff, 8px 18px 30px rgba(29, 33, 41, 0.06), -6px -10px 20px rgba(255, 255, 255, 0.6);
}

@media(max-width: 480px) {
  .container, .header-content { padding: 0 15px; }
  .hero h1 { font-size: 2.4rem !important; }
  .hero p { font-size: 1rem; }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero-image { height: 300px; }
  .industry-grid { grid-template-columns: 1fr; gap: 28px; }
  .industry-item { min-height: 120px; padding: 20px 8px; max-width: none; }
  .industry-item i { font-size: 2.2rem; margin-bottom: 12px; }
  .industry-item span { font-size: 0.85rem; }
  .modal-content { padding: 30px 20px; margin: 20px; }
  #scrollTopProgress { right: 15px; bottom: 20px; height: 45px; width: 45px; font-size: 0.9rem; }
  #scrollTopProgress .arrow-up { font-size: 1rem; }
  #mobile-menu-close-btn { top: 15px; right: 15px; font-size: 2rem; padding: 12px; min-width: 40px; min-height: 40px; }
  .floating-contact-btn { width: 50px; height: 50px; font-size: 20px; bottom: 80px; right: 15px; }
  .mobile-main-nav ul { font-size: 1.6rem; gap: 25px; }
  .mobile-header-cta { font-size: 1.1rem; padding: 15px 30px; }
  .btn, .btn-secondary { padding: 12px 25px; font-size: 0.95rem; }
  .floating-panel-header { padding: 20px 15px; }
  .floating-panel-content { padding: 25px 15px; }
  .floating-panel-close { font-size: 24px; padding: 8px; min-width: 40px; min-height: 40px; }
  .section-centered-heading h2 { font-size: 1.8rem; }
  .section-centered-heading p { font-size: 1rem; }
  .industry-detail-section h2 { font-size: 1.9rem; }
  .product-section-heading { font-size: 1.7rem !important; }
  .sponsor-text h2 { font-size: 1.8rem; }
  .contact-form-wrapper h2 { font-size: 1.8rem; }
  .step-content h3 { font-size: 1.5rem; }
  .why-bannerevent-item h3 { font-size: 1.3rem; }
  .testimonial-card { padding: 25px 20px; }
  .blog-post-card .content { padding: 20px; }
}

@media print {
  * { -webkit-print-color-adjust: exact !important; color-adjust: exact !important; }
  body { font-size: 12pt; line-height: 1.4; }
  .scroll-progress-bar, .floating-contact-btn, .floating-contact-panel, .floating-contact-overlay, #scrollTopProgress, .menu-toggle, .mobile-nav-overlay, .modal-overlay { display: none !important; }
  .site-header { position: static !important; box-shadow: none !important; border-bottom: 1px solid #ddd; }
  .hero { height: auto !important; min-height: 400px !important; page-break-inside: avoid; }
  section { page-break-inside: avoid; padding: 40px 0; }
  .container { max-width: 100% !important; padding: 0 20px !important; }
  .industry-detail-section { padding: 40px 0 !important; }
  h1, h2, h3 { page-break-after: avoid; }
  .btn, .btn-secondary { border: 2px solid var(--color-accent-orange) !important; color: var(--color-accent-orange) !important; background: transparent !important; }
}

/* --- CUSTOM OVERRIDES & REQUESTED STYLES --- */
#qualitaet {
  background-color: var(--color-background-light);
}
#warum-banner-event {
  background-color: var(--color-background-light);
}

/* Styling for dark sections as per request */
#schritte,
#kundenstimmen,
#kontakt {
  background-color: var(--color-primary-blue);
}

/* Text color overrides for dark sections */
#schritte h2, #schritte p, #schritte h3,
#kundenstimmen h2, #kundenstimmen p, #kundenstimmen .section-centered-heading > p,
#kundenstimmen .star-rating + span,
#kundenstimmen .review-text,
#kundenstimmen .author-name,
#kontakt h2,
#kontakt .faq-question,
#kontakt .faq-question i {
  color: var(--color-text-light);
}

#kundenstimmen .author-title,
#kundenstimmen .review-date,
#kontakt .faq-answer p {
  color: rgba(255, 255, 255, 0.8);
}

/* Adjust components on dark backgrounds for better contrast/visibility */
#kundenstimmen .testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

#kundenstimmen .author-avatar {
    background-color: var(--color-accent-orange);
    color: var(--color-primary-blue);
}

#kontakt .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Keep contact form light for readability */
#kontakt .contact-form-wrapper {
  background-color: var(--color-background-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

#kontakt .contact-form-wrapper h2 {
    color: var(--color-accent-orange);
}

#kontakt .contact-form-wrapper label,
#kontakt .contact-form-wrapper input,
#kontakt .contact-form-wrapper textarea {
  color: var(--color-text-dark);
}

#kontakt .contact-form-wrapper .form-group-consent label {
    color: var(--color-text-muted);
}
#kontakt .contact-form-wrapper .form-group-consent label a {
    color: var(--color-primary-blue);
}
#kontakt .contact-form-wrapper input:focus + label, 
#kontakt .contact-form-wrapper input:not(:placeholder-shown) + label, 
#kontakt .contact-form-wrapper textarea:focus + label, 
#kontakt .contact-form-wrapper textarea:not(:placeholder-shown) + label {
  color: var(--color-primary-blue);
}

/* --- FORM ERROR FIELD STYLING --- */
.form-group input.error-field,
.form-group textarea.error-field {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-group input.error-field + label,
.form-group textarea.error-field + label {
    color: #dc3545 !important;
}
.form-group-consent input.error-field + label {
    color: #dc3545 !important;
}
.form-group input:focus + label, 
.form-group input:not(:placeholder-shown) + label, 
.form-group textarea:focus + label, 
.form-group textarea:not(:placeholder-shown) + label { 
  top: -10px; 
  font-size: 0.85rem; 
  color: var(--color-primary-blue);
  font-family: 'Red Hat Display', sans-serif; 
}