
/* ============================================= */
/* VENTILATION & PLÅTSLAGARE SPECIFIC STYLES */
/* ============================================= */

/* Industry-Specific Hero Sections */
.industry-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  
  .industry-hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .industry-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }
  
  .industry-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }
  
  /* Video Background Styles */
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 22%);

    z-index: 2;
  }
  
  /* Industry-Specific Service Cards */
  .industry-services .service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
  }
  
  .industry-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 168, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 2rem;
  }
  
  .service-features {
    list-style: none;
    margin-top: 20px;
    text-align: left;
  }
  
  .service-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }
  
  .service-features i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 0.9rem;
  }
  
  /* Certification/Materials Grid */
  .certification-grid,
  .materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .certification-grid img {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .certification-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
  }
  
  .material-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .material-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .material-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .material-card h3 {
    padding: 15px 20px 0;
    color: var(--primary);
  }
  
  .material-card p {
    padding: 0 20px 20px;
    color: var(--gray);
    font-size: 0.95rem;
  }
  
  /* Industry-Specific Project Cards */
  .industry-projects .project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
  }
  
  .industry-projects .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .industry-projects .project-card:hover img {
    transform: scale(1.05);
  }
  
  .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
  }
  
  .project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
  }
  
  .project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .project-link {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
  }
  
  /* Industry-Specific Contact Cards */
  .industry-contact .contact-card {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .industry-contact .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  

  
  .contact-department {
    display: inline-block;
    background: rgba(0, 95, 135, 0.1);
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 10px 0;
  }
  
  .contact-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--primary);
  }
  
  /* Page-Specific Color Schemes */
  .ventilation-page {
    --primary: #005F87; /* Deep blue for ventilation */
    --accent: #00A8E8; /* Light blue accent */
  }
  
  .platslagare-page {
    --primary: #8B5A2B; /* Bronze for plåtslagare */
    --accent: #DAA520; /* Gold accent */
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .industry-hero {
      min-height: 600px;
    }
    
    .industry-hero p {
      font-size: 1.2rem;
    }
    
    .industry-contact .contact-card {
      flex-direction: column;
      text-align: center;
    }
    
    .contact-image-wrapper {
      margin: 0 auto;
    }
    
    .certification-grid,
    .materials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .certification-grid,
    .materials-grid {
      grid-template-columns: 1fr;
    }
    
    .industry-hero h1 {
      font-size: 2rem;
    }
    
    .industry-hero p {
      font-size: 1.1rem;
    }
  }