/**
* Template Name: BizLand
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables - LOGIMAT PRÉFAB 2025 DESIGN SYSTEM
# Refonte Premium par Expert UX/UI
--------------------------------------------------------------*/

/* Fonts - Typographie Moderne 2025 */
:root {
  --default-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - Palette LOGIMAT Premium basée sur #ce405f */
:root {
  /* Brand Colors - Palette Rose LOGIMAT */
  --primary-color: #ce405f;           /* Rose signature LOGIMAT */
  --primary-light: #e87794;           /* Rose clair pour accents */
  --primary-lighter: #f5b3c4;         /* Rose très clair pour backgrounds */
  --primary-dark: #a02d45;            /* Bordeaux profond pour autorité */
  --primary-darker: #7a1f32;          /* Bordeaux sombre pour contrastes */

  /* Accent Colors - Complémentaires modernes */
  --accent-gold: #f4a261;             /* Or moderne pour CTAs secondaires */
  --accent-coral: #e76f51;            /* Corail pour énergie */

  /* Neutral Colors - Gris professionnels 2025 */
  --neutral-darkest: #1a1a2e;         /* Presque noir pour textes */
  --neutral-dark: #2d3142;            /* Gris foncé pour headings */
  --neutral-medium: #6c757d;          /* Gris moyen pour textes secondaires */
  --neutral-light: #e9ecef;           /* Gris clair pour borders */
  --neutral-lighter: #f8f9fa;         /* Gris très clair pour backgrounds */
  --neutral-white: #ffffff;           /* Blanc pur */

  /* Global Colors (compatibilité) */
  --background-color: var(--neutral-white);
  --default-color: #4a4a4a;           /* Texte principal - meilleure lisibilité */
  --heading-color: var(--neutral-dark);
  --accent-color: var(--primary-color);
  --surface-color: var(--neutral-white);
  --contrast-color: var(--neutral-white);

  /* Gradients - Effets modernes 2025 */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(206, 64, 95, 0.65) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-coral) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(26, 26, 46, 0.8) 0%, rgba(206, 64, 95, 0.9) 100%);

  /* Shadows - Profondeur moderne */
  --shadow-sm: 0 2px 8px rgba(206, 64, 95, 0.08);
  --shadow-md: 0 4px 20px rgba(206, 64, 95, 0.12);
  --shadow-lg: 0 8px 32px rgba(206, 64, 95, 0.16);
  --shadow-xl: 0 16px 48px rgba(206, 64, 95, 0.20);
  --shadow-glow: 0 0 40px rgba(206, 64, 95, 0.3);

  /* Border Radius - Courbes modernes */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Spacing - Système 8pt */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-2xl: 4rem;    /* 64px */
  --space-3xl: 6rem;    /* 96px */
}

/* Nav Menu Colors - Navigation Premium 2025 */
:root {
  --nav-color: var(--neutral-dark);
  --nav-hover-color: var(--primary-color);
  --nav-mobile-background-color: var(--neutral-white);
  --nav-dropdown-background-color: var(--neutral-white);
  --nav-dropdown-color: var(--neutral-dark);
  --nav-dropdown-hover-color: var(--primary-color);
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# Dark Mode - Premium 2025
--------------------------------------------------------------*/
[data-theme="dark"] {
  /* Dark mode colors */
  --background-color: #0a0a0f;
  --default-color: #e0e0e0;
  --heading-color: #ffffff;
  --surface-color: #1a1a24;
  --neutral-darkest: #ffffff;
  --neutral-dark: #f5f5f5;
  --neutral-medium: #b0b0b0;
  --neutral-light: #2a2a35;
  --neutral-lighter: #1a1a24;

  /* Gradients ajustés pour dark mode */
  --gradient-hero: linear-gradient(135deg, rgba(10, 10, 15, 0.88) 0%, rgba(206, 64, 95, 0.70) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(206, 64, 95, 0.8) 100%);

  /* Shadows pour dark mode */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
}

/* Dark Mode Toggle Button */
.theme-toggle {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-glow);
}

.theme-toggle i {
  font-size: 22px;
  color: var(--neutral-white);
  transition: transform 0.4s ease;
}

.theme-toggle:hover i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .theme-toggle {
    bottom: 75px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  .theme-toggle i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  /* Sur très petit écran : masquer le toggle dark mode pour désencombrer */
  .theme-toggle {
    display: none;
  }
}

/*--------------------------------------------------------------
# WhatsApp Floating Button
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float i {
  font-size: 32px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55), 0 0 0 7px rgba(37, 211, 102, 0.12);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }
}

/* Glassmorphism ajusté pour dark mode */
[data-theme="dark"] .featured-services .service-item {
  background: rgba(26, 26, 36, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .portfolio .portfolio-item {
  background: var(--surface-color);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .header {
  background-color: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .header .topbar {
  background-color: var(--primary-dark);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Skip link accessibilité clavier */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 99999;
  padding: 0.75rem 1.25rem;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* Respect prefers-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;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages - Enhanced 2025
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: linear-gradient(135deg, #df1529 0%, #c91020 100%);
  color: #ffffff;
  text-align: left;
  padding: 18px 24px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid #a00015;
  animation: slideInDown 0.4s ease-out;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: linear-gradient(135deg, #059652 0%, #047a3f 100%);
  text-align: center;
  padding: 18px 24px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid #036833;
  animation: slideInDown 0.4s ease-out;
}

.php-email-form .loading {
  display: none;
  background: linear-gradient(135deg, rgba(206, 64, 95, 0.1) 0%, rgba(206, 64, 95, 0.05) 100%);
  text-align: center;
  padding: 18px 24px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(206, 64, 95, 0.2);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 80px;
  padding: 14px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 52px;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .header .branding {
    min-height: 68px;
    padding: 10px 0;
  }

  .header .logo img {
    max-height: 44px;
  }
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu a .nav-icon,
  .navmenu a svg.nav-icon,
  .navmenu a:focus .nav-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin-left: 0;
    margin-right: 6px;
    opacity: 0.55;
    stroke-width: 1.75;
    vertical-align: middle;
    display: inline-block;
    background: none;
    border-radius: 0;
    transition: opacity 0.25s ease-out;
  }

  .navmenu a:hover .nav-icon,
  .navmenu a:hover svg.nav-icon,
  .navmenu .active .nav-icon,
  .navmenu .active svg.nav-icon,
  .navmenu .active:focus .nav-icon {
    opacity: 1;
    background: none;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a .nav-icon,
  .navmenu a svg.nav-icon,
  .navmenu a:focus .nav-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-left: 0;
    margin-right: 10px;
    opacity: 0.6;
    stroke-width: 1.75;
    vertical-align: middle;
    display: inline-block;
    background: none;
    border-radius: 0;
    transition: opacity 0.25s ease-out;
  }

  .navmenu a:hover .nav-icon,
  .navmenu a:hover svg.nav-icon,
  .navmenu .active .nav-icon,
  .navmenu .active svg.nav-icon {
    opacity: 1;
    background: none;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, #2d1b1e 0%, #4a1e2a 50%, #6b2537 100%);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(206, 64, 95, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.footer .social-links a:hover {
  color: #ffffff;
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 8px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul li:hover {
  padding-left: 5px;
}

.footer .footer-links ul li:hover i {
  transform: translateX(3px);
}

.footer .footer-links ul a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  transition: color 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: var(--accent-gold);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.footer .footer-contact strong {
  color: var(--accent-gold);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer .copyright .sitename {
  color: var(--accent-gold);
  font-weight: 700;
}

.footer .footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 13px;
}

.footer .footer-legal-link:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer .footer-top {
    padding-top: 40px;
  }

  .footer {
    padding-bottom: 30px;
  }

  .footer h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer .footer-about {
    margin-bottom: 30px;
  }

  .footer .footer-links {
    margin-bottom: 25px;
  }

  .footer .social-links {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .footer .copyright {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .footer .footer-top {
    padding-top: 30px;
  }

  .footer h4 {
    font-size: 15px;
  }

  .footer .footer-contact p {
    font-size: 13px;
  }

  .footer .social-links a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer .copyright p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 102px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(206, 64, 95, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out, transform 0.25s ease-out, background-color 0.25s ease-out, box-shadow 0.25s ease-out;
}

.scroll-top i {
  font-size: 20px;
  color: var(--contrast-color);
  line-height: 1;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 6px 20px rgba(206, 64, 95, 0.45);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  .scroll-top {
    right: 20px;
    bottom: 86px;
    width: 44px;
    height: 44px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 80px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section - Design Premium 2025
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

/* Overlay gradient moderne */
.hero:before {
  content: "";
  background: var(--gradient-hero);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/* Pattern overlay subtil */
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: none;
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding: var(--space-3xl) 0;
}

/* Typographie Hero - Bold & Modern */
.hero h1 {
  margin: 0 0 var(--space-md) 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--neutral-white);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-lighter) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  display: inline-block;
  position: relative;
}

/* Animated underline pour le span */
.hero h1 span:after {
  content: none;
}

@keyframes slideRight {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  margin: var(--space-md) 0 var(--space-xl) 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p.fs-5 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--neutral-white);
  margin-bottom: var(--space-sm);
}

/* CTA Button - Premium Design */
.hero .btn-get-started {
  color: var(--neutral-white);
  background: var(--gradient-primary);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg), 0 0 0 0 rgba(206, 64, 95, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero .btn-get-started: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.6s;
}

.hero .btn-get-started:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 0 8px rgba(206, 64, 95, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.hero .btn-get-started:active {
  transform: translateY(-1px) scale(1.01);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    background-attachment: scroll;
  }

  .hero .container {
    padding: var(--space-2xl) 0;
  }

  .hero h1 span:after {
    height: 3px;
    bottom: -4px;
  }

  .hero .btn-get-started {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Floating animation pour éléments décoratifs */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Particle effect (optionnel - peut être ajouté avec JS) */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Hero Image Column */
.hero .hero-img img {
  border: 4px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 991px) {
  .hero .hero-img {
    margin-bottom: var(--space-lg);
  }
}

/*--------------------------------------------------------------
# Featured Services Section - Glassmorphism 2025
--------------------------------------------------------------*/
.featured-services {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--neutral-lighter) 0%, rgba(206, 64, 95, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative shapes background */
.featured-services:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-lighter) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  opacity: 0.2;
  animation: float 20s ease-in-out infinite;
}

.featured-services .service-item {
  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Gradient background on hover */
.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--gradient-primary);
  inset: 100% 0 0 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: var(--radius-lg);
}

/* Icon container with gradient */
.featured-services .service-item .icon {
  margin-bottom: var(--space-md);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
}

.featured-services .service-item .icon:after {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-services .service-item .icon i {
  color: var(--neutral-white);
  font-size: 36px;
  transition: all 0.4s ease;
  z-index: 1;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
  line-height: 1.4;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.featured-services .service-item p {
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--neutral-medium);
  transition: all 0.3s ease;
}

/* Hover effects */
.featured-services .service-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(206, 64, 95, 0.3);
}

.featured-services .service-item:hover:before {
  inset: 0;
}

.featured-services .service-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.featured-services .service-item:hover .icon:after {
  opacity: 1;
}

.featured-services .service-item:hover .icon i {
  transform: scale(1.1);
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover p {
  color: var(--neutral-white);
}

/* Responsive */
@media (max-width: 768px) {
  .featured-services {
    padding: var(--space-2xl) 0;
  }

  .featured-services .service-item {
    padding: var(--space-lg) var(--space-md);
    margin-bottom: var(--space-lg);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 80px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  max-height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Testimonials Section - Modern Design 2025
--------------------------------------------------------------*/
.testimonials-modern {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: var(--space-3xl) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Image */
.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/testimonials-bg.jpg') center center/cover no-repeat;
  z-index: 1;
}

/* Dark Overlay */
.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(206, 64, 95, 0.85) 100%);
  z-index: 2;
}

.testimonials-modern .container {
  position: relative;
  z-index: 3;
}

/* Section Headers Light */
.section-tag-light {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.section-title-modern-light {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight-text-light {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description-modern-light {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Testimonial Cards - Glass Morphism Design */
.testimonials-modern .testimonial-item {
  text-align: center;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.testimonials-modern .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.testimonials-modern .testimonial-item:hover::before {
  left: 100%;
}

.testimonials-modern .testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

/* Quote Icon */
.testimonials-modern .quote-icon-left {
  font-size: 48px;
  color: var(--primary-color);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

/* Stars */
.testimonials-modern .stars {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonials-modern .stars i {
  color: #ffd700;
  font-size: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Testimonial Text */
.testimonials-modern .testimonial-item p {
  font-size: 1.125rem;
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Client Info */
.testimonials-modern .client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials-modern .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.testimonials-modern .testimonial-item:hover .testimonial-img {
  transform: scale(1.1);
  border-color: #ffffff;
  box-shadow: 0 6px 24px rgba(206, 64, 95, 0.6);
}

.testimonials-modern .client-details {
  text-align: left;
}

.testimonials-modern .client-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.testimonials-modern .client-details h4 {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Avatar initiales (fallback si pas de photo) */
.testimonials-modern .testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Date du témoignage */
.testimonials-modern .testimonial-date {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-style: italic;
}

/* Swiper Customization */
.testimonials-modern .swiper-wrapper {
  height: auto;
  padding: 2rem 0;
}

.testimonials-modern .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonials-modern .swiper-pagination {
  margin-top: 3rem;
  position: relative;
}

.testimonials-modern .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-modern .swiper-pagination-bullet-active {
  background-color: #ffffff;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-modern {
    min-height: 600px;
    padding: var(--space-2xl) 0;
  }

  .testimonials-modern .testimonial-item {
    padding: 2rem 1.5rem;
  }

  .testimonials-modern .testimonial-item p {
    font-size: 1rem;
  }

  .testimonials-modern .client-info {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-modern .client-details {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Portfolio Section - Modern Gallery 2025
--------------------------------------------------------------*/
.portfolio {
  padding: var(--space-3xl) 0;
  background: var(--neutral-white);
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto var(--space-2xl) auto;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--heading-font);
  background: var(--neutral-lighter);
  color: var(--neutral-dark);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-filters li:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.portfolio .portfolio-filters li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--neutral-white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.portfolio .portfolio-filters li.filter-active:before {
  opacity: 1;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--neutral-white);
  cursor: pointer;
}

.portfolio .portfolio-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.portfolio .portfolio-item:hover:before {
  opacity: 1;
}

.portfolio .portfolio-item img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio .portfolio-item:hover img {
  filter: brightness(0.95);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(180deg,
    rgba(206, 64, 95, 0.95) 0%,
    rgba(122, 31, 50, 0.98) 100%);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: var(--space-xs);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  font-size: 20px;
  color: var(--neutral-white);
  transition: all 0.3s ease;
  margin-right: var(--space-xs);
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(17px) scale(1.1);
}

/* Hover states */
.portfolio .portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-item:hover .portfolio-info h4,
.portfolio .portfolio-item:hover .portfolio-info p,
.portfolio .portfolio-item:hover .portfolio-info .preview-link,
.portfolio .portfolio-item:hover .portfolio-info .details-link {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio .portfolio-item {
    margin-bottom: var(--space-lg);
  }

  .portfolio .portfolio-info h4 {
    font-size: 1.1rem;
  }

  .portfolio .portfolio-info p {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Team Section - ANCIEN STYLE DESACTIVE (voir styles modernes plus bas)
--------------------------------------------------------------*/
/* .team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info .member-bio {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: var(--neutral-medium);
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0 5px;
}

.team .team-member:hover .social {
  opacity: 1;
} */

/*--------------------------------------------------------------
# Pricing Section - ANCIEN STYLE DESACTIVE (voir styles modernes plus bas)
--------------------------------------------------------------*/
/* .pricing {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--neutral-lighter) 0%, rgba(206, 64, 95, 0.02) 100%);
}

.pricing .pricing-item {
  background: var(--surface-color);
  box-shadow: var(--shadow-md);
  padding: 0;
  text-align: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--neutral-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing .pricing-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.pricing .pricing-item h3 {
  font-weight: 700;
  margin: 0;
  padding: var(--space-lg) var(--space-md);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--neutral-dark);
  background: var(--neutral-lighter);
  border-bottom: 2px solid var(--neutral-light);
}

.pricing .pricing-item h4 {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--heading-font);
  margin: var(--space-xl) 0 var(--space-md) 0;
  color: var(--primary-color);
  line-height: 1;
}

.pricing .pricing-item h4 span {
  display: block;
  color: var(--neutral-medium);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: var(--space-sm);
}

.pricing .pricing-item ul {
  padding: var(--space-md) var(--space-lg);
  list-style: none;
  text-align: left;
  line-height: 1.8;
  font-size: 0.95rem;
  flex-grow: 1;
}

.pricing .pricing-item ul li {
  padding: var(--space-sm) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pricing .pricing-item ul li i {
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.pricing .pricing-item ul .na {
  color: var(--neutral-medium);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing .pricing-item ul .na i {
  color: var(--neutral-medium);
}

.pricing .btn-wrap {
  background: transparent;
  margin: 0;
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-top: 2px solid var(--neutral-light);
}


.pricing .featured {
  transform: scale(1.05);
  z-index: 2;
}

.pricing .featured .pricing-item {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.pricing .featured h3 {
  background: var(--gradient-primary);
  color: var(--neutral-white);
  border-bottom-color: var(--primary-dark);
}

.pricing .featured h4 {
  color: var(--primary-dark);
}


.pricing .advanced {
  background: var(--gradient-accent);
  color: var(--neutral-white);
  width: 200px;
  position: absolute;
  top: 20px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 10;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 0;
  box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
  .pricing .featured {
    transform: scale(1);
    margin-bottom: var(--space-lg);
  }
} */

/*--------------------------------------------------------------
# Faq Section - ANCIEN STYLE DESACTIVE (voir styles modernes plus bas)
--------------------------------------------------------------*/
/* .faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
} */

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Animations Modernes - Inspirées ModularHome
--------------------------------------------------------------*/

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Fade in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide from left */
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide from right */
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hover lift effect for cards */
.service-item,
.pricing-item,
.team-member,
.testimonial-item {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover,
.pricing-item:hover,
.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Button hover effects modernes */
.btn-get-started,
.btn-buy {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-get-started:after,
.btn-buy:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-get-started:hover:after,
.btn-buy:hover:after {
  width: 300px;
  height: 300px;
}

/* Image parallax effect on scroll */
.parallax-image {
  transition: transform 0.3s ease-out;
}

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
  transition: all 0.3s ease;
}

/* Loading animation for images */
img {
  animation: fadeIn 0.5s ease-in;
}

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

/*--------------------------------------------------------------
# MODERN DESIGN 2025 - MODULARHOME INSPIRED
# Refonte complète du design avec palette minimaliste
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Hero Modern - Full Screen
--------------------------------------------------------------*/
.hero-modern {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-bg.jpg') center center/cover no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(206, 64, 95, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 0 80px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-highlight {
  color: var(--primary-color);
  display: block;
  margin-top: 10px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Modern Buttons */
.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(206, 64, 95, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-modern:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(206, 64, 95, 0.4);
  color: #ffffff;
}

.btn-outline-modern {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: background 0.25s ease-out, border-color 0.25s ease-out, transform 0.25s ease-out, box-shadow 0.25s ease-out;
  backdrop-filter: blur(4px);
}

.btn-outline-modern:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}


/* Trust Badges Bar */
.trust-badges-bar {
  background: var(--neutral-white);
  border-bottom: 1px solid var(--neutral-light);
  padding: 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-right: 1px solid var(--neutral-light);
  flex: 1;
  justify-content: center;
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge i {
  font-size: 1.6rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.trust-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neutral-dark);
  line-height: 1.3;
}

.trust-badge span {
  font-size: 0.75rem;
  color: var(--neutral-medium);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .trust-badges {
    flex-wrap: wrap;
  }
  .trust-badge {
    width: 50%;
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--neutral-light);
    padding: 14px 16px;
    justify-content: flex-start;
  }
  .trust-badge:nth-child(1),
  .trust-badge:nth-child(2) {
    border-right: none;
  }
  .trust-badge:nth-child(odd) {
    border-right: 1px solid var(--neutral-light);
  }
  .trust-badge:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-down {
  display: block;
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  position: relative;
  transition: border-color 0.25s ease-out;
}

.scroll-down:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

.scroll-down span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translateX(-50%) translateY(0);
  animation: scrollDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  65% {
    transform: translateX(-50%) translateY(22px);
    opacity: 0;
  }
  66% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-down span {
    animation: none;
    opacity: 0.7;
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
## Features Modern - 3 Columns
--------------------------------------------------------------*/
.features-modern {
  padding: 100px 0;
  background: #ffffff;
}

.feature-modern-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  transition: all 0.4s ease;
}

.feature-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-modern i {
  font-size: 2.5rem;
  color: #ffffff;
}

.feature-modern-item:hover .feature-icon-modern {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 40px rgba(206, 64, 95, 0.3);
}

.feature-content-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.feature-content-modern p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
## Section Headers Modern
--------------------------------------------------------------*/
.section-header-modern {
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(206, 64, 95, 0.1);
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

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

.highlight-text {
  color: var(--primary-color);
}

.section-description-modern {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title-modern {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
## About Modern
--------------------------------------------------------------*/
.about-modern {
  padding: 120px 0;
  background: #f8f9fa;
}

.about-image-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-modern img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-modern:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(206, 64, 95, 0.4);
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.about-content-modern {
  padding: 0 0 0 40px;
}

.about-subtitle-modern {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-text-modern {
  font-size: 1.0625rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

.about-features-modern {
  margin-bottom: 30px;
}

.feature-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-icon-check {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(206, 64, 95, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-check i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.9375rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-content-modern {
    padding: 40px 0 0 0;
  }
}

/*--------------------------------------------------------------
## Stats Modern - Dark Background
--------------------------------------------------------------*/
.stats-modern {
  padding: 100px 0;
}

.dark-bg {
  background: #111;
}

.stats-modern-item {
  text-align: center;
  padding: 40px 20px;
  transition: all 0.4s ease;
}

.stats-modern-item:hover {
  transform: translateY(-10px);
}

.stats-icon-modern {
  width: 80px;
  height: 80px;
  background: rgba(206, 64, 95, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.stats-modern-item:hover .stats-icon-modern {
  background: var(--primary-color);
  box-shadow: 0 15px 40px rgba(206, 64, 95, 0.4);
}

.stats-icon-modern i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.stats-modern-item:hover .stats-icon-modern i {
  color: #ffffff;
}

.stats-content-modern {
  margin-top: 15px;
}

.stats-number {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 15px;
}

.stats-plus {
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-left: 5px;
  vertical-align: top;
}

.stats-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin: 0;
}

/*--------------------------------------------------------------
## Portfolio Modern - Magazine Style Gallery
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# NOUVELLE GALERIE - Cards Modernes 2025
--------------------------------------------------------------*/
/* ===== Portfolio Numéroté ===== */
.portfolio-numbered {
  padding: 100px 0;
  background: #f8f9fa;
}

.numbered-project {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--neutral-light);
  transition: background 0.3s ease;
  border-radius: var(--radius-sm);
}

.numbered-project:last-of-type {
  border-bottom: none;
}

.project-number {
  font-family: var(--heading-font);
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 900;
  color: var(--primary-lighter);
  line-height: 1;
  min-width: 120px;
  text-align: right;
  transition: color 0.3s ease;
  user-select: none;
}

.numbered-project:hover .project-number {
  color: var(--primary-color);
}

.project-image {
  flex-shrink: 0;
  width: 240px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.numbered-project:hover .project-image img {
  transform: scale(1.06);
}

.project-content {
  flex: 1;
}

.project-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.project-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neutral-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.project-desc {
  font-size: 0.97rem;
  color: var(--neutral-medium);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 560px;
}

.project-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--neutral-medium);
  font-weight: 500;
}

.project-meta i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.project-cta:hover {
  gap: 14px;
  color: var(--primary-dark);
}

.project-cta i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.project-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .project-number {
    min-width: 70px;
    font-size: 3.5rem;
  }
  .project-image {
    width: 180px;
    height: 160px;
  }
  .project-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .numbered-project {
    flex-wrap: wrap;
    gap: 20px;
  }
  .project-number {
    min-width: auto;
    font-size: 2.5rem;
    text-align: left;
  }
  .project-image {
    width: 100%;
    height: 220px;
    order: 2;
  }
  .project-content {
    order: 3;
    width: 100%;
  }
}

[data-theme="dark"] .portfolio-numbered {
  background: var(--background-color);
}

[data-theme="dark"] .numbered-project {
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .project-title {
  color: var(--neutral-dark);
}

/* ===== Portfolio Showcase - Rangées alternées ===== */
.portfolio-showcase {
  padding: 100px 0;
  background: #f8f9fa;
}

.showcase-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-bottom: 72px;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--neutral-light);
}

.showcase-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.showcase-row.showcase-reverse {
  flex-direction: row-reverse;
}

.showcase-image-wrap {
  flex: 0 0 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.showcase-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out;
}

.showcase-row:hover .showcase-image-wrap img {
  transform: scale(1.04);
}

.showcase-content {
  flex: 1;
}

.showcase-category {
  display: inline-block;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.showcase-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.showcase-content > p {
  font-size: 1.05rem;
  color: var(--neutral-medium);
  line-height: 1.75;
  margin-bottom: 28px;
}

.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--neutral-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-light);
}

.showcase-features li:last-child {
  border-bottom: none;
}

.showcase-features li i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-showcase-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--primary-color);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-showcase-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-showcase-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid var(--neutral-light);
  color: var(--neutral-dark);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-showcase-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .showcase-row,
  .showcase-row.showcase-reverse {
    flex-direction: column;
    gap: 32px;
  }

  .showcase-image-wrap {
    flex: none;
    width: 100%;
  }

  .showcase-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .showcase-actions {
    flex-direction: column;
  }

  .btn-showcase-primary,
  .btn-showcase-outline {
    justify-content: center;
  }
}

/* Dark mode */
[data-theme="dark"] .portfolio-showcase {
  background: var(--background-color);
}

[data-theme="dark"] .showcase-content h3 {
  color: var(--neutral-dark);
}

[data-theme="dark"] .showcase-features li {
  color: var(--neutral-medium);
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .showcase-row {
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .btn-showcase-outline {
  border-color: rgba(255,255,255,0.15);
  color: var(--neutral-medium);
}

[data-theme="dark"] .btn-showcase-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-light);
}

.portfolio-new {
  padding: 120px 0;
  background: #f8f9fa;
  position: relative;
}

/* Filtres avec effet morphing */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.filter-btn {
  padding: 12px 32px;
  background: #ffffff;
  color: #666;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--primary-color);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--accent-gold);
  border-color: var(--primary-color);
  background: transparent;
}

.filter-btn:hover:before,
.filter-btn.active:before {
  width: 300px;
  height: 300px;
  background: rgba(206, 64, 95, 0.12);
}

/* Grille responsive */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
}

/* Card principale */
.gallery-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  opacity: 1;
  transform: scale(1);
  height: 400px;
}

.gallery-card.hide {
  opacity: 0;
  transform: scale(0.8);
  height: 0;
  margin: 0;
  padding: 0;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(206, 64, 95, 0.18);
}

/* Zone image */
.card-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.gallery-card:hover .card-image img {
  transform: scale(1.07);
}

/* Overlay avec gradient */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

/* Badge catégorie */
.category-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(206, 64, 95, 0.4);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.gallery-card:hover .category-tag {
  transform: translateY(0);
  opacity: 1;
}

/* Contenu de la card - En overlay au hover */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.95) 100%
  );
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.gallery-card:hover .card-content {
  transform: translateY(0);
  opacity: 1;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.card-features i {
  color: var(--accent-gold);
  font-size: 1rem;
}

/* Footer avec boutons */
.card-footer {
  display: flex;
  gap: 12px;
  padding-top: 15px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-view,
.btn-contact {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-view {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(206, 64, 95, 0.3);
}

.btn-view:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(206, 64, 95, 0.4);
  color: #ffffff;
}

.btn-contact {
  background: #f4f4f4;
  color: #333;
}

.btn-contact:hover {
  background: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-view i,
.btn-contact i {
  font-size: 1.1rem;
}

/* Animations d'apparition */
.gallery-card {
  animation: fadeInUp 0.6s ease forwards;
}

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }
.gallery-card:nth-child(4) { animation-delay: 0.4s; }
.gallery-card:nth-child(5) { animation-delay: 0.5s; }
.gallery-card:nth-child(6) { animation-delay: 0.6s; }

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


/* Responsive */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .portfolio-new {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-card {
    height: 350px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-footer {
    flex-direction: column;
  }

  .filter-btn {
    padding: 10px 24px;
    font-size: 0.875rem;
  }

  /* Sur mobile/tablette, afficher l'overlay en permanence */
  .card-content {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .gallery-card {
    height: 320px;
  }

  .card-content {
    padding: 20px;
    transform: translateY(0);
    opacity: 1;
  }

  .btn-view,
  .btn-contact {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
## Services Modern
--------------------------------------------------------------*/
.services {
  padding: 120px 0;
  background: #f8f9fa;
}

.services .service-item {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.services .service-item:hover:before {
  transform: scaleX(1);
}

.services .service-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(206, 64, 95, 0.15);
}

.services .service-item .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.5s ease;
}

.services .service-item:hover .icon {
  transform: rotateY(360deg);
}

.services .service-item .icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.services .service-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.services .service-item:hover h3 {
  color: var(--primary-color);
}

.services .service-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Responsive Services */
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }

  .services .service-item {
    padding: 40px 30px;
    margin-bottom: 25px;
  }

  .services .service-item .icon {
    width: 70px;
    height: 70px;
  }

  .services .service-item .icon i {
    font-size: 2rem;
  }

  .services .service-item h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px 0;
  }

  .services .service-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services .service-item {
    padding: 30px 20px;
  }

  .services .service-item .icon {
    width: 60px;
    height: 60px;
  }

  .services .service-item h3 {
    font-size: 1.15rem;
  }
}

/*--------------------------------------------------------------
## Testimonials Modern - Card Style with Gradient Background
--------------------------------------------------------------*/
.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background shapes */
.testimonials:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(206, 64, 95, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.testimonials:after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.testimonials-bg {
  display: none;
}

/* Swiper container styling */
.testimonials .swiper {
  padding: 20px 0 60px 0;
}

/* Modern Card Design */
.testimonial-item {
  background: #ffffff;
  backdrop-filter: none;
  padding: 50px 45px;
  border-radius: 25px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Accent bar on top */
.testimonial-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-coral) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.testimonial-item:hover:before {
  transform: scaleX(1);
}

.testimonial-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(206, 64, 95, 0.3);
}

/* Quote Icon - Large and decorative */
.testimonial-item .quote-icon-left {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 4rem;
  color: rgba(206, 64, 95, 0.08);
  font-style: normal;
  line-height: 1;
  z-index: 1;
}

.testimonial-item .quote-icon-right {
  display: none;
}

/* Stars rating - Top left */
.testimonial-item .stars {
  margin-bottom: 25px;
  display: flex;
  gap: 5px;
}

.testimonial-item .stars i {
  color: #ffc107;
  font-size: 1.25rem;
}

/* Testimonial text */
.testimonial-item p {
  font-size: 1.125rem;
  color: #2d3142;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

/* Client info section */
.testimonial-item .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
  transition: all 0.4s ease;
  object-fit: cover;
}

.testimonial-item:hover .testimonial-img {
  transform: scale(1.08) rotate(5deg);
  border-color: var(--accent-coral);
  box-shadow: 0 8px 25px rgba(206, 64, 95, 0.4);
}

.testimonial-item .client-details {
  flex: 1;
}

.testimonial-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.testimonial-item h4 {
  font-size: 0.9375rem;
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 600;
}

/* Swiper pagination styling */
.testimonials .swiper-pagination {
  bottom: 20px;
}

.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 35px;
  border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonial-item {
    padding: 35px 30px;
  }

  .testimonial-item .quote-icon-left {
    font-size: 3rem;
    top: 20px;
    right: 20px;
  }

  .testimonial-item p {
    font-size: 1rem;
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
  }

  .testimonial-item h3 {
    font-size: 1.125rem;
  }

  .testimonial-item h4 {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
## Team Modern
--------------------------------------------------------------*/
.team {
  padding: 120px 0;
  background: linear-gradient(160deg, #fdf8f9 0%, #f9f4f5 60%, #fdf0f2 100%);
}

.team .team-member {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(206, 64, 95, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border-top: 4px solid var(--primary-color);
  display: flex;
  flex-direction: column;
}

.team .team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(206, 64, 95, 0.13), 0 4px 12px rgba(0, 0, 0, 0.07);
}

.team .member-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.team .member-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.team .team-member:hover .member-img img {
  transform: scale(1.05);
}

.team .member-info {
  padding: 24px 26px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team .member-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.team .member-role-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(206, 64, 95, 0.09);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.team .member-bio {
  font-size: 0.875rem;
  color: #5a5a6e;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  flex: 1;
}

.team .member-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: gap 0.2s ease-out, color 0.2s ease-out;
  margin-top: auto;
}

.team .member-contact-link:hover {
  gap: 10px;
  color: var(--primary-dark, #a8304d);
}

/* Responsive Team */
@media (max-width: 768px) {
  .team {
    padding: 80px 0;
  }

  .team .member-img img {
    height: 240px;
  }

  .team .member-info {
    padding: 20px 22px 24px;
  }

  .team .member-info h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .team .member-img img {
    height: 220px;
  }

  .team .member-info {
    padding: 18px 20px 22px;
  }
}

/*--------------------------------------------------------------
## Offres Preview – Homepage
--------------------------------------------------------------*/
.offres-preview-section {
  background: linear-gradient(160deg, #fdf8f9 0%, #ffffff 50%, #fdf5f7 100%);
  padding: 100px 0;
}

.offers-swiper-outer {
  position: relative;
}

.offers-swiper {
  overflow: hidden;
  padding-bottom: 48px !important;
}

.offers-swiper .swiper-slide {
  height: auto;
}

.offers-swiper .swiper-pagination {
  bottom: 0;
}

.offers-swiper .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
  width: 8px;
  height: 8px;
  transition: opacity 0.2s, width 0.2s;
}

.offers-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.offers-swiper-outer .swiper-button-prev,
.offers-swiper-outer .swiper-button-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(206, 64, 95, 0.15);
  color: var(--primary-color);
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.offers-swiper-outer .swiper-button-prev::after,
.offers-swiper-outer .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

.offers-swiper-outer .swiper-button-prev:hover,
.offers-swiper-outer .swiper-button-next:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(206, 64, 95, 0.35);
}

.offers-swiper-outer .swiper-button-prev {
  left: -20px;
}

.offers-swiper-outer .swiper-button-next {
  right: -20px;
}

@media (max-width: 768px) {
  .offers-swiper-outer .swiper-button-prev,
  .offers-swiper-outer .swiper-button-next {
    display: none;
  }
}

.home-offer-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(206, 64, 95, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.home-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(206, 64, 95, 0.13), 0 4px 12px rgba(0, 0, 0, 0.07);
}

.home-offer-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.home-offer-img-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.home-offer-card:hover .home-offer-img-link img {
  transform: scale(1.05);
}

.home-offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
}

.home-offer-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-offer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.home-offer-name span {
  color: var(--primary-color);
  display: block;
  font-size: 1rem;
}

.home-offer-desc {
  font-size: 0.82rem;
  color: #5a5a6e;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0eff4;
}

.home-offer-price span {
  display: block;
  font-size: 0.68rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-offer-price strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.home-offer-price strong em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
}

.home-offer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  background: #25D366;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease-out, transform 0.2s ease-out;
}

.home-offer-wa-btn:hover {
  background: #1ebe5d;
  color: #ffffff;
  transform: translateY(-1px);
}

.home-offer-footer--devis {
  padding-top: 14px;
  border-top: 1px solid #f0eff4;
}

.home-offer-devis-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(206, 64, 95, 0.07);
  border: 1.5px solid rgba(206, 64, 95, 0.25);
  padding: 9px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.home-offer-devis-btn:hover {
  background: rgba(206, 64, 95, 0.13);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .offres-preview-section {
    padding: 72px 0;
  }

  .home-offer-img-link img {
    height: 180px;
  }
}

/*--------------------------------------------------------------
## Pricing Modern
--------------------------------------------------------------*/
.pricing {
  padding: 120px 0;
  background: #f8f9fa;
}

.pricing .pricing-item {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing .pricing-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.pricing .pricing-item.featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border-color: var(--primary-dark);
  transform: scale(1.05);
}

.pricing .pricing-item.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.pricing .pricing-item.featured h3,
.pricing .pricing-item.featured h4,
.pricing .pricing-item.featured ul li {
  color: #ffffff !important;
}

.pricing .pricing-item.featured ul li i {
  color: var(--accent-gold) !important;
}

.pricing .pricing-item .advanced {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing .pricing-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.pricing .pricing-item h4 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1;
}

.pricing .pricing-item.featured h4 {
  color: #ffffff;
}

.pricing .pricing-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.pricing .pricing-item ul li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing .pricing-item.featured ul li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing .pricing-item ul li i {
  font-size: 1.125rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing .pricing-item ul li.na {
  opacity: 0.4;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: block;
  width: 100%;
  padding: 13px 16px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.pricing .btn-buy:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 64, 95, 0.3);
  color: #ffffff;
}

.pricing .pricing-item.featured .btn-buy {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.pricing .pricing-item.featured .btn-buy:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Responsive Pricing */
@media (max-width: 991px) {
  .pricing .pricing-item.featured {
    transform: scale(1);
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 80px 0;
  }

  .pricing .pricing-item {
    padding: 40px 30px;
  }

  .pricing .pricing-item h3 {
    font-size: 1.25rem;
    min-height: auto;
  }

  .pricing .pricing-item h4 {
    font-size: 2.5rem;
  }

  .pricing .pricing-item ul {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing .pricing-item {
    padding: 30px 20px;
  }

  .pricing .pricing-item h4 {
    font-size: 2rem;
  }

  .pricing .pricing-item .advanced {
    font-size: 0.75rem;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
## FAQ Modern
--------------------------------------------------------------*/
.faq {
  padding: 120px 0;
  background: #f8f9fa;
}

.faq .faq-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid #e0e0e0;
  position: relative;
}

.faq .faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(206, 64, 95, 0.1);
  transform: translateX(5px);
}

.faq .faq-item.faq-active {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 10px 40px rgba(206, 64, 95, 0.2);
}

.faq .faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111;
  margin: 0;
  padding-right: 50px;
  position: relative;
  transition: color 0.3s ease;
}

.faq .faq-item.faq-active h3 {
  color: #ffffff;
}

.faq .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(206, 64, 95, 0.1);
  border-radius: 50%;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.faq .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq .faq-item.faq-active .faq-content {
  max-height: 500px;
  padding-top: 20px;
  opacity: 1;
}

.faq .faq-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.faq .faq-item.faq-active .faq-content p {
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }

  .faq .faq-item {
    padding: 25px;
  }

  .faq .faq-item h3 {
    font-size: 1rem;
    padding-right: 45px;
  }

  .faq .faq-toggle {
    right: 25px;
    top: 25px;
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }

  .faq .faq-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 0.95rem;
  }

  .faq .faq-toggle {
    right: 20px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
## Contact Modern
--------------------------------------------------------------*/
.contact {
  padding: 120px 0;
  background: #ffffff;
}

.info-wrap {
  background: #f8f9fa;
  padding: 50px 40px;
  border-radius: 20px;
  height: 100%;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}

.info-item i {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.info-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.php-email-form {
  background: #f8f9fa;
  padding: 50px 40px;
  border-radius: 20px;
}

.php-email-form input,
.php-email-form textarea {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(206, 64, 95, 0.1);
  outline: none;
}

.php-email-form button[type="submit"] {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.php-email-form button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(206, 64, 95, 0.3);
}

/*--------------------------------------------------------------
## Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title-modern {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title-modern {
    font-size: 1.75rem;
  }

  .feature-modern-item,
  .stats-modern-item {
    padding: 30px 15px;
  }

  .stats-number {
    font-size: 2.5rem;
  }

  .stats-plus {
    font-size: 2rem;
  }

  .stats-label {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Offers Page – Cards Grid (offres.html)
--------------------------------------------------------------*/

.offers-section {
  padding: 60px 0 100px;
  background: var(--neutral-lighter);
}

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

.offer-card {
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}

.offer-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}

/* Image */
.offer-img-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}

.offer-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}

.offer-card:hover .offer-img-link img {
  transform: scale(1.05);
}

.offer-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: var(--neutral-white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 11px;
  border-radius: 50px;
  pointer-events: none;
}

.offer-photo-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.45);
  color: var(--neutral-white);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Body */
.offer-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-name {
  font-family: var(--heading-font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--neutral-medium);
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-name span {
  color: var(--neutral-dark);
  font-size: 1.1rem;
  font-weight: 800;
  display: block;
  text-transform: none;
  letter-spacing: 0;
}

.offer-desc {
  font-size: 0.84rem;
  color: var(--neutral-medium);
  line-height: 1.55;
  margin: 0;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.offer-tags span {
  background: var(--neutral-lighter);
  color: var(--neutral-dark);
  font-size: 0.71rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--neutral-light);
  white-space: nowrap;
}

/* Footer */
.offer-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Price display */
.offer-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.price-from {
  font-size: 0.68rem;
  color: var(--neutral-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-color);
}

.price-amount em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 2px;
}

/* Commander (WhatsApp) button */
.offer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--neutral-white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease-out;
}

.offer-contact-btn:hover {
  background: #1db954;
  color: var(--neutral-white);
}

/* Devis button (no price) */
.offer-devis-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--neutral-white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  width: 100%;
  transition: background 0.2s ease-out, transform 0.2s ease-out;
}

.offer-devis-btn:hover {
  background: var(--primary-dark);
  color: var(--neutral-white);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/*--------------------------------------------------------------
# Offers CTA Section (nos-offres.html)
--------------------------------------------------------------*/

.cta-offres {
  position: relative;
  background: linear-gradient(135deg, #fff5f7 0%, #fce8ed 100%);
  border-top: 1px solid var(--primary-lighter);
  overflow: hidden;
  padding: 80px 0;
}

.cta-offres::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: var(--primary-color);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
}

.cta-offres::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: var(--primary-lighter);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}

.cta-offres-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.cta-offres-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--neutral-white);
  border: 1.5px solid var(--primary-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--primary-color);
}

.cta-offres-content {
  flex: 1;
}

.cta-offres-title {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--neutral-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta-offres-title em {
  font-style: normal;
  color: var(--primary-color);
}

.cta-offres-text {
  font-size: 0.95rem;
  color: var(--neutral-medium);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 620px;
}

.cta-offres-text strong {
  color: var(--neutral-dark);
  font-weight: 600;
}

.cta-offres-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--neutral-white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease-out, transform 0.2s ease-out;
}

.cta-wa-btn:hover {
  background: #1db954;
  color: var(--neutral-white);
  transform: translateY(-2px);
}

.cta-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neutral-white);
  border: 1.5px solid var(--neutral-light);
  color: var(--neutral-dark);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out;
}

.cta-form-btn:hover {
  background: var(--neutral-lighter);
  border-color: var(--primary-lighter);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.cta-offres-phone {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}

.cta-offres-phone i {
  color: var(--primary-light);
}

.cta-offres-phone a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.cta-offres-phone a:hover {
  color: var(--neutral-white);
}

@media (max-width: 768px) {
  .cta-offres-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .cta-offres-icon {
    margin: 0 auto;
  }

  .cta-offres-actions {
    justify-content: center;
  }

  .cta-offres-phone {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Gallery Page – Photo Grid (galerie.html)
--------------------------------------------------------------*/

/* Banner */
.gallery-hero-banner {
  background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--primary-darker) 100%);
  padding: 80px 0 60px;
  color: var(--neutral-white);
}

.gallery-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.gallery-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.gallery-breadcrumb a:hover {
  color: var(--neutral-white);
}

.gallery-banner-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--neutral-white);
}

.gallery-banner-title span {
  color: var(--primary-light);
}

.gallery-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.6;
  margin: 0;
}

/* Stats bar */
.gallery-stats-bar {
  background: var(--neutral-white);
  border-bottom: 1px solid var(--neutral-light);
  padding: 32px 0;
}

.gallery-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.gallery-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  border-right: 1px solid var(--neutral-light);
}

.gallery-stat:last-child {
  border-right: none;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--neutral-medium);
  margin-top: 4px;
  text-align: center;
}

/* Section wrapper */
.photo-gallery-section {
  padding: 80px 0 100px;
  background: var(--neutral-lighter);
}

/* Filters */
.photo-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.photo-filter-btn {
  background: none;
  border: 1.5px solid var(--neutral-light);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-medium);
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.photo-filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.photo-filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--neutral-white);
}

/* Count */
.photo-count {
  text-align: center;
  font-size: 0.85rem;
  color: var(--neutral-medium);
  margin-bottom: 32px;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Photo item */
.photo-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--neutral-light);
}

.photo-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}

.photo-item:hover .photo-link img {
  transform: scale(1.06);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-cat {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.photo-count-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
  opacity: 1;
}

.photo-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-white);
  line-height: 1.3;
}

/* Empty state */
.photo-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--neutral-medium);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-stat {
    padding: 8px 24px;
  }
}

@media (max-width: 575px) {
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .photo-item {
    aspect-ratio: 16 / 10;
  }

  .photo-overlay {
    opacity: 1;
  }

  .gallery-hero-banner {
    padding: 60px 0 40px;
  }

  .gallery-stat {
    padding: 8px 16px;
    border-right: none;
    border-bottom: 1px solid var(--neutral-light);
    width: 50%;
  }

  .gallery-stat:nth-child(odd) {
    border-right: 1px solid var(--neutral-light);
  }

  .gallery-stat:last-child {
    border-bottom: none;
  }
}

/*--------------------------------------------------------------
# Nos Offres – Catalog Cards (nos-offres.html)
--------------------------------------------------------------*/

.catalog-section {
  padding: 80px 0 100px;
  background: var(--neutral-lighter);
}

/* Card grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.catalog-card {
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* Image area */
.catalog-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--neutral-light);
}

.catalog-card-image > a:first-child {
  display: block;
  width: 100%;
  height: 100%;
}

.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}

.catalog-card:hover .catalog-card-image img {
  transform: scale(1.05);
}

/* Hover overlay */
.catalog-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.catalog-card:hover .catalog-img-overlay {
  opacity: 1;
}

.catalog-img-overlay span {
  color: var(--neutral-white);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(206,64,95,0.9);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* Badge (category) */
.catalog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  color: var(--neutral-white);
  z-index: 2;
}

.catalog-badge-bureaux   { background: var(--primary-color); }
.catalog-badge-habitation { background: #2a9d8f; }
.catalog-badge-commerce  { background: #e76f51; }
.catalog-badge-chantier  { background: #264653; }
.catalog-badge-materiaux { background: #6c757d; }

/* Photo count badge */
.catalog-photo-count {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neutral-white);
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Card body */
.catalog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.catalog-card-title {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.catalog-card-title span {
  color: var(--primary-color);
}

.catalog-card-desc {
  font-size: 0.875rem;
  color: var(--neutral-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Feature list */
.catalog-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.catalog-features li {
  font-size: 0.82rem;
  color: var(--neutral-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.catalog-features li i {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

/* Card footer actions */
.catalog-card-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--neutral-light);
  padding-top: 16px;
  margin-top: auto;
}

.catalog-btn-photos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-medium);
  text-decoration: none;
  padding: 8px 14px;
  border: 1.5px solid var(--neutral-light);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease-out;
  white-space: nowrap;
}

.catalog-btn-photos:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.catalog-btn-devis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neutral-white);
  background: var(--primary-color);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease-out, transform 0.2s ease-out;
  white-space: nowrap;
  margin-left: auto;
}

.catalog-btn-devis:hover {
  background: var(--primary-dark);
  color: var(--neutral-white);
  transform: translateX(2px);
}

/* Price display */
.catalog-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}

.catalog-price-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--neutral-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 2px;
}

.catalog-price-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  white-space: nowrap;
}

.catalog-price-currency {
  font-size: 0.72rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1199px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-section {
    padding: 60px 0 80px;
  }

  .catalog-img-overlay {
    opacity: 1;
  }
}
