/*-----------------------------------------------------------------
Theme Name: MS Plomberie
Author: Custom
Version: 1.0.0 
Description: MS Plomberie - Services de Plomberie 24h/24 7J/7
Epernay, Reims, Châlons-en-Champagne et alentours

-------------------------------------------------------------------
 CSS TABLE OF CONTENTS
-------------------------------------------------------------------
1. MS Plomberie Custom Colors
2. Brand Overrides
3. Service-specific Styles
------------------------------------------------------------------*/

/*----------------------------------------------
    # MS Plomberie Color Palette
----------------------------------------------*/
:root {
  /* MS Plomberie Brand Colors */
  --ms-orange: #fc9b47;      /* Orange principal */
  --ms-blue: #72b3f5;        /* Bleu secondaire */
  --ms-navy: #363d6b;        /* Bleu marine foncé */
  
  /* Override theme colors */
  --theme: var(--ms-orange);
  --theme2: var(--ms-navy);
  --green: var(--ms-blue);
  
  /* Additional brand colors */
  --ms-orange-light: #fdbd7a;
  --ms-orange-dark: #e8852a;
  --ms-blue-light: #9bc8f8;
  --ms-blue-dark: #5a9ef2;
  --ms-navy-light: #4a5280;
  --ms-navy-dark: #2a3054;
  
  /* Text colors */
  --title: var(--ms-navy);
  --text: #515151;
  
  /* Background colors */
  --bg: #f8f9fa;
  --bg-light: #ffffff;
  --bg-dark: var(--ms-navy);
}

/*----------------------------------------------
    # Brand Header Overrides
----------------------------------------------*/
/* Logo Size Reduction */
.header-logo img {
  max-width: 120px;
  height: auto;
  width: auto;
}

.mobile-logo img,
.mobile-logo svg {
  max-width: 120px;
  height: auto;
  width: auto;
}

.footer2-widget__item-logo img {
  max-width: 120px;
  height: auto;
  width: auto;
}

/* Header CTA Button - White Text */
.global-header2-header-button .theme-btn.style2,
.global-header2-header-button .theme-btn.style2:hover,
.global-header2-header-button .theme-btn.style2:focus {
  color: white !important;
}

.global-header2-header-button .theme-btn.style2 i {
  color: white !important;
}

/* Style pour l'élément d'expertise */
.intro2-right-experience__year {
  background-color: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  color: var(--ms-navy);
  border: 2px solid var(--ms-orange);
  font-size: 18px;
}

/* Amélioration de l'image de fond du hero */
.intro2-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  width: 100%;
}

/* Configuration du slider hero */
.one-grid-banner-slider {
  --swiper-navigation-size: 44px;
  --swiper-navigation-color: var(--ms-orange);
}

.one-grid-banner-slider .swiper-slide {
  transition: transform 0.5s ease-in-out;
}

.one-grid-banner-slider .swiper-slide-active {
  transform: translateX(0);
}

.one-grid-banner-slider .swiper-slide-next {
  transform: translateX(100%);
}

.one-grid-banner-slider .swiper-slide-prev {
  transform: translateX(-100%);
}

/* Style des flèches de navigation */
.swiper-arrow .swiper-nav {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-arrow .swiper-nav:hover {
  background: var(--ms-orange);
  transform: scale(1.1);
}

.swiper-arrow .swiper-nav img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.swiper-arrow .swiper-nav:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.header-top-area {
  background: linear-gradient(135deg, var(--ms-orange) 0%, var(--ms-orange-dark) 100%);
}

.header-top-wrapper__text {
  color: white !important;
}

.header-top-wrapper__text a {
  color: white !important;
  font-weight: 600;
}

/*----------------------------------------------
    # Navigation Overrides
----------------------------------------------*/
.global-header1-menu-area-main-menu ul li a {
  color: var(--ms-navy) !important;
  font-weight: 500;
}

.global-header1-menu-area-main-menu ul li a:hover,
.global-header1-menu-area-main-menu ul li a.active {
  color: var(--ms-orange) !important;
}

/*----------------------------------------------
    # Button Styles
----------------------------------------------*/
.theme-btn.style1 {
  background: linear-gradient(135deg, var(--ms-orange) 0%, var(--ms-orange-dark) 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.theme-btn.style1:hover {
  background: linear-gradient(135deg, var(--ms-orange-dark) 0%, var(--ms-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 155, 71, 0.3);
}

.theme-btn.style2 {
  background: linear-gradient(135deg, var(--ms-blue) 0%, var(--ms-blue-dark) 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.theme-btn.style2:hover {
  background: linear-gradient(135deg, var(--ms-blue-dark) 0%, var(--ms-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(114, 179, 245, 0.3);
}

/*----------------------------------------------
    # Hero Section Overrides
----------------------------------------------*/
.intro1-bg {
  background: linear-gradient(135deg, var(--ms-navy) 0%, var(--ms-navy-light) 100%) !important;
}

.intro1-top__subtitle {
  background: var(--ms-orange) !important;
  color: white !important;
  border: none !important;
}

.intro1-top__title {
  color: white !important;
}

/*----------------------------------------------
    # Section Titles
----------------------------------------------*/
.section-title__subtitle {
  color: var(--ms-orange) !important;
  background: rgba(252, 155, 71, 0.1) !important;
}

.section-title__title {
  color: var(--ms-navy) !important;
}

/*----------------------------------------------
    # Service Cards
----------------------------------------------*/
.service1-card {
  border: 1px solid rgba(114, 179, 245, 0.2);
  transition: all 0.3s ease;
}

.service1-card:hover {
  border-color: var(--ms-orange);
  box-shadow: 0 10px 30px rgba(252, 155, 71, 0.15);
  transform: translateY(-5px);
}

/*----------------------------------------------
    # Feature Cards
----------------------------------------------*/
.feature1-card {
  background: white;
  border: 1px solid rgba(114, 179, 245, 0.1);
  transition: all 0.3s ease;
}

.feature1-card:hover {
  border-color: var(--ms-orange);
  box-shadow: 0 10px 30px rgba(252, 155, 71, 0.15);
}

/*----------------------------------------------
    # Contact Section
----------------------------------------------*/
.contact1 {
  background: linear-gradient(135deg, rgba(114, 179, 245, 0.05) 0%, rgba(252, 155, 71, 0.05) 100%);
}

/*----------------------------------------------
    # Footer Overrides
----------------------------------------------*/
.footer1 {
  background: linear-gradient(135deg, var(--ms-navy) 0%, var(--ms-navy-light) 100%) !important;
}

.footer2 {
  background: linear-gradient(135deg, var(--ms-navy) 0%, var(--ms-navy-light) 100%) !important;
}

.footer1-top__title {
  color: white !important;
}

.footer1-widget__item-title {
  color: white !important;
}

.footer1-widget__item-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer1-widget__item-list li a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

.footer1-widget__item-list li a:hover {
  color: var(--ms-orange) !important;
}

/*----------------------------------------------
    # Social Media Icons
----------------------------------------------*/
.footer1-widget__item-social li a {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.footer1-widget__item-social li a:hover {
  background: var(--ms-orange);
  transform: translateY(-3px);
}

/* Footer2 specific styles */
.footer2-widget__item-title {
  color: white !important;
}

.footer2-widget__item-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer2-widget__item-list li a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

.footer2-widget__item-list li a:hover {
  color: var(--ms-orange) !important;
}

.footer2-widget__item-social li a {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.footer2-widget__item-social li a:hover {
  background: var(--ms-orange);
  transform: translateY(-3px);
}

.footer2-bottom {
  background: rgba(255, 255, 255, 0.05) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*----------------------------------------------
    # Brand Section - Simple Design
----------------------------------------------*/
.brand2-simple {
  padding: 60px 0;
  text-align: center;
}

.brand2-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.brand2-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--ms-navy);
  margin: 0;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

.brand2-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.highcube-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--ms-navy);
  background: linear-gradient(135deg, var(--ms-orange) 0%, var(--ms-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highcube-text:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Responsive design */
@media (max-width: 768px) {
  .brand2-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .brand2-title {
    font-size: 20px;
    text-align: center;
  }
  
  .highcube-text {
    font-size: 18px;
  }
}

.footer2-bottom-item__text {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer2-bottom-item__top-link a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

.footer2-bottom-item__top-link a:hover {
  color: var(--ms-orange) !important;
}

.footer2-bottom-item__list li a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
}

.footer2-bottom-item__list li a:hover {
  color: var(--ms-orange) !important;
}

/*----------------------------------------------
    # Emergency Badge
----------------------------------------------*/
.emergency-badge {
  background: linear-gradient(135deg, var(--ms-orange) 0%, var(--ms-orange-dark) 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin: 10px 0;
  animation: pulse 2s infinite;
}

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

/*----------------------------------------------
    # Service Area Badge
----------------------------------------------*/
.service-area {
  background: linear-gradient(135deg, var(--ms-orange) 0%, var(--ms-blue) 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin: 15px 0;
  box-shadow: 0 8px 25px rgba(252, 155, 71, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ms-blue) 0%, var(--ms-orange) 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.service-area:hover::before {
  left: 0;
}

.service-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(252, 155, 71, 0.4);
}

/*----------------------------------------------
    # Mobile Responsive
----------------------------------------------*/
@media (max-width: 768px) {
  .intro1-top__title {
    font-size: 2.5rem !important;
  }
  
  .section-title__title {
    font-size: 2rem !important;
  }
  
  .theme-btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
  }
  
  .service-area {
    padding: 12px 20px;
    font-size: 14px;
    margin: 10px 0;
  }
}

/*----------------------------------------------
    # Custom Animations
----------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/*----------------------------------------------
    # Loading Animation
----------------------------------------------*/
.preloader .txt-loading span {
  color: var(--ms-orange) !important;
}

/*----------------------------------------------
    # Back to Top Button
----------------------------------------------*/
.back-to-top {
  background: var(--ms-orange) !important;
  color: white !important;
}

.back-to-top:hover {
  background: var(--ms-orange-dark) !important;
}

/*----------------------------------------------
    # Services Couverts Section
----------------------------------------------*/
.services-covered {
  background: linear-gradient(135deg, rgba(114, 179, 245, 0.03) 0%, rgba(252, 155, 71, 0.03) 100%);
  position: relative;
}

.services-covered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fc9b47" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2372b3f5" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23363d6b" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23fc9b47" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%2372b3f5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.services-list li {
  padding: 15px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid rgba(114, 179, 245, 0.1);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

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

.services-list li:hover {
  color: var(--ms-navy);
  padding-left: 10px;
  background: rgba(252, 155, 71, 0.05);
  border-radius: 8px;
  margin: 0 -10px;
  padding-right: 10px;
}

.services-list li i {
  color: var(--ms-orange);
  margin-right: 15px;
  font-size: 18px;
  flex-shrink: 0;
  background: rgba(252, 155, 71, 0.1);
  padding: 8px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services-list li:hover i {
  background: var(--ms-orange);
  color: white;
  transform: scale(1.1);
}

.services-covered-list {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(114, 179, 245, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-covered-list:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--ms-orange);
}

/* Mobile responsive for services covered */
@media (max-width: 768px) {
  .services-covered-list {
    padding: 20px;
    margin-bottom: 20px;
  }

  .services-list li {
    padding: 12px 0;
    font-size: 14px;
  }

  .services-list li i {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 12px;
  }
}

/*----------------------------------------------
    # Contact Form Section
----------------------------------------------*/
.contact-form-section {
  background: linear-gradient(135deg, rgba(114, 179, 245, 0.05) 0%, rgba(252, 155, 71, 0.05) 100%);
  position: relative;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fc9b47" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2372b3f5" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23363d6b" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23fc9b47" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%2372b3f5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.contact-form-thumb {
  position: relative;
  z-index: 2;
}

.contact-form-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-form-thumb img:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-form-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(114, 179, 245, 0.1);
  position: relative;
  z-index: 2;
  margin-left: -20px;
  margin-top: 20px;
}

.contact-form-title {
  color: var(--ms-navy);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-form-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ms-orange) 0%, var(--ms-blue) 100%);
  border-radius: 2px;
}

.form-clt {
  margin-bottom: 20px;
  position: relative;
}

.form-clt input,
.form-clt select,
.form-clt textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(114, 179, 245, 0.2);
  border-radius: 10px;
  font-size: 16px;
  color: var(--ms-navy);
  background: #f8f9fa;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-clt input:focus,
.form-clt select:focus,
.form-clt textarea:focus {
  outline: none;
  border-color: var(--ms-orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(252, 155, 71, 0.1);
  transform: translateY(-2px);
}

.form-clt input::placeholder,
.form-clt textarea::placeholder {
  color: #999;
  font-style: italic;
}

.form-clt select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.form-clt select option {
  padding: 10px;
  background: white;
  color: var(--ms-navy);
}

.contact-form-button-wrapper {
  margin-top: 20px;
}

.contact-form-button-wrapper .theme-btn {
  background: linear-gradient(135deg, var(--ms-orange) 0%, var(--ms-blue) 100%);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form-button-wrapper .theme-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ms-blue) 0%, var(--ms-orange) 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.contact-form-button-wrapper .theme-btn:hover::before {
  left: 0;
}

.contact-form-button-wrapper .theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(252, 155, 71, 0.3);
}

.contact-form-button-wrapper .theme-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.contact-form-button-wrapper .theme-btn:hover i {
  transform: translateX(5px);
}

/* Mobile responsive for contact form */
@media (max-width: 768px) {
  .contact-form-content {
    margin-left: 0;
    margin-top: 0;
    padding: 30px 20px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .form-clt input,
  .form-clt select,
  .form-clt textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .contact-form-button-wrapper .theme-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/*----------------------------------------------
    # Client Logos Section
----------------------------------------------*/
.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(114, 179, 245, 0.1);
  transition: all 0.3s ease;
  min-height: 120px;
  text-align: center;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--ms-orange);
}

.client-logo .logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--ms-navy);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.client-logo .logo-subtitle {
  font-size: 12px;
  color: var(--ms-blue);
  font-weight: 500;
  opacity: 0.8;
}

.highcube-logo {
  background: linear-gradient(135deg, rgba(252, 155, 71, 0.1) 0%, rgba(114, 179, 245, 0.1) 100%);
  border-color: var(--ms-orange);
  position: relative;
}

.highcube-logo::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--ms-orange) 0%, var(--ms-blue) 100%);
  border-radius: 15px;
  z-index: -1;
  opacity: 0.1;
}

.highcube-logo .logo-text {
  color: var(--ms-orange);
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(252, 155, 71, 0.2);
}

.highcube-logo .logo-subtitle {
  color: var(--ms-navy);
  font-weight: 600;
}

.brand2-title {
  color: var(--ms-navy) !important;
  font-weight: 600 !important;
  margin-bottom: 40px !important;
  text-align: center !important;
  font-size: 24px !important;
}

/* Mobile responsive for client logos */
@media (max-width: 768px) {
  .client-logo {
    padding: 15px;
    min-height: 100px;
  }

  .client-logo .logo-text {
    font-size: 16px;
  }

  .client-logo .logo-subtitle {
    font-size: 11px;
  }

  .highcube-logo .logo-text {
    font-size: 18px;
  }

  .brand2-title {
    font-size: 20px !important;
  }
}

/*----------------------------------------------
    # Testimonials without images styling
----------------------------------------------*/
.testimonial2-card {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.testimonial2-card-content {
  width: 100%;
  max-width: 100%;
}

.testimonial2-card-content__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial2-card-content__auth {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.testimonial2-card-content__auth-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial2-card-content__auth-title {
  font-size: 16px;
  opacity: 0.9;
}

/* Mobile responsive for testimonials */
@media (max-width: 768px) {
  .testimonial2-card {
    min-height: 300px;
  }

  .testimonial2-card-content__text {
    font-size: 16px;
  }

  .testimonial2-card-content__auth-name {
    font-size: 18px;
  }

  .testimonial2-card-content__auth-title {
    font-size: 14px;
  }
}

/*----------------------------------------------
    # Project Slider Styles
----------------------------------------------*/
.project-slider {
  padding: 20px 0;
}

.project-slider .swiper-slide {
  height: auto;
}

.project1-card {
  height: 100%;
  transition: transform 0.3s ease;
}

.project1-card:hover {
  transform: translateY(-10px);
}

.project1-card__thumb {
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  height: 300px;
}

.project1-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project1-card:hover .project1-card__thumb img {
  transform: scale(1.1);
}

#realisations .swiper-arrow {
  margin-bottom: 30px;
}

#realisations .swiper-nav {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--ms-orange);
  border-radius: 50%;
  margin: 0 10px;
  transition: all 0.3s ease;
}

#realisations .swiper-nav:hover {
  background: var(--ms-navy);
  transform: scale(1.1);
}

#realisations .swiper-nav img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
