﻿/* ===== CSS VARIABLES ===== */
:root {
    /* ===== CULORI PRINCIPALE ===== */
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ff6659;
    --color-whatsapp: #25d366;
    --color-green: #4caf50;
    --color-blue: #1976d2;

    /* ===== CULORI NEUTRE ===== */
    --text-primary: #2c3e50;
    --text-secondary: #555;
    --text-light: #bbb;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);

    /* ===== DIMENSIUNI LAYOUT ===== */
    --header-height: 100px;
    --header-height-mobile: 80px;
    --max-container-width: 1400px;
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;

    /* ===== BREAKPOINTS ===== */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1200px;
    --desktop-xl: 1600px;

    /* ===== EFECTE VISUALE ===== */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 4px 15px rgba(211, 47, 47, 0.3);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;



    /* ===== STRATIFICARE (z-index) ===== */
    --z-base: 1;
    --z-low: 10;
    --z-mid: 100;
    --z-high: 1000;
    --z-header: var(--z-high);             /* 1000 */
    --z-hero-video: calc(var(--z-high) - 5); /* 995 */
    --z-hero-overlay: var(--z-high);       /* 1000 */
    --z-hero-content: calc(var(--z-high) + 1); /* 1001 */
    --z-overlay: 1010;
    --z-modal: 1020;
    --z-tooltip: 1030;
    --z-notification: 1040;

    /* ===== VALORI RGB PENTRU EFECTE ===== */
    --primary-color-rgb: 211, 47, 47;
    --black-rgb: 0, 0, 0;
    --white-rgb: 255, 255, 255;


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
/* ===== TYPOGRAPHY SYSTEM ===== */
/* Font sizes */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

/* Font weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Line heights */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Responsive font sizes */
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: clamp(1.125rem, 1.5vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1vw, 1.125rem); }

p { font-size: clamp(1rem, 1vw, 1.125rem); }
/* Animations for various elements */
/* Keyframes unificate */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes scroll {
  0% { 
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% { opacity: 1; }
  100% { 
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}
/*print.css - Styles for print media */
@media print {
  .hero-video, .swiper-button-next, .swiper-button-prev, .floating-buttons { display:none !important; }
  * { background:transparent !important; color:#000 !important; box-shadow:none !important; }
  a[href]:after{content:" (" attr(href) ")"}
}
/* ===== HEADER STYLES - FINAL CLEAN VERSION ===== */
@import url('../base/variables.css');

.header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(211, 47, 47, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  height: 100px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(211, 47, 47, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.header .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 32px;
  position: relative;
}

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  padding: 0;
  z-index: 1011;
  transition: transform 0.3s ease;
  gap: 8px;
  margin-right: auto;
}

.logo-main {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.logo-text {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo:hover .logo-main,
.logo:hover .logo-text {
  filter: drop-shadow(0 4px 12px rgba(211, 47, 47, 0.2));
}

/* === DESKTOP NAVIGATION === */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  padding: 8px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1005;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  align-items: center;
}

.nav-desktop li {
  position: relative;
}

.nav-desktop a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 25px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: block;
}

.nav-desktop a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-desktop a:hover::before {
  left: 100%;
}

.nav-desktop a:hover {
  color: #d32f2f;
  background: rgba(211, 47, 47, 0.08);
  transform: translateY(-2px);
}

.nav-desktop a.active {
  color: #fff;
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  transform: translateY(-1px);
}

.nav-desktop a.active::before {
  display: none;
}

/* === CTA BUTTON === */
.header .cta-button {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  position: relative;
  z-index: 1006;
  border: 2px solid transparent;
  overflow: hidden;
}

.header .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.header .cta-button:hover::before {
  left: 100%;
}

.header .cta-button:hover {
  background: linear-gradient(135deg, #b71c1c, #8e0000);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

/* === MOBILE NAVIGATION (hidden â‰¥ 992px) === */
.mobile-nav,
.hamburger,
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 991.98px) {
  .nav-desktop,
  .header .cta-button {
    display: none;
  }

  .mobile-nav,
  .hamburger {
    display: block;
  }

  .hamburger {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(211, 47, 47, 0.1);
    border-radius: 12px;
    padding: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .hamburger span {
    position: absolute;
    left: 10px;
    height: 2px;
    width: 24px;
    background: linear-gradient(90deg, #d32f2f, #b71c1c);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(1) { top: 12px; }
  .hamburger span:nth-child(2) { top: 20px; }
  .hamburger span:nth-child(3) { top: 28px; }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-mobile {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 85%;
    max-width: 300px;
    height: calc(100vh - 100px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1008;
    overflow-y: auto;
    border-right: 1px solid rgba(211, 47, 47, 0.1);
  }

  .nav-mobile.active { left: 0; }

  .nav-mobile ul {
    list-style: none;
    padding: 40px 20px;
    margin: 0;
  }

  .nav-mobile li { margin-bottom: 8px; }

  .nav-mobile a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 18px 24px;
    border-radius: 15px;
    transition: all 0.3s ease;
  }

  .nav-mobile a:hover {
    color: #d32f2f;
    background: rgba(211, 47, 47, 0.08);
    transform: translateX(10px);
  }

  .nav-mobile a.active {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1007;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  .header { height: 80px; }
  .nav-mobile { top: 80px; height: calc(100vh - 80px); }
  .header.scrolled { height: 70px; }
  .logo-main, .logo-text { max-height: 40px; }
  .header.scrolled .logo-main,
  .header.scrolled .logo-text { max-height: 35px; }
}

@media (max-width: 600px) {
  .header .container { padding: 0 15px; }
  .nav-mobile { width: 90%; }
  .nav-mobile a {
    font-size: 16px;
    padding: 14px 20px;
  }
  .logo-main, .logo-text { max-height: 35px; }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.nav-mobile.active ul { animation: fadeInUp 0.6s ease; }
.nav-mobile.active li {
  animation: slideInLeft 0.5s ease;
  animation-fill-mode: both;
}
.nav-mobile.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile.active li:nth-child(2) { animation-delay: 0.2s; }
.nav-mobile.active li:nth-child(3) { animation-delay: 0.3s; }
.nav-mobile.active li:nth-child(4) { animation-delay: 0.4s; }
.nav-mobile.active li:nth-child(5) { animation-delay: 0.5s; }

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.nav-desktop a:focus-visible,
.nav-mobile a:focus-visible,
.hamburger:focus-visible {
  outline: 2px solid #d32f2f;
  outline-offset: 2px;
}

/* === PRINT === */
@media print {
  .header { position: static; box-shadow: none; background: white; }
  .nav-desktop a, .nav-mobile a { color: black !important; }
}
/* ==========================================================================
   CINEMATIC CAROUSEL - Enhanced Version
========================================================================== */

.cinematic-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.videoProjectsSwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Enhanced Video Container */
.video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.05);
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1) saturate(1.2);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .bg-video {
  animation: cinematicZoom 15s ease-in-out infinite alternate;
}

@keyframes cinematicZoom {
  0% { 
    transform: translate(-50%, -50%) scale(1.05);
    filter: brightness(0.6) contrast(1.1) saturate(1.2);
  }
  100% { 
    transform: translate(-50%, -50%) scale(1.15);
    filter: brightness(0.7) contrast(1.2) saturate(1.3);
  }
}

/* Enhanced Video Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(211, 47, 47, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0.9;
}

/* Enhanced Slide Overlay */
.slide-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.slide-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.content-wrapper {
  color: white;
  max-width: 600px;
}

/* Enhanced Project Tag */
.project-tag {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.project-tag:hover {
  background: linear-gradient(135deg, 
    rgba(211, 47, 47, 0.3) 0%,
    rgba(211, 47, 47, 0.1) 100%
  );
  transform: translateY(-2px);
}

.project-tag i {
  font-size: 1rem;
}

/* Enhanced Project Title */
.project-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

/* Enhanced Project Description */
.project-desc {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.9;
}

.location {
  position: relative;
  padding-left: 1.5rem;
}

.location::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #d32f2f;
  border-radius: 50%;
}

.year {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Project Stats */
.project-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #d32f2f;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Enhanced Button */
.btn-explore {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 8px 30px rgba(211, 47, 47, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-explore::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff4444 0%, #d32f2f 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-explore:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(211, 47, 47, 0.6),
    0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-explore:hover::before {
  opacity: 1;
}

.btn-explore span,
.btn-explore i {
  position: relative;
  z-index: 1;
}

.btn-explore i {
  transition: transform 0.3s ease;
}

.btn-explore:hover i {
  transform: translateX(4px);
}

/* Decorative Elements */
.slide-decorations {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.geometric-shape {
  position: absolute;
  background: linear-gradient(135deg, 
    rgba(211, 47, 47, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
   border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 8%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 70%;
  animation-delay: 8s;
}

@keyframes particleFloat {
  0% { 
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
  }
  100% { 
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}

/* Enhanced Navigation */
.carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 20;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  color: white;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, 
    rgba(211, 47, 47, 0.3) 0%,
    rgba(211, 47, 47, 0.1) 100%
  );
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
}

.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Enhanced Pagination */
.carousel-pagination {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.swiper-pagination {
  display: flex;
  gap: 1rem;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #d32f2f;
  border-color: #d32f2f;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(211, 47, 47, 0.6);
}

.pagination-progress {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #d32f2f, #ff4444);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 1px;
}

/* Autoplay Progress Circle */
.swiper-autoplay-progress {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  z-index: 20;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.swiper-autoplay-progress:hover {
  opacity: 1;
}

.swiper-autoplay-progress svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.swiper-autoplay-progress circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 20;
  color: white;
  font-family: 'Roboto Mono', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-slide {
  color: #d32f2f;
  font-weight: 800;
}

.divider {
  margin: 0 8px;
  opacity: 0.5;
}

.total-slides {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
}

@media (max-width: 768px) {
  .slide-overlay {
    padding: 0 1rem;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
  
  .project-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 0.75rem;
  }
  
  .project-desc {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .project-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .btn-explore {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  
  .carousel-navigation {
    padding: 0 1rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .slide-counter,
  .swiper-autoplay-progress {
    top: 1rem;
  }
  
  .slide-counter {
    left: 1rem;
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  
  .swiper-autoplay-progress {
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  
  .geometric-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .cinematic-carousel {
    min-height: 500px;
  }
  
  .project-tag {
    padding: 8px 16px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .carousel-pagination {
    bottom: 2rem;
  }
  
  .floating-particles {
    display: none;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  
  .project-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
}


/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
  .bg-video,
  .slide-content *,
  .geometric-shape,
  .particle,
  .swiper-autoplay-progress circle {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  
  .btn-explore:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .video-overlay {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .project-tag,
  .swiper-button-next,
  .swiper-button-prev {
    border-width: 2px;
    border-color: white;
  }
}

/* Print styles */
@media print {
  .cinematic-carousel {
    display: none;
  }
}

/* Loading state */
.cinematic-carousel.loading {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cinematic-carousel.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(211, 47, 47, 0.3);
  border-top: 3px solid #d32f2f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Focus styles for accessibility */
.btn-explore:focus,
.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-pagination-bullet:focus {
  outline: 2px solid #d32f2f;
  outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   PERFORMANCE & LOADING OPTIMIZATIONS
========================================================================== */

/* Critical CSS for above-the-fold content */
.cinematic-carousel {
  content-visibility: auto;
  contain-intrinsic-size: 100vh;
}

/* Optimize video rendering */
.bg-video {
  will-change: transform, filter;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* GPU acceleration for animations */
.slide-content,
.geometric-shape,
.particle,
.btn-explore {
  will-change: transform;
  transform: translateZ(0);
}

/* Optimize backdrop-filter performance */
.project-tag,
.swiper-button-next,
.swiper-button-prev {
  contain: layout style paint;
}

/* Loading skeleton */
.cinematic-carousel.loading .swiper-slide {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.1) 25%,
    rgba(255,255,255,0.2) 50%,
    rgba(255,255,255,0.1) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Preload critical resources */
.cinematic-carousel::before {
  content: '';
  position: absolute;
  top: -9999px;
  left: -9999px;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"/></svg>');
}

/* Optimize for different screen densities */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .project-tag,
  .btn-explore {
    border-width: 0.5px;
  }
}

/* Container queries for responsive design */
@container (max-width: 768px) {
  .slide-content {
    grid-template-columns: 1fr;
  }
}
/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 0;
    margin-top: 50px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.footer-column i {
    margin-right: 10px;
    width: 16px;
    color: #3498db;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.copyright {
    background-color: #1a252f;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #34495e;
}

.copyright p {
    margin: 0;
    font-size: 0.9em;
    color: #bdc3c7;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.main-button:hover {
    background-color: #2980b9;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.6);
}

.sub-buttons {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-buttons:hover .sub-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sub-button:nth-child(1) {
    background-color: #27ae60;
}

.sub-button:nth-child(2) {
    background-color: #25d366;
}

.sub-button:nth-child(3) {
    background-color: #e74c3c;
}

.sub-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column {
        min-width: auto;
        margin-bottom: 25px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .main-button {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .sub-button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
    }
    
    .footer .container {
        padding: 0 15px;
    }
    
    .footer-column p {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-column i {
        margin-bottom: 5px;
    }
}
/* butons*/
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.9rem 2rem;border:none;border-radius:12px;font-size:1rem;font-weight:600;
  cursor:pointer;transition:all .3s ease;text-decoration:none;min-height:44px;
}
/* Variante */
.btn--primary{
  background:linear-gradient(135deg,var(--primary-color) 0%,var(--primary-dark) 100%);
  color:#fff;box-shadow:0 4px 15px rgba(211,47,47,.3);
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(211,47,47,.4)}
.btn--outline{
  background:transparent;border:2px solid var(--primary-color);color:var(--primary-color);
}
.btn--outline:hover{background:var(--primary-color);color:#fff}
/* Mobile First Approach */
@media (max-width: var(--mobile)) {
  /* Mobile styles */
  .hero-content h1 { font-size: 2rem; }
  .service-card { padding: 1.5rem; }
}

@media (min-width: calc(var(--mobile) + 1px)) and (max-width: var(--tablet)) {
  /* Tablet styles */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: calc(var(--tablet) + 1px)) and (max-width: 1200px) {
  /* Desktop small styles */
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1201px) {
  /* Desktop large styles */
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
/* ===== ACCESSIBILITY UTILITIES ===== */

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  * {
    border-color: #000 !important;
  }
  
  .btn {
    border: 2px solid currentColor !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .no-print { display: none !important; }
  
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}
/* Base styles */
@import url('base/variables.css');
@import url('base/reset.css');
@import url('base/typography.css');
@import url('base/animations.css');


@import url('base/variables.css');
@import url('base/animations.css');
@import url('components/header.css');
@import url('components/carousel.css');
@import url('components/footer.css');
@import url('components/buttons.css');
@import url('utilities/responsive.css');
/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    overflow-x: hidden;
}


/* ===== HERO SECTION FUNCÈšIONALÄ‚ ===== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height); /* Compensare pentru header */
  box-sizing: border-box;
  background: #000; /* Fallback pentru video */
   contain: layout paint;      /* isolate layout */
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;               /* ensures no 0-height flash */
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: var(--z-hero-content);
  text-align: center;
  max-width: 1200px;
  min-height: 60vh; 
  width: 90%;
  padding: 2rem;
  color: white;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
  line-height: 1.3;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-normal);
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  opacity: 0;
  min-height: 3rem;       
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-hero-content);
  animation: scroll 2s infinite;
  width: 30px;
  height: 50px;
  border-radius: 15px;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.scroll-indicator span {
  display: block;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}

/* AnimaÈ›ii specifice hero */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll {
  0% {
    opacity: 0.5;
    transform: translateY(0) translateX(-50%);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px) translateX(-50%);
  }
  100% {
    opacity: 0.5;
    transform: translateY(0) translateX(-50%);
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 1.4rem;
  }
  
  .trust-badges {
    gap: 0.8rem;
  }
  
  .trust-badges span {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
}


/* QUICK SERVICES - ENHANCED */ 
.quick-services {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d32f2f" opacity="0.05"/></svg>') repeat; /* Culoare unificatÄƒ */
    background-size: 50px 50px;
    z-index: 0;
}

.section-header {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 3.5rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.quick-services h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 1.2rem;
    color: #2B2B2B;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.quick-services h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.quick-services .subheading {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #555;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.btn-container {
    margin: 0 0 3rem;
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px; /* Unificat */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: clamp(1.05rem, 1.8vw, 1.15rem);
    letter-spacing: 0.5px;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    border-color: transparent;
}

.btn-secondary:hover::before {
    width: 100%;
}

.services-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.6s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(211, 47, 47, 0.1); /* Culoare unificatÄƒ */
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.5s; }

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

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: height 0.5s ease;
    z-index: -1;
    opacity: 0.95;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover i,
.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}

.service-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover i {
    transform: scale(1.15) rotate(5deg);
    -webkit-text-fill-color: #fff;
}

.service-card h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    margin-bottom: 1.2rem;
    color: #2B2B2B;
    transition: color 0.4s ease;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: #666;
    line-height: 1.7;
    transition: color 0.4s ease;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid transparent;
}

.card-link i {
    font-size: 1.1rem;
    margin-left: 0.5rem;
    margin-bottom: 0;
    color: inherit;
    transition: transform 0.3s ease;
}

.service-card:hover .card-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover .card-link i {
    transform: translateX(4px);
}

/* ANIMATION ENHANCEMENTS */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* FOCUS STATES FOR ACCESSIBILITY */
.btn-secondary:focus,
.card-link:focus {
    outline: 3px solid rgba(193, 39, 45, 0.5);
    outline-offset: 2px;
}

/* PROJECTS CAROUSEL */
.projects-carousel-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.projects-carousel-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2B2B2B;
}

.projectsSwiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    height: 500px;
}

.swiper-slide img,
.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 30px 20px 20px;
    text-align: left;
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.project-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #C1272D;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .swiper-slide {
        height: 300px;
    }
}

/* ABOUT SHORT SECTION */
.about-short {
    position: relative;
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
}

/* Background imagine + overlay */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/team-hero.webp') center/cover no-repeat;
    z-index: -2;
}

.about-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* overlay mai pronunÈ›at pentru lizibilitate */
    z-index: -1;
}

/* Container + content */
.about-short .container {
    padding-bottom: 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: silver
}

.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #C1272D;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-content h2 { font-size: 1.8rem; }
    .about-content p  { font-size: 1rem; }
}
@import url('base/variables.css');
@import url('base/animations.css');
.about-hero {
    background-image: url('../img/storm-damage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* sau altÄƒ culoare care se vede pe imagine */
    position: relative;
    padding: 80px 20px; /* ajusteazÄƒ dupÄƒ preferinÈ›Äƒ */
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* overlay semi-transparent pentru lizibilitate */
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}
.about-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-hero .lead {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

.about-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    color: #333;
}

.about-content h2 {
    color: #d32f2f;
    margin-top: 40px;
}

.highlight-box {
    background-color: #fff3f3;
    border-left: 5px solid #d32f2f;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.services-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cta-section {
    margin-top: 60px;
    text-align: center;
}

.btn-primary {
    background-color: #d32f2f;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #b71c1c;
}
/* ===== CONTACT PAGE STYLES ===== */
@import url('base/variables.css');
@import url('base/animations.css');
/* Hero Section - Small variant */
.hero--small {
    height: 60vh;
    min-height: 400px;
    scroll-margin-top: 100px;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.7);
    transition: filter 0.6s ease;
}

.hero:hover .hero__bg {
    filter: brightness(0.8);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__overlay h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    line-height: 1.2;
}

/* Quick Contact Section */
.quick-contact {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.quick-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d32f2f" opacity="0.03"/></svg>') repeat;
    background-size: 50px 50px;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

.quick-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(211, 47, 47, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quick-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.quick-card:hover::before {
    height: 100%;
}

.quick-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.quick-card:hover i {
    color: #fff;
    transform: scale(1.1);
}

.quick-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    transition: color 0.4s ease;
}

.quick-card span {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.4s ease;
}

/* Form Section */
.form-section {
    padding: 6rem 1.5rem;
    background: #fff;
}

.form-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #2B2B2B;
    font-weight: 700;
    position: relative;
}

.form-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.form-section form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-section label {
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

.form-section input,
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

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

.gdpr {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 2rem 0;
}

.gdpr input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.gdpr a {
    color: var(--primary-color);
    text-decoration: none;
}

.gdpr a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn--small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.form-msg {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-msg.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-msg.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}
/* Map Info Section */
.map-info {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.map-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.address {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.address h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2B2B2B;
    font-weight: 700;
}

.address p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.address table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

.address table tr {
    border-bottom: 1px solid #e9ecef;
}

.address table td {
    padding: 0.8rem 0;
    font-size: 1rem;
}

.address table td:first-child {
    font-weight: 600;
    color: #333;
    width: 30%;
}

.address table td:last-child {
    color: #666;
}

.address em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 1.5rem;
    background: #fff;
}

.faq h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #2B2B2B;
    font-weight: 700;
    position: relative;
}

.faq h2::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.faq details {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq details:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq details[open] {
    background: #fff;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.2);
}

.faq summary {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq summary:hover {
    color: var(--primary-color);
    background: rgba(211, 47, 47, 0.05);
}

.faq details p {
    padding: 0 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    padding: 1.5rem 0;
    position: sticky;
    bottom: 0;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.emergency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.emergency-banner i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

.emergency-banner span {
    font-size: 1.1rem;
    font-weight: 600;
}

.emergency-banner .btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.emergency-banner .btn:hover {
    background: #fff;
    color: #ff6b6b;
    transform: translateY(-2px);
}

/* Extras Section */
.extras {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.download-box,
.newsletter-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.download-box:hover,
.newsletter-box:hover {
    transform: translateY(-5px);
}

.download-box h3,
.newsletter-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2B2B2B;
    font-weight: 700;
}

.download-box p,
.newsletter-box p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-box form {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.newsletter-box input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 992px) {
    .hero--small {
        height: 50vh;
        min-height: 350px;
    }
    
    .quick-contact {
        padding: 3rem 1rem;
    }
    
    .form-section {
        padding: 4rem 1rem;
    }
    
    .form-section form {
        padding: 2rem;
    }
    
    .map-info {
        padding: 4rem 1rem;
    }
    
    .faq {
        padding: 4rem 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero--small {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero__overlay h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-card {
        padding: 2rem 1.5rem;
    }
    
    .form-section form {
        padding: 1.5rem;
    }
    
    .map-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .address {
        padding: 2rem;
    }
    
    .faq summary {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq summary::after {
        right: 1.5rem;
    }
    
    .faq details p {
        padding: 0 1.5rem 1.5rem;
    }
    
    .emergency-banner .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-box form {
        flex-direction: column;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero--small {
        height: 35vh;
        min-height: 250px;
    }
    
    .quick-contact {
        padding: 2.5rem 1rem;
    }
    
    .quick-card {
        padding: 1.8rem 1.2rem;
    }
    
    .quick-card i {
        font-size: 2.5rem;
    }
    
    .form-section {
        padding: 3rem 1rem;
    }
    
    .form-section form {
        padding: 1.2rem;
    }
    
    .address {
        padding: 1.5rem;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .download-box,
    .newsletter-box {
        padding: 2rem;
    }
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.quick-card:focus,
.btn:focus,
.map-link:focus,
.faq summary:focus {
    outline: 3px solid rgba(211, 47, 47, 0.5);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .quick-card,
    .form-section form,
    .address,
    .faq details {
        border: 2px solid #333;
    }
    
    .btn--primary {
        border: 2px solid #000;
    }
}

/* Print Styles */
@media print {
    .emergency-banner,
    .extras {
        display: none !important;
    }
    
    .hero--small {
        height: auto;
        background: #f0f0f0;
    }
    
    .hero__bg {
        display: none;
    }
    
    .hero__overlay {
        background: none;
        position: static;
    }
    
    .hero__overlay h1 {
        color: #000;
    }
    
    .quick-card,
    .form-section form,
    .address {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
/* ---------- VARIABLES (se potriveÈ™te cu services.css) ---------- */
:root{
  --primary:#d32f2f;
  --primary-dark:#b71c1c;
  --radius:12px;
  --shadow:0 4px 15px rgba(0,0,0,.1);
  --shadow-lg:0 8px 25px rgba(0,0,0,.15);
  --max-width:1200px;
}

/* ---------- RESET ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{min-height:100vh;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;line-height:1.5;color:#222;background:#fff}
img{display:block;max-width:100%;height:auto}

/* ---------- HERO ---------- */
.projects-hero{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  padding:80px 1rem;
  text-align:center;
}
.projects-hero h1{font-size:clamp(2rem,5vw,3rem);margin-bottom:.5rem;font-weight:700}
.projects-hero p{font-size:clamp(1rem,2.5vw,1.2rem);opacity:.9;max-width:600px;margin:0 auto}

/* ---------- GRID ---------- */
.projects-grid{padding:60px 1rem;background:#f8f9fa}
.projects-grid .container{max-width:var(--max-width);margin:0 auto}
#gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:30px;
}
.project-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:all .3s ease;
  background:#fff;
  cursor:pointer;
}
.project-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.project-card img{width:100%;height:250px;object-fit:cover;transition:transform .3s}
.project-card:hover img{transform:scale(1.05)}
.overlay{
  position:absolute;inset:auto 0 0 0;
  background:linear-gradient(transparent,rgba(0,0,0,.8));
  color:#fff;padding:20px;
  transform:translateY(100%);
  transition:transform .3s;
}
.project-card:hover .overlay{transform:translateY(0)}
.overlay span{font-size:1.1rem;font-weight:600}

/* ---------- LOADER / NO-PROJECTS ---------- */
#loader,.no-projects{text-align:center;padding:2rem 1rem;color:#666}
#loader p{font-size:1.1rem;font-weight:500}
#loader::before{
  content:"";
  display:inline-block;
  width:20px;height:20px;
  border:2px solid #f3f3f3;
  border-top:2px solid var(--primary);
  border-radius:50%;
  animation:spin 1s linear infinite;
  margin-right:.5rem;
  vertical-align:middle;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------- LIGHTBOX ---------- */
.modal{
  display:none;position:fixed;inset:0;
  background:rgba(0,0,0,.9);backdrop-filter:blur(5px);
  z-index:var(--z-modal);align-items:center;justify-content:center;
}
.modal.show{display:flex}
.modal img{max-width:90%;max-height:80%;border-radius:var(--radius);box-shadow:0 4px 20px rgba(0,0,0,.5)}
.close,.arrow{
  position:absolute;color:#fff;border:none;
  background:rgba(0,0,0,.4);cursor:pointer;
  transition:all .3s;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.close{top:20px;right:20px;font-size:2rem;width:50px;height:50px}
.arrow{top:50%;transform:translateY(-50%);font-size:1.5rem;padding:1rem}
.arrow.left{left:20px}
.arrow.right{right:20px}
.close:hover,.arrow:hover{background:rgba(0,0,0,.7);transform:translateY(-50%) scale(1.1)}
#modalCaption{color:#fff;text-align:center;padding:1rem;font-weight:500;font-size:1.1rem}

/* ---------- RESPONSIVE ---------- */
@media(max-width:768px){
  #gallery{grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:20px}
  .project-card img{height:200px}
  .close,.arrow{width:40px;height:40px;font-size:1.3rem}
}
@media(max-width:480px){
  #gallery{grid-template-columns:1fr;gap:15px;padding:0 15px}
  .project-card img{height:180px}
}
:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --primary-light: #ff6659;
  --bg-light: #f8f9fa;
  --text-dark: #2b2b2b;
  --text-medium: #555;
  --text-light: #666;
  --border-light: #f0f0f0;
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 25px rgba(0,0,0,0.2);
  --shadow-primary: 0 4px 15px rgba(211,47,47,0.3);
  --shadow-primary-hover: 0 8px 25px rgba(211,47,47,0.4);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-full: 50px;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-smooth: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --font-weight-black: 800;
}

/* ---------- RESET & GLOBAL ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--white);
}

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

/* ---------- CONTAINERS & GRIDS ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

/* ---------- HERO ---------- */
.hero--small {
  position: relative;
  height: 40vh;
  min-height: 280px;
  max-height: 400px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.6);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 1rem;
}
.hero__overlay h1 {
  font-size: clamp(1.5rem, 6vw, 3rem);
  margin: 0 0 .5rem;
  font-weight: var(--font-weight-black);
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}
.hero__overlay p {
  font-size: clamp(.9rem, 3vw, 1.4rem);
  max-width: 90%;
  margin: 0 auto;
}

/* ---------- SERVICE NAV ---------- */
.service-nav {
  background: var(--white);
  padding: .5rem 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--primary);
}
.service-nav .container {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 .5rem;
}
.service-nav .container::-webkit-scrollbar { display: none; }
.service-nav a {
  flex: 0 0 auto;
  padding: .5rem .8rem;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.service-nav a:hover,
.service-nav a:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

/* ---------- SERVICE SECTIONS ---------- */
.service-detail {
  padding: 2rem .5rem;
}
.service-detail.alt {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

/* ---------- TYPOGRAPHY ---------- */
.service-detail h2 {
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  margin-bottom: .8rem;
  text-align: center;
  position: relative;
  color: var(--text-dark);
}
.service-detail h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 2px;
}
.service-detail h3 {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-dark);
}
.service-detail p {
  font-size: clamp(.9rem, 3vw, 1.1rem);
  color: var(--text-medium);
  margin-bottom: 1rem;
}

/* ---------- LISTS ---------- */
.service-detail ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.service-detail ul li {
  position: relative;
  padding: .4rem 0 .4rem 1.8rem;
  font-size: clamp(.85rem, 2.5vw, 1rem);
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}
.service-detail ul li:last-child { border: none; }
.service-detail ul li::before {
  content: "âœ“";
  position: absolute;
  left: 0; top: .4rem;
  width: 1.2rem; height: 1.2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: var(--font-weight-bold);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: clamp(.85rem, 2.5vw, 1rem);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 44px;
  max-width: 280px;
  margin: 1rem auto;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary-hover);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ---------- SWIPER SHARED ---------- */
.swiper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.swiper-slide img,
.swiper-slide video {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}
.swiper-pagination-bullet-active { background: var(--primary); }
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  background: rgba(255,255,255,.95);
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px; font-weight: bold; }

/* ---------- VIDEO-THUMB MÄ‚RIT ---------- */
.video-thumb {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
  aspect-ratio: 16 / 9;
}
.video-thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary-hover);
}
.video-thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
  transition: opacity .3s ease;
}
.video-thumb:hover .play-icon { opacity: 0; }

/* ---------- SWIPER GALLERIES ---------- */
/* Neueindeckung */
.neueindeckung-swiper .swiper-slide img {
  max-height: 250px;
}
/* Gauben */
.gauben-swiper .swiper-slide img {
  max-height: 240px;
}
/* Zimmermann */
.zimmermann-swiper .swiper-slide img {
  max-height: 230px;
}
/* Klempner */
.klempner-swiper .swiper-slide img {
  max-height: 220px;
}

/* ---------- INTRO TEXT BLOCKS ---------- */
.intro-block {
  max-width: 860px;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  text-align: center;
}
.intro-block h3 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--primary);
  margin-bottom: 1rem;
}
.intro-block p {
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  line-height: 1.7;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .service-detail h2 { text-align: left; }
  .service-detail h2::after { left: 0; transform: none; }
}

@media (min-width: 1024px) {
  .swiper-slide img,
  .swiper-slide video {
    max-height: 320px;
  }
}

/* ---------- PRINT ---------- */
@media print {
  .service-nav,
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination,
  .btn { display: none !important; }
  .service-detail { padding: .5rem 0; page-break-inside: avoid; }
  .swiper-slide img { height: auto; }
}

/* ---------- DARK MODE ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --bg-light: #2d2d2d;
    --text-dark: #ffffff;
    --text-medium: #cccccc;
    --text-light: #aaaaaa;
    --border-light: #404040;
  }
  .service-detail.alt {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  }
}

/* ---------- UTILITY ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mt-1 { margin-top: 1rem; }
/* ===== VIDEO GRID ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  justify-items: center;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  background: #000;
}

.video-thumb:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary-hover);
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(211, 47, 47, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all var(--transition);
}

.video-thumb:hover .play-icon {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  }
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.benefit-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.benefit-item h4 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: var(--primary);
}
.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ===== VIDEO GRID (ajustat pentru mobil frumos) ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  justify-items: center;
  align-items: center; /* Centrare verticalÄƒ */
  justify-content: center; /* Centrare orizontalÄƒ */
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); /* 1-2 coloane pe mobil mic, thumbs mici dar grid-like */
    gap: 1rem; /* Gap redus pentru compactitate */
    padding: 0 0.5rem;
  }
  .video-thumb {
    border-radius: var(--radius); /* Radius mai mic pe mobil */
  }
  .play-icon {
    width: 40px; height: 40px; /* Icon mai mic pe mobil */
    font-size: 1.2rem;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* 2 coloane pe mobil mare/landscape */
    gap: 1.2rem;
  }
}

/* ===== BENEFITS GRID (ajustat pentru mobil) ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* 2 coloane pe mobil pentru aspect frumos */
    gap: 0.8rem;
  }
  .benefit-item {
    padding: 0.8rem; /* Padding redus pe mobil */
  }
  .benefit-icon {
    font-size: 1.8rem; /* Icon puÈ›in mai mic */
  }
}


/* ===== ANTIKONDENSATIONSFILZ SECTION ===== */
.antikondensation-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.antikondensation-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.antikondensation-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.company-statement {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}

.company-statement p {
  margin: 0;
  font-weight: var(--font-weight-medium);
  color: var(--primary);
}

.services-2025 {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}

.services-list-2025 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.services-list-2025 li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.services-list-2025 li:last-child {
  border-bottom: none;
}

.services-list-2025 li::before {
  content: "ðŸ”§";
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 1rem;
}

.services-list-2025 li:hover {
  color: var(--primary);
  padding-left: 2.2rem;
}

/* Asbest Section */
.asbest-section {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
}

.asbest-content {
  max-width: 900px;
  margin: 0 auto;
}

.asbest-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.asbest-warning {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.asbest-warning h4 {
  color: #856404;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.asbest-warning p {
  color: #856404;
  margin: 0;
  line-height: 1.6;
}

.asbest-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.fact-icon {
  font-size: 2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.fact-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.fact-content p {
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

.asbest-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2rem;
}

.asbest-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.asbest-cta .btn {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.asbest-cta .btn:hover {
  background: transparent;
  color: var(--white);
}

/* Responsive Design */
@media (min-width: 768px) {
  .services-list-2025 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .asbest-facts {
    grid-template-columns: 1fr;
  }
  
  .asbest-section {
    padding: 4rem 3rem;
  }
}

@media (min-width: 1024px) {
  .antikondensation-image img {
    max-height: 500px;
  }
}


/* ---------- MATERIAL CHOOSER ---------- */
.material-chooser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.material-chooser input[type="radio"] {
  display: none;
}

.material-chooser label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}

.material-chooser label:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.material-chooser input[type="radio"]:checked + label {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.material-chooser label img {
  width: 100%;
  max-width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}
.blog-list, .blog-post {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.blog-list article { margin-bottom: 2rem; border-bottom: 1px solid #eee; }
.blog-list h2 { margin: 0 0 .25rem; }
.blog-list time { font-size: .9rem; color: #666; }
.blog-post .content { line-height: 1.7; margin-top: 1rem; }