/**
* Template Name: Arsha
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Design 2025 - Luxueux & Moderne
# Créé par Digiweb
--------------------------------------------------------------*/

/* Variables CSS Modernes 2025 - Design UI/UX Premium */
:root {
  --primary-gold: #C09438;
  --primary-gold-light: #C99853;
  --primary-gold-dark: #9a7530;
  --cream-bg: #faf8f3;
  --cream-light: #f5f1e8;
  --cream-medium: #e8e0d3;
  --cream-dark: #d4c5b0;
  --brown-warm: #8b7355;
  --brown-dark: #6b5a47;
  --dark-bg: #8b7355;
  --dark-section: #6b5a47;
  --text-primary: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #6b7280;
  --spacing-xl: 120px;
  --spacing-lg: 80px;
  --spacing-md: 60px;
  --spacing-sm: 40px;
  --border-radius: 20px;
  --border-radius-lg: 30px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 10px 40px rgba(192, 148, 56, 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s ease;
}

/*--------------------------------------------------------------
# General - Design Premium 2025
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--cream-bg);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-gold-dark);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #C99853;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #C09438;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #C09438;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header - Design Premium 2025
--------------------------------------------------------------*/
#header {
  transition: var(--transition-smooth);
  z-index: 997;
  padding: 20px 0;
  color: #fff!important;
  background: rgba(139, 115, 85, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(192, 148, 56, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
  padding: 15px 0;
  background: rgba(139, 115, 85, 0.95);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(192, 148, 56, 0.2);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo {
  transition: var(--transition-smooth);
}

#header .logo:hover {
  transform: translateY(-2px);
}

#header .logo img {
  width: 15%;
  transition: var(--transition-smooth);
  filter: none;
}

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

/*--------------------------------------------------------------
# Navigation Menu - Design Moderne 2025
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: var(--transition-smooth);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.navbar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 148, 56, 0.1) 0%, rgba(201, 152, 83, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.navbar a:hover::before,
.navbar a.active::before {
  opacity: 1;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 60%;
}

.navbar a .nav-text {
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.navbar a:hover .nav-text,
.navbar a.active .nav-text {
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary-gold);
}

/* Divider pour séparer les liens sociaux */
.nav-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(192, 148, 56, 0.3), transparent);
  margin: 0 10px;
}

/* Liens sociaux dans la navbar */
.nav-item-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding-left: 10px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 148, 56, 0.2);
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.nav-social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 148, 56, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.nav-social-link:hover::before {
  width: 100px;
  height: 100px;
}

.nav-social-link i {
  font-size: 18px;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.nav-social-link:hover {
  background: rgba(192, 148, 56, 0.15);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(192, 148, 56, 0.3);
}

.nav-social-link:hover i {
  transform: scale(1.2) rotate(5deg);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #C09438;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #79562c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--cream-bg);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #79562c;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: var(--transition-smooth);
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 148, 56, 0.2);
  }

  .mobile-nav-toggle:hover {
    background: rgba(192, 148, 56, 0.15);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: scale(1.1);
  }

  .navbar-nav-modern {
    display: none;
  }

  .nav-item-social {
    margin-left: 0;
    padding-left: 0;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #79562c;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile .navbar-nav-modern,
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--cream-bg);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #C99853;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #C09438;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #C99853;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--cream-bg);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #C09438;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section - Design Luxueux 2025
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.85) 0%, rgba(107, 90, 71, 0.9) 100%),
              url('../img/intro-bg-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

/* Solution pour iOS - élément de fond fixe */
#hero::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/intro-bg-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* Fallback pour les navigateurs qui ne supportent pas position: fixed sur pseudo-éléments */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Pour iOS Safari spécifiquement */
@supports (-webkit-touch-callout: none) {
  #hero::before {
    position: absolute;
    height: 120vh;
    top: -10vh;
  }
}

#hero .container {
  z-index: 1;
  perspective: 1000px;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  animation: fadeInUp3D 1s ease-out;
  will-change: transform;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--cream-bg) 0%, rgba(250, 248, 243, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#hero .btn,
.btn-capsul {
  outline: none;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  border-radius: 50px;
  padding: 18px 50px;
  transform-style: preserve-3d;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(192, 148, 56, 0.4),
              0 0 0 0 rgba(192, 148, 56, 0.5);
  position: relative;
  overflow: hidden;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

#hero .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#hero .btn:hover{
  background-color: #d4a852;
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 15px 40px rgba(192, 148, 56, 0.6),
              0 0 0 8px rgba(192, 148, 56, 0.2);
}

#hero .btn:hover::before {
  width: 300px;
  height: 300px;
}

#hero .btn:active {
  transform: translateY(-2px) rotateX(2deg);
}

#hero p {
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp3D 1s ease-out 0.2s both;
  transform-style: preserve-3d;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #C09438;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #C09438;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp3D {
  0% {
    opacity: 0;
    transform: translateY(30px) translateZ(-50px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateZ(0) rotateX(0deg);
  }
}

/*--------------------------------------------------------------
# Responsive Design 2025
--------------------------------------------------------------*/
@media (max-width: 991px) {
  :root {
    --spacing-xl: 80px;
    --spacing-lg: 60px;
    --spacing-md: 40px;
  }
  
  #hero {
    min-height: 90vh;
    padding: 100px 0 60px;
  }
  
  .services .icon-box {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .services {
    background-image: url('../img/sec-bg-01-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/sec-bg-01-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }
  
  #hero {
    width: 100%;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.9) 0%, rgba(107, 90, 71, 0.95) 100%),
                url('../img/intro-bg-01-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  #hero::before {
    background: url('../img/intro-bg-01-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .sec-bg-03{
    background:url("../img/sec-bg-03-mobile.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .sec-bg-03::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/sec-bg-03-mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
  }
  
  .section-title {
    padding-bottom: 40px;
  }
  
  .about-content p {
    font-size: 1rem;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Sections General - Design Spacieux 2025
--------------------------------------------------------------*/


@media (max-width: 768px) {
  section {
    padding: var(--spacing-md) 0;
  }
}

.section-bg {
  background-color: var(--cream-light);
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: none;
  margin-bottom: 15px;
  padding-bottom: 25px;
  position: relative;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-title .section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  bottom: 0;
  left: calc(50% - 40px);
  opacity: 0.5;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
  bottom: -2px;
  left: calc(50% - 25px);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About Section - Design Premium 2025
--------------------------------------------------------------*/
/* Ancienne section about - remplacée par .about-section */
.about {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-gold-dark) 100%);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about h2 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Section subtitle pour sections avec fond doré */
/* Section subtitle pour sections avec fond doré (ancienne section .about) */
.about .section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin-bottom: 50px;
  text-align: center;
}

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

/* Ancien about sur fond doré - texte blanc */
.about .about-content p {
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
  margin-bottom: 25px;
}

.about .about-content p strong {
  color: #ffffff;
  font-weight: 600;
}

/* Nouveau about-section sur fond blanc - texte sombre */
.about-section .about-content p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 25px;
}

.about-section .about-content p strong {
  color: var(--primary-gold);
  font-weight: 600;
}

.about-content .cta-text {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: url('../img/sec-bg-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  perspective: 1000px;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/sec-bg-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@supports (-webkit-touch-callout: none) {
  .services::before {
    position: absolute;
    height: 120%;
    top: -10%;
  }
}




/*--------------------------------------------------------------
# Services Section - Design Premium 2025
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: var(--shadow-soft);
  padding: 60px 40px;
  transition: var(--transition-smooth);
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: #ffffff;
  border-radius: var(--border-radius);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services .icon-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  transform: rotate(45deg);
}

.services .icon-box:hover::before {
  opacity: 1;
}

.services .icon img{ 
  width: 20%;
  padding-bottom: 5%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #C09438;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h3 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  color: #ffffff;
  line-height: 1.3;
}

.services .icon-box h4 a {
  color: #C99853;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  flex-grow: 1;
}

.services .icon-box:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(-2deg) scale(1.02);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.3),
              0 0 0 5px rgba(192, 148, 56, 0.3),
              inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.services .icon-box:hover h4 a {
  color: #fff;
  transform: translateZ(20px);
}

.services .icon-box:hover .icon img {
  transform: translateZ(30px) scale(1.1) rotateY(5deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# CTA Section - Design Premium 2025
--------------------------------------------------------------*/
.cta {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-gold-dark) 100%);
  padding: var(--spacing-lg) 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}


.cta h2 {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.cta a {
  display: inline-block;
  background-color: var(--cream-bg);
  color: #f58e00;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background-color: #f58e00;
  color: #fff;
}

.cta h3 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cta p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff !important;
  background-color: var(--cream-bg);
  color: #C09438;
}

.cta .cta-btn:hover {
  background: #C09438;
  border: 2px solid #C09438;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.social-icons a {
  text-decoration: none;
  color: inherit;
  margin: 10px 15px;
  padding-top: 2%;
  font-size: 2em;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.sec-bg-03{
	background:url("../img/sec-bg-03.jpg");
  background-size: cover;
	background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.sec-bg-03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/sec-bg-03.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@supports (-webkit-touch-callout: none) {
  .sec-bg-03::before {
    position: absolute;
    height: 120%;
    top: -10%;
  }
}
.sec-bg-03::before{
	content:"";
	background:#c095385b;
	position: absolute;
	height: 100%;
	width:100%;
	left:0;
	top:0;
	z-index: -1;
}

.price-section{
	float: left;
	width:100%;
	padding:5rem 0;
	position: relative;
	z-index: 1;
}
.price-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}
.sous-titre{
	font-size: 10px;
}

.info-section{
	float: right;
	width:100%;
	padding:5rem 0;
	position: relative;
	z-index: 1;
}
.info-section .price-count{
	font-size: 2.5rem;
}

@media (max-width: 992px) {
  .info-section .price-count {
    font-size: 27px;
  }
  .info-section h5{
    font-size: 18px !important;
    padding-top: 3%;
  }
}

.info-section .head-sec{
	float: right;
	width:100%;
}

.info-section .service-block-bg{
	background-color: rgba(180,127,65,0.4);
	height: 260px;
	border-radius: 15px;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform-style: preserve-3d;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	position: relative;
	overflow: hidden;
}

.info-section .service-block-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.info-section .service-block-bg:hover::before {
  left: 100%;
}

.info-section .service-block-bg:hover{
	background-color: rgba(180,127,65,0.95);
	transform: translateY(-10px) rotateX(5deg) scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
	            0 0 0 3px rgba(192, 148, 56, 0.3);
}

.info-section h3{
	font-size: 1.4rem;
}
.info-section p {
    font-size: 1rem;
    line-height: 1.3rem;
}
.info-section .box h2{
    font-size:20px;
    margin-bottom:20px;
    margin-top:0;
}

.info-section .box i{
    font-size:20px;
}
.info-section .box{
    display:flex;
}
.info-section .text-box{
    flex:1 1 0;
    text-align:left;
}
.info-section .icon-box{
    line-height: 1.2;
    width:70px;
}
.info-section .service-block-overlay{
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.info-section .service-block-overlay:hover{
	background: var(--cream-bg) none repeat scroll 0 0;
    border-radius: 5px;
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
    float: left;
    margin-top: -10px;
    position: relative;
    width: 100%;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.info-section .service-block i img{
	width:50px;
}
.content-half{
    color:#fff;
}
.content-half ul{
    padding:0;
    list-style:none;
}
.content-half ul li{
    margin:15px 0;
    float:left;
    width:100%;
}
.content-half ul li i{
    float:left;
    font-size:30px;
    padding-top:10px;
    padding-bottom:10px;
}
.content-half ul li .list-content{
    float:left;
    margin-left:20px;
}
.content-half ul li strong{
    font-size:19px;
    font-weight:700;
}
.content-half .bten{
    margin-top:20px;
}
/*--- three Block Panel ---*/
.three-panel-block{
	float: left;
	width: 100%;
}
.three-panel-block i{
	font-size: 1.5rem;
	margin-bottom: 15px;
}
.three-panel-block i.box-round{
	border-color: inherit;
	border-width: 1px;
	border-style:solid;
	padding:16px;
	border-radius: 50%;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #C09438;
  border-bottom: 3px solid #C09438;
  padding: 30px;
  background: var(--cream-bg);
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #C09438;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #C99853;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #C09438;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #C09438;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #C09438;
  border-bottom: 3px solid #C09438;
  padding: 30px;
  background: var(--cream-bg);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message,
.php-email-form .error-message,
.contact-form .error-message {
  display: none !important;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 10px;
}

.contact .php-email-form .error-message.d-block,
.php-email-form .error-message.d-block,
.contact-form .error-message.d-block {
  display: block !important;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message,
.php-email-form .sent-message,
.contact-form .sent-message {
  display: none !important;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 10px;
}

.contact .php-email-form .sent-message.d-block,
.php-email-form .sent-message.d-block,
.contact-form .sent-message.d-block {
  display: block !important;
}

.contact .php-email-form .loading,
.php-email-form .loading,
.contact-form .loading {
  display: none !important;
  background: var(--cream-bg);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading.d-block,
.php-email-form .loading.d-block,
.contact-form .loading.d-block {
  display: block !important;
}

.contact .php-email-form .loading:before,
.php-email-form .loading:before,
.contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #C09438;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #C09438;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #C99853;
}

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

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer - Design Premium 2025
--------------------------------------------------------------*/
#footer {
  font-size: 15px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-section) 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

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

#footer .footer-top {
  padding: var(--spacing-lg) 0 var(--spacing-md) 0;
  background: transparent;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #C99853;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #C99853;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #C09438;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #C09438;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #C09438;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .footer-bottom .credits {
  font-size: 14px;
  line-height: 1.8;
}

#footer .footer-bottom .credits a {
  color: var(--primary-gold);
  transition: var(--transition-smooth);
  text-decoration: none;
}

#footer .footer-bottom .credits a:hover {
  color: var(--primary-gold-light);
  text-decoration: underline;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*--------------------------------------------------------------
# Effets 3D supplémentaires
--------------------------------------------------------------*/

/* Optimisation pour les performances */
.icon-box,
.service-block-bg,
#hero .btn {
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Amélioration du header avec effet 3D */
#header {
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#header.header-scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transform: translateZ(10px);
}

/* Effets 3D pour les titres de section - intégré dans .section-title moderne */

/* Amélioration des cartes de tarifs avec effet 3D */
.service-block-bg h4,
.service-block-bg h5 {
  transform-style: preserve-3d;
  transition: transform 0.3s;
}

.service-block-bg:hover h4,
.service-block-bg:hover h5 {
  transform: translateZ(10px);
}

/* Effet de profondeur pour le conteneur principal */
main {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Animation d'entrée 3D pour les sections */
section[data-aos] {
  transform-style: preserve-3d;
}

/* Amélioration du footer avec effet 3D */
#footer {
  transform-style: preserve-3d;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 148, 56, 0.1) 0%, rgba(201, 152, 83, 0.1) 100%);
  transform: translateZ(-10px);
  z-index: -1;
}

/* Optimisation pour iOS */
@supports (-webkit-touch-callout: none) {
  #hero,
  .services,
  .sec-bg-03 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  .icon-box,
  .service-block-bg {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/*--------------------------------------------------------------
# Cookie Consent - Design Moderne 2025
# Créé par Digiweb
--------------------------------------------------------------*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-warm) 100%);
  color: #ffffff;
  padding: 30px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: 3px solid var(--primary-gold);
}

.cookie-consent-banner.cookie-consent-hide {
  transform: translateY(100%);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-consent-icon {
  font-size: 48px;
  color: var(--primary-gold);
  animation: pulse 2s ease-in-out infinite;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h4 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.cookie-consent-text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cookie-consent-text a {
  color: var(--primary-gold);
  text-decoration: underline;
  transition: var(--transition-smooth);
}

.cookie-consent-text a:hover {
  color: var(--primary-gold-light);
}

.cookie-consent-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}

.btn-accept {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(192, 148, 56, 0.4);
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 148, 56, 0.6);
}

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

.btn-necessary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Paramètres détaillés */
.cookie-settings-content {
  flex-direction: column;
  align-items: stretch;
}

.cookie-consent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-header h4 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0;
}

.btn-close-settings {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  padding: 5px 10px;
  transition: var(--transition-smooth);
  border-radius: 50%;
}

.btn-close-settings:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.cookie-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.cookie-setting-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-setting-info {
  flex: 1;
}

.cookie-setting-info h5 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.cookie-setting-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
  border-radius: 30px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--cream-bg);
  transition: var(--transition-smooth);
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(30px);
}

.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 20px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-consent-icon {
    font-size: 36px;
  }
  
  .cookie-consent-text h4 {
    font-size: 20px;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-cookie {
    width: 100%;
  }
  
  .cookie-setting-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Sections Légales - Design Premium 2025
--------------------------------------------------------------*/
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.legal-section p {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
}

.legal-section ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-section ul li {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.legal-section a {
  color: #ffffff;
  text-decoration: underline;
  transition: var(--transition-smooth);
}

  .legal-section a:hover {
    color: var(--primary-gold-light);
  }

/*--------------------------------------------------------------
# Hero Section Moderne 2025 - Design UI/UX Premium
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  margin-top: 30px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 60;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(18, 18, 18, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-gold);
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-strong);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  transition: var(--transition-smooth);
}

.hero-scroll-indicator a:hover {
  color: var(--primary-gold);
  transform: translateY(5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/*--------------------------------------------------------------
# About Section Moderne 2025 - Design Luxueux & Élégant
--------------------------------------------------------------*/
.about-section {
  background: linear-gradient(180deg, var(--cream-bg) 0%, var(--cream-light) 100%);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(192, 148, 56, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(201, 152, 83, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.about-image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(192, 148, 56, 0.1) 0%, rgba(201, 152, 83, 0.1) 100%);
  border-radius: var(--border-radius-lg);
  filter: blur(30px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-image-wrapper:hover .about-image-glow {
  opacity: 1;
}

.about-main-image {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
              0 0 0 1px rgba(192, 148, 56, 0.1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.6s ease;
  position: relative;
  z-index: 1;
}

.about-image-wrapper:hover .about-main-image {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(192, 148, 56, 0.2);
}

.about-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(192, 148, 56, 0.4),
              0 0 0 3px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(192, 148, 56, 0.5),
              0 0 0 3px rgba(255, 255, 255, 0.3);
}

.about-badge i {
  font-size: 18px;
}

.about-stats-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(192, 148, 56, 0.1);
  z-index: 2;
}

.stat-box {
  text-align: center;
  padding: 10px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box .stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-box .stat-label {
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content-luxury {
  padding: 20px 0;
}

.about-intro {
  margin-bottom: 40px;
}

.lead-text {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.9;
  color: var(--text-primary);
  font-weight: 400;
}

.lead-text strong {
  color: var(--primary-gold);
  font-weight: 700;
}

.about-services-list {
  margin-top: 30px;
}

.services-intro {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.8;
}

.services-intro strong {
  color: var(--primary-gold);
  font-weight: 600;
}

.luxury-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.luxury-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(250, 250, 250, 0.8) 100%);
  border: 1px solid rgba(192, 148, 56, 0.1);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.luxury-services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.luxury-services-list li:hover {
  transform: translateX(10px);
  border-color: rgba(192, 148, 56, 0.3);
  box-shadow: 0 10px 30px rgba(192, 148, 56, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

.luxury-services-list li:hover::before {
  transform: scaleY(1);
}

.service-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(192, 148, 56, 0.1) 0%, rgba(201, 152, 83, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 22px;
  transition: all 0.4s ease;
}

.luxury-services-list li:hover .service-item-icon {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: #ffffff;
  transform: rotate(5deg) scale(1.1);
}

.service-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-item-content strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.service-item-content span {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

.about-cta-compact {
  margin-top: 40px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(192, 148, 56, 0.05) 0%, rgba(201, 152, 83, 0.05) 100%);
  border-radius: 15px;
  border-left: 4px solid var(--primary-gold);
}

.about-cta-compact p {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0;
}

.about-cta-compact p strong {
  color: var(--primary-gold);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
  .about-stats-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 20px;
  }
  
  .about-badge {
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .luxury-services-list li {
    padding: 15px;
  }
  
  .service-item-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 20px;
  }
}

.section-header {
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(192, 148, 56, 0.1);
  color: var(--primary-gold);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Styles modernes pour sections avec .section-header */
.section-header .section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
}

.section-header .section-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 400;
}

/* Correction des textes dans about-section */
.about-section .about-content .lead {
  font-family: "Raleway", sans-serif;
  color: var(--text-primary);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
}

.about-section .about-content .lead strong {
  color: var(--primary-gold);
  font-weight: 700;
}

.about-section .about-content p {
  font-family: "Raleway", sans-serif;
  color: var(--text-primary);
}

.about-section .about-content p strong {
  color: var(--primary-gold);
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section Moderne 2025
--------------------------------------------------------------*/
.services-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-bg) 100%);
}

.service-card {
  background: var(--cream-bg);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-gold);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  background: linear-gradient(135deg, rgba(192, 148, 56, 0.1) 0%, rgba(201, 152, 83, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.service-card p {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--primary-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  margin-top: auto;
}

.service-link:hover {
  color: var(--primary-gold-dark);
  gap: 12px;
}

/*--------------------------------------------------------------
# CTA Section Moderne 2025
--------------------------------------------------------------*/
.cta-section {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 50%, var(--primary-gold-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-content p {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

/*--------------------------------------------------------------
# Pricing Section Moderne 2025
--------------------------------------------------------------*/
.pricing-section {
  padding: var(--spacing-xl) 0;
  background: var(--cream-bg);
}

.pricing-card {
  background: var(--cream-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-gold);
}

.pricing-header {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  padding: 25px;
  text-align: center;
}

.pricing-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-body {
  padding: 30px;
  flex-grow: 1;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: "Raleway", sans-serif;
}

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

.service-name {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.service-name small {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 3px;
}

.service-price {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-left: 20px;
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Social Section Moderne 2025 - Design WOW Premium
--------------------------------------------------------------*/
.social-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-warm) 50%, var(--brown-dark) 100%);
  position: relative;
  overflow: hidden;
}

.social-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(192, 148, 56, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 152, 83, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.social-background-pattern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(192, 148, 56, 0.03) 2px, rgba(192, 148, 56, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 152, 83, 0.03) 2px, rgba(201, 152, 83, 0.03) 4px);
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.social-content-wrapper {
  position: relative;
  z-index: 1;
}

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

.social-header {
  margin-bottom: 60px;
}

.social-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(192, 148, 56, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(192, 148, 56, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(192, 148, 56, 0.6);
  }
}

.social-badge i {
  font-size: 14px;
}

.social-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--cream-bg) 0%, rgba(250, 248, 243, 0.9) 50%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.social-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.8;
}

.social-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 60px 0;
  perspective: 1000px;
}

.social-icon-wrapper {
  position: relative;
  transform-style: preserve-3d;
}

.social-icon {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  overflow: visible;
}

.social-icon-inner {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 25px;
  opacity: 0;
  transition: all 0.6s ease;
  filter: blur(20px);
  z-index: 0;
}

.social-icon-label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Instagram */
.social-icon.instagram .social-icon-inner {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram .social-icon-glow {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook */
.social-icon.facebook .social-icon-inner {
  background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
}

.social-icon.facebook .social-icon-glow {
  background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
}

/* TikTok */
.social-icon.tiktok .social-icon-inner {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-warm) 100%);
}

.social-icon.tiktok .social-icon-glow {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-warm) 100%);
}

/* Hover Effects */
.social-icon:hover {
  transform: translateY(-15px) rotateX(10deg) rotateY(-5deg) scale(1.1);
}

.social-icon:hover .social-icon-inner {
  transform: translateZ(30px) scale(1.15) rotate(5deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.social-icon:hover .social-icon-glow {
  opacity: 0.8;
  width: 150px;
  height: 150px;
}

.social-icon:hover .social-icon-label {
  opacity: 1;
  transform: translateY(0);
}

/* Animation au chargement */
.social-icon-wrapper:nth-child(1) .social-icon {
  animation: float 3s ease-in-out infinite;
}

.social-icon-wrapper:nth-child(2) .social-icon {
  animation: float 3s ease-in-out infinite 0.5s;
}

.social-icon-wrapper:nth-child(3) .social-icon {
  animation: float 3s ease-in-out infinite 1s;
}

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

.social-cta-text {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-cta-text p {
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .social-icons-container {
    gap: 25px;
  }
  
  .social-icon {
    width: 100px;
    height: 100px;
  }
  
  .social-icon-inner {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
  
  .social-title {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Contact Section Moderne 2025
--------------------------------------------------------------*/
.contact-section {
  padding: var(--spacing-xl) 0;
  background: var(--cream-bg);
}

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

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(192, 148, 56, 0.1) 0%, rgba(201, 152, 83, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-details p {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-details a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-details a:hover {
  color: var(--primary-gold-dark);
  text-decoration: underline;
}

.contact-map {
  margin-top: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-form .form-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-form .form-control {
  font-family: "Raleway", sans-serif;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 12px 20px;
  transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(192, 148, 56, 0.1);
}

/*--------------------------------------------------------------
# Footer Moderne 2025
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-section) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--spacing-lg);
}

.footer-top {
  padding-bottom: var(--spacing-md);
}

.footer-widget h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-logo {
  padding: 15px 20px;
}

.footer-widget p {
  font-family: "Raleway", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: "Raleway", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-family: "Raleway", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--primary-gold);
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-contact a:hover {
  color: var(--primary-gold);
}

.footer-links-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links-horizontal a {
  font-family: "Raleway", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links-horizontal a:hover {
  color: var(--primary-gold);
}

.footer-links-horizontal .separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: "Raleway", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--primary-gold-light);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Buttons Moderne 2025
--------------------------------------------------------------*/
.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  border: none;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(192, 148, 56, 0.5);
  background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
  color: #ffffff;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
  :root {
    --spacing-xl: 80px;
    --spacing-lg: 60px;
    --spacing-md: 40px;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .about-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .pricing-card {
    margin-bottom: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto;
  }
}