/**
 * HOMEPAGE V4.0 FINAL - NIVEAU MONDIAL
 * Fabre Métal Construction
 * - Full Width Layout
 * - Hero Ultra-Moderne
 * - Effets Parallaxe
 * - Vidéo Background
 * - Responsive Parfait
 */

/* ============================================
   RESET ET BASE
   ============================================ */

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

.site-main-fullwidth {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container-fullwidth {
  width: 100%;
  max-width: 2400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ============================================
   HERO SECTION ULTRA-MODERNE
   ============================================ */

.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  padding-top: 140px; /* Padding pour le badge */
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 15, 30, 0.95) 0%,
    rgba(0, 30, 60, 0.85) 50%,
    rgba(0, 15, 30, 0.95) 100%
  );
}

/* Particles Background */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Hero Content */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.hero-content-inner {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.2s both;
}

.hero-badge svg {
  stroke-width: 2;
}

/* Title */
.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #ffffff;
}

.hero-title-line {
  display: block;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease 0.6s both, shimmer 3s ease-in-out infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 20px;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.8s both;
}

/* Description */
.hero-description {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 1s both;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease 1.2s both;
}

.btn-primary-hero,
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: #000f1e;
  border: none;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary-hero:hover::before {
  left: 100%;
}

.btn-primary-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.btn-secondary-hero {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.4s both;
}

.hero-stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.6s both;
  z-index: 10;
}

.scroll-mouse {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #d4af37;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.5; }
}

/* ============================================
   SÉPARATEURS PARALLAXE
   ============================================ */

.section-separator {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-1px);
}

.section-separator svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  color: #f8f9fa;
}

.parallax-separator {
  transition: transform 0.1s ease-out;
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */

section {
  position: relative;
  padding: 120px 0;
  background: #f8f9fa;
}

.section-header-center,
.section-header-left {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-left {
  text-align: left;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: #d4af37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge-light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #001f3f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title-light {
  color: #ffffff;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   À PROPOS SECTION
   ============================================ */

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-paragraph {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-paragraph strong {
  color: #001f3f;
  font-weight: 700;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  font-weight: 600;
  color: #001f3f;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(8px);
}

.feature-item svg {
  color: #d4af37;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.about-image-item:hover {
  transform: translateY(-10px);
}

.about-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-1 {
  grid-column: 1 / 2;
  height: 300px;
}

.about-image-2 {
  grid-column: 2 / 3;
  height: 300px;
  margin-top: 40px;
}

/* ============================================
   VISION & MISSION SECTION
   ============================================ */

.vision-mission-section {
  background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.vm-card {
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: all 0.4s ease;
}

.vm-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vm-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.1));
  border-radius: 20px;
  margin-bottom: 30px;
  color: #d4af37;
}

.vm-icon svg {
  stroke-width: 2;
}

.vm-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.vm-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.vm-text strong {
  color: #d4af37;
  font-weight: 700;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.expertise-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.expertise-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.expertise-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.expertise-card:hover .expertise-image img {
  transform: scale(1.1);
}

.expertise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 31, 63, 0.8) 100%);
}

.expertise-content {
  padding: 40px 30px;
}

.expertise-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #ffd700);
  border-radius: 16px;
  margin-bottom: 24px;
  color: #000f1e;
}

.expertise-icon svg {
  stroke-width: 2;
}

/* ÉTAT NORMAL : Texte gris/noir lisible */
.expertise-title {
  font-size: 24px;
  font-weight: 800;
  color: #333 !important;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.expertise-text {
  font-size: 15px !important;
  line-height: 1.7;
  color: #555 !important;
  transition: color 0.3s ease;
}

.expertise-text strong {
  color: #001f3f !important;
  font-weight: 700;
  transition: color 0.3s ease;
}

/* ÉTAT HOVER (Cover) : Texte BLANC */
.expertise-card:hover .expertise-title {
  color: #ffffff !important;
}

.expertise-card:hover .expertise-text {
  color: #f0f0f0 !important;
}

.expertise-card:hover .expertise-text strong {
  color: #ffffff !important;
}

/* ============================================
   MÉTAUX SECTION AVEC VIDÉO
   ============================================ */

.metals-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.metals-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.metals-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.metals-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 15, 30, 0.9), rgba(0, 31, 63, 0.85));
}

.metals-content {
  position: relative;
  z-index: 10;
}

.metals-text-content {
  max-width: 800px;
}

.metals-paragraph {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.metals-paragraph strong {
  color: #d4af37;
  font-weight: 700;
}

.btn-light-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
  color: #d4af37;
  transform: translateX(8px);
}

/* ============================================
   CLIENTS SECTION
   ============================================ */

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.client-logo-item {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
  border-radius: 14px;
  color: #d4af37;
  margin-bottom: 16px;
}

.contact-info-icon svg {
  stroke-width: 2;
}

.contact-info-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.contact-info-card a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #001f3f;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  color: #001f3f;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.btn-primary-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #d4af37, #ffd700);
  border: none;
  border-radius: 50px;
  color: #000f1e;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Ultra Large Desktops 26 inch (2560px+) */
@media (min-width: 2560px) {
  .container-fullwidth {
    max-width: 2400px;
    padding: 0 100px;
  }
  
  .hero-content-wrapper {
    max-width: 1600px;
  }
}

/* Large Desktops (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  .container-fullwidth {
    max-width: 1800px;
    padding: 0 80px;
  }
}

/* Desktops (1200px - 1919px) */
@media (max-width: 1919px) and (min-width: 1200px) {
  .container-fullwidth {
    max-width: 1400px;
    padding: 0 50px;
  }
}

/* Tablets Landscape & Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .container-fullwidth {
    padding: 0 40px;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 991px) {
  .container-fullwidth {
    padding: 0 30px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .hero-modern {
    min-height: 90vh;
  }
  
  .hero-content-wrapper {
    padding: 0 30px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .clients-logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .container-fullwidth {
    padding: 0 20px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-content-wrapper {
    padding: 0 20px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .about-image-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-2 {
    margin-top: 0;
  }
  
  .vm-card {
    padding: 30px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .section-separator svg {
    height: 50px;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  .container-fullwidth {
    padding: 0 15px;
  }
  
  section {
    padding: 50px 0;
  }
  
  .hero-modern {
    min-height: 100vh;
    padding: 80px 0 60px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    gap: 6px;
  }
  
  .hero-badge svg {
    width: 12px;
    height: 12px;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  .hero-cta-group {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .about-paragraph,
  .vm-text,
  .expertise-text,
  .metals-paragraph {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .vm-card {
    padding: 25px;
  }
  
  .vm-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .vm-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .vm-title {
    font-size: 22px;
  }
  
  .expertise-content {
    padding: 30px 20px;
  }
  
  .expertise-icon {
    width: 60px;
    height: 60px;
  }
  
  .expertise-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .expertise-title {
    font-size: 20px;
  }
  
  .clients-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .client-logo-item {
    width: 100%;
    height: 90px;
    padding: 15px;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .contact-info-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-info-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-form-wrapper {
    padding: 25px 15px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .form-group label {
    font-size: 12px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .btn-primary-form {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

/* Very Small Devices (up to 375px) */
@media (max-width: 375px) {
  .hero-modern {
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .hero-description {
    font-size: 13px;
  }
}
