/*====================
1. VARIABLES & IMPORTS
====================*/
:root {
    --lotus-pond: #576049;
    --summer-twilight: #7A4547;
    --bark: #56382E;
    --alabaster: #F7F1DF;
    --soft-lichen: #A9B8A0;
    --lavender-mist: #D1C0BC;
}

@import url('https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css');

/*====================
2. RESET & BASE STYLES
====================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--bark);
    background-color: var(--alabaster);
    font-size: 16px;
}

/*====================
3. TYPOGRAPHY
====================*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--lotus-pond);
}

h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; line-height: 1.3; margin-bottom: 1.2rem; }
h3 { font-size: 1.5rem; line-height: 1.4; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; line-height: 1.4; margin-bottom: 0.8rem; }

/* Styles des titres de section */
section h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--lotus-pond);
}

section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 2px;
    background: var(--summer-twilight);
    transition: width 0.3s ease;
}

section h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background: var(--soft-lichen);
    transition: width 0.3s ease;
}

.script-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--summer-twilight);
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0.5rem 0 1.5rem;
}

/*====================
4. LAYOUT & CONTAINERS
====================*/
.section {
    padding: 3rem 2rem 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.03);
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/*====================
5. COMPONENTS
====================*/
/* 5.1 Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--summer-twilight);
    color: var(--alabaster);
}

.btn-primary:hover {
    background-color: var(--lotus-pond);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--lotus-pond);
    color: var(--lotus-pond);
}

.btn-secondary:hover {
    background-color: var(--lotus-pond);
    color: var(--alabaster);
}

/*====================
5. COMPONENTS
====================*/
/* 5.1 Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--summer-twilight);
    color: var(--alabaster);
}

.btn-primary:hover {
    background-color: var(--lotus-pond);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--lotus-pond);
    color: var(--lotus-pond);
}

.btn-secondary:hover {
    background-color: var(--lotus-pond);
    color: var(--alabaster);
}

/* 5.2 Navigation */
.navbar {
    background-color: var(--alabaster);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    width: 45px;
    height: 45px;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-links,
.nav-links ul,
.dropdown-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--summer-twilight);
    transition: width 0.3s ease;
}

.nav-links a:not(.dropdown-toggle):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a {
    color: var(--bark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.dropdown-toggle {
    position: relative;
    padding-right: 1.8em !important;
    color: var(--bark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 0.8em;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    color: currentColor;
    opacity: 0.8;
    z-index: 2;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--summer-twilight);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 3px;
    background: var(--lotus-pond);
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--lotus-pond);
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: -1rem;
    background: var(--alabaster);
    min-width: 280px;
    padding: 0.8rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(86, 56, 46, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(122, 69, 71, 0.1);
}

.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    color: var(--bark);
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: rgba(122, 69, 71, 0.08);
    color: var(--summer-twilight);
    padding-left: 2rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--summer-twilight);
    transform: translateY(-50%);
    transition: width 0.3s ease;
    opacity: 0;
}

.dropdown-menu a:hover::before {
    width: 0.5rem;
    opacity: 1;
}

/* Navigation principale */
.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

/* Styles du dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 1.8em !important;
    color: var(--bark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-toggle{
    margin-right: -18px;
}

.dropdown-toggle:hover,
.dropdown:hover .dropdown-toggle {
    color: var(--summer-twilight);
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 0.8em;
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    color: currentColor;
    opacity: 0.8;
}

.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
}

/* Style spécifique pour le lien actif dans le dropdown */
.dropdown-toggle.active {
    color: var(--summer-twilight);
}

.dropdown-toggle.active::after {
    color: var(--summer-twilight);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: -1rem;
    background: var(--alabaster);
    min-width: 280px;
    padding: 0.8rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(86, 56, 46, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(122, 69, 71, 0.1);
}

/* Assurer que le menu reste visible pendant le hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    color: var(--bark);
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: rgba(122, 69, 71, 0.08);
    color: var(--summer-twilight);
    padding-left: 2rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--summer-twilight);
    transform: translateY(-50%);
    transition: width 0.3s ease;
    opacity: 0;
}

.dropdown-menu a:hover::before {
    width: 0.5rem;
    opacity: 1;
}

/* Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem !important;
    }

    .dropdown-toggle::after {
        position: relative;
        right: 0;
        transform: none;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        margin-left: 1rem;
        border-left: 2px solid rgba(122, 69, 71, 0.2);
        min-width: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        margin: 0;
        border-radius: 4px;
    }

    .dropdown-menu a:hover {
        background: rgba(122, 69, 71, 0.05);
        padding-left: 1.5rem;
    }
}

/*====================
6. FOOTER
====================*/
footer {
    background-color: var(--lotus-pond);
    padding: 2.5rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(247, 241, 223, 0.1), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 35px;
    height: auto;
    opacity: 0.9;
}

.footer-brand p {
    color: var(--alabaster);
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--alabaster);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-contact {
    position: relative;
}

.footer-contact::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--alabaster);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.footer-contact:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    border-top: 1px solid rgba(247, 241, 223, 0.1);
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

.copyright {
    color: var(--alabaster);
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

/*====================
7. MEDIA QUERIES
====================*/

@media (max-width: 768px) { 
    body { font-size: 15px; } 
    h1 { font-size: 2rem; } 
    h2 { font-size: 1.75rem; } 
    h3 { font-size: 1.3rem; } 
    .script-text { font-size: 1.5rem; } 
    .navbar { padding: 0.8rem 1rem; }
    .nav-links { display: none; } 
    .section { padding: 3rem 1.5rem 1rem; } 
    footer {
        padding: 2rem 1rem 1.5rem;
        margin-top: -1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar {
        padding: 0.8rem 1rem;
        background-color: var(--alabaster);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .nav-container {
        padding: 0;
    }

    .logo {
        height: 40px;
        z-index: 1001;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
        padding: 0.5rem;
        margin-right: -0.5rem;
        transition: all 0.3s ease;
        border-radius: 4px;
    }
    
    .nav-toggle:hover {
        background-color: rgba(169, 184, 160, 0.1);
    }

    .nav-links {
        display: none;
        position: fixed;
        background-color: var(--alabaster);
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 2rem 5rem;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        backdrop-filter: blur(5px);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links > li {
        width: 100%;
        margin: 0.5rem 0;
        border-bottom: 1px solid rgba(87, 96, 73, 0.1);
    }
    
    .nav-links > li:last-child {
        border-bottom: none;
    }
    
    .nav-links > li > a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
        color: var(--lotus-pond);
        font-weight: 500;
    }
    
    .nav-links > li > a.active {
        color: var(--summer-twilight);
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: translateY(0) rotate(45deg);
    }

    .nav-toggle.active .hamburger::after {
        transform: translateY(0) rotate(-45deg);
    }
    
    /* Dropdown styling enhancement */
    .dropdown.active .dropdown-toggle {
        color: var(--summer-twilight);
        background-color: rgba(209, 192, 188, 0.15);
        border-radius: 8px;
    }
    
    .dropdown-menu {
        margin-left: 0;
        border-left: 3px solid var(--soft-lichen);
        background-color: rgba(247, 241, 223, 0.5);
        border-radius: 0 8px 8px 0;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(122, 69, 71, 0.08);
        padding-left: 2rem;
    }
}

/* Enhancement for very small screens */
@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0.8rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .nav-links {
        padding: 1.5rem 1.5rem 5rem;
    }
    
    .nav-links > li > a {
        font-size: 1.1rem;
    }
}
  
  /*====================
  Offers Page Specific Styles
  ====================*/
  
  /* Hero Section */
  .hero-section {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 10rem 0 7rem;
      background: url('images/autumn2.jpg') center/cover no-repeat;
      z-index: 1;
  }

  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, 
          rgba(87, 96, 73, 0.85) 0%, 
          rgba(122, 69, 71, 0.8) 100%);
      z-index: -1;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 2;
  }

  .hero-content-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .hero-text-content {
      color: var(--alabaster);
  }

  .hero-text-content h1 {
      font-size: 3.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--alabaster);
      line-height: 1.1;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      position: relative;
      display: inline-block;
  }

  .subtitle-wrapper {
      position: relative;
      margin-bottom: 1.5rem;
  }

  .subtitle-wrapper h2 {
      font-size: 2.2rem;
      color: var(--alabaster);
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  }

  .subtitle-line {
      width: 120px;
      height: 2px;
      background: linear-gradient(to right, var(--alabaster), transparent);
      margin-top: 0.5rem;
  }

  .hero-tagline {
      margin-bottom: 2rem;
  }

  .script-text {
      font-family: 'Dancing Script', cursive;
      font-size: 1.8rem;
      line-height: 1.4;
      color: var(--lavender-mist);
      font-weight: 700;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .hero-quote-card {
      background-color: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(5px);
      padding: 1.5rem 2rem;
      border-radius: 12px;
      margin-bottom: 2rem;
      border-left: 4px solid var(--soft-lichen);
      transition: all 0.3s ease;
  }

  .hero-quote-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      background-color: rgba(255, 255, 255, 0.2);
  }

  .hero-quote-card i {
      color: var(--lavender-mist);
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      display: block;
  }

  .hero-quote-card blockquote {
      margin: 0;
      padding: 0;
  }

  .hero-quote-card p {
      font-style: italic;
      font-size: 1.2rem;
      line-height: 1.6;
      color: var(--alabaster);
  }

  .hero-description {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      color: var(--alabaster);
      opacity: 0.95;
  }

  .hero-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
  }

  .benefit-pill {
      background-color: rgba(255, 255, 255, 0.15);
      color: var(--alabaster);
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
  }

  .benefit-pill:hover {
      background-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
  }

  .benefit-pill i {
      margin-right: 0.5rem;
      font-size: 0.9rem;
      color: var(--lavender-mist);
  }

  .hero-cta {
      display: flex;
      gap: 1.5rem;
      margin-top: 2.5rem;
  }

  .btn {
      min-width: 200px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      text-align: center;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
  }

  .btn i {
      margin-right: 0.5rem;
      font-size: 1rem;
      transition: transform 0.3s ease;
  }

  .btn:hover i {
      transform: translateY(-2px);
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--lotus-pond), var(--summer-twilight));
      color: white;
      box-shadow: 0 5px 15px rgba(122, 69, 71, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(122, 69, 71, 0.4);
  }

  .btn-outline {
      background-color: transparent;
      color: var(--alabaster);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .btn-outline:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .hero-visual {
      position: relative;
  }

  .hero-image-container {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      transform: perspective(1000px) rotateY(5deg);
      transition: all 0.5s ease;
  }

  .hero-image-container:hover {
      transform: perspective(1000px) rotateY(0deg);
  }

  .hero-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.7s ease;
      filter: saturate(1.1) brightness(1.05);
  }

  .hero-image-container:hover .hero-image {
      transform: scale(1.05);
  }

  .image-badge {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: linear-gradient(135deg, var(--lotus-pond), var(--summer-twilight));
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: rotate(5deg);
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .image-badge:hover {
      transform: rotate(0deg) scale(1.05);
  }

  .image-badge span {
      white-space: nowrap;
  }

  .image-badge span:first-child {
      font-weight: 600;
      margin-bottom: 0.2rem;
  }

  /* Animation classes */
  .animate-fade-in {
      animation: fadeIn 1s ease forwards;
      opacity: 0;
  }

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

  .hero-text-content {
      animation-delay: 0.2s;
  }

  .hero-visual {
      animation-delay: 0.5s;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
      .hero-content-wrapper {
          gap: 3rem;
      }
      
      .hero-text-content h1 {
          font-size: 3.2rem;
      }
      
      .subtitle-wrapper h2 {
          font-size: 2rem;
      }
  }

  @media (max-width: 992px) {
      .hero-section {
          padding: 8rem 0 5rem;
          min-height: auto;
      }
      
      .hero-content-wrapper {
          grid-template-columns: 1fr;
          gap: 4rem;
      }
      
      .hero-text-content {
          text-align: center;
      }
      
      .subtitle-line {
          margin: 0.5rem auto 0;
      }
      
      .hero-benefits {
          justify-content: center;
      }
      
      .hero-cta {
          justify-content: center;
      }
      
      .hero-image-container {
          max-width: 600px;
          margin: 0 auto;
          transform: perspective(1000px) rotateY(0);
      }
  }

  @media (max-width: 768px) {
      .hero-section {
          padding: 7rem 0 4rem;
      }
      
      .hero-text-content h1 {
          font-size: 2.8rem;
      }
      
      .subtitle-wrapper h2 {
          font-size: 1.8rem;
      }
      
      .script-text {
          font-size: 1.6rem;
      }
      
      .hero-quote-card {
          padding: 1.2rem 1.5rem;
      }
      
      .hero-quote-card p {
          font-size: 1.1rem;
      }
      
      .hero-description {
          font-size: 1rem;
      }
      
      .hero-cta {
          flex-direction: column;
          gap: 1rem;
          align-items: center;
      }
      
      .btn {
          width: 100%;
          max-width: 280px;
      }
  }

  @media (max-width: 576px) {
      .hero-section {
          padding: 6rem 0 3rem;
      }
      
      .hero-text-content h1 {
          font-size: 2.5rem;
      }
      
      .subtitle-wrapper h2 {
          font-size: 1.6rem;
      }
      
      .script-text {
          font-size: 1.4rem;
      }
      
      .hero-benefits {
          flex-direction: column;
          align-items: center;
      }
      
      .benefit-pill {
          width: 100%;
          justify-content: center;
          max-width: 280px;
      }
      
      .image-badge {
          bottom: 10px;
          right: 10px;
          padding: 0.6rem 1.2rem;
          font-size: 0.8rem;
      }
  }

  /* Offers Section */
  .offers-section {
      padding: 4rem 0 1rem;
      background: linear-gradient(to bottom, rgba(247, 241, 223, 0.8), rgba(247, 241, 223, 0.4));
  }
  
  .offers-section .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 2rem;
  }
  
  .offers-section h2 {
      margin-top: 2rem;
      margin-bottom: 2rem;
      color: var(--lotus-pond);
      font-size: 2rem;
  }
  
  .offers-section h2:first-child {
      margin-top: 0;
  }
  
  .offer-card {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(169, 184, 160, 0.1);
  }

  .offers-section .offer-card:first-of-type {
    margin-top: 1rem;
  }
  
  .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(87, 96, 73, 0.15);
  }
  
  .offer-header {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(169, 184, 160, 0.15);
    padding: 1.8rem 2rem;
    background: linear-gradient(to right, rgba(247, 241, 223, 0.5), rgba(255, 255, 255, 0.9));
  }
  
  .offer-header h3 {
    color: var(--lotus-pond);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .offer-header h3 i {
    color: var(--summer-twilight);
    font-size: 1.4rem;
  }
  
  .offer-header p {
    color: var(--summer-twilight);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
  }
  
  .offer-body {
    display: flex;
    gap: 0;
    align-items: stretch;
    flex: 1;
  }
  
  .offer-content {
    flex: 1;
    padding: 2rem;
  }

  .offer-content p {
    color: var(--bark);
    line-height: 1.7;
    font-size: 1.05rem;
  }

  .offer-content h4 {
    color: var(--lotus-pond);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.3rem;
  }
  
  .offer-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    height: auto;
    min-height: 100%;
    display: flex;
  }
  
  .offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    min-height: 400px;
  }

  /* #duo {
    object-position: 40% center;
} */
  
  .offer-image:hover img {
    transform: scale(1.05);
  }
  
  .offer-cta {
    margin-top: 1.8rem;
  }

  .offer-cta .btn-primary {
    padding: 0.9rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 30px;
    background-color: var(--lotus-pond);
    color: white;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(87, 96, 73, 0.2);
  }

  .offer-cta .btn-primary:hover {
    background-color: var(--summer-twilight);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 69, 71, 0.25);
  }
  
  .feature-list {
    list-style: none;
    padding-left: 0;
    margin: 1.2rem 0;
  }
  
  .feature-list li {
    padding: 0.7rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--bark);
    font-size: 1.05rem;
  }
  
  .feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--lotus-pond);
    position: absolute;
    left: 0;
    opacity: 0.9;
  }
  
  @media (max-width: 992px) {
    .offer-body {
        flex-direction: column;
    }
    
    .offer-image {
        width: 100%;
        max-height: 300px;
        order: -1;
    }
    
    .offer-image img {
        height: 300px;
        min-height: auto;
    }
    
    .offer-content {
        padding: 1.8rem;
    }
  }

  @media (max-width: 768px) {
    .offer-card {
        margin-bottom: 2.5rem;
    }
    
    .offer-header {
        padding: 1.5rem;
    }
    
    .offer-header h3 {
        font-size: 1.5rem;
    }
    
    .offer-content {
        padding: 1.5rem;
    }
    
    .offer-content p,
    .feature-list li {
        font-size: 1rem;
    }
    
    .offer-image {
        max-height: 250px;
    }
    
    .offer-image img {
        height: 250px;
    }
  }
  
  /* Newsletter Section */
  .newsletter-section {
      padding: 2rem 0 1rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 3rem;
      border-top: 1px solid rgba(86, 56, 46, 0.08);
  }
  
  .newsletter-section::before {
      content: '';
      position: absolute;
      top: -50px;
      left: -50px;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(169, 184, 160, 0.2) 0%, rgba(169, 184, 160, 0) 70%);
      border-radius: 50%;
  }
  
  .newsletter-section::after {
      content: '';
      position: absolute;
      bottom: -50px;
      right: -50px;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(209, 192, 188, 0.2) 0%, rgba(209, 192, 188, 0) 70%);
      border-radius: 50%;
  }
  
  .newsletter-content {
      max-width: 600px;
      margin: 0 auto;
      padding: 2rem;
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(86, 56, 46, 0.05);
      position: relative;
      z-index: 2;
  }
  
  .newsletter-content h2 {
      position: relative;
      display: inline-block;
      margin-bottom: 1.5rem;
      color: var(--lotus-pond);
  }
  
  .newsletter-content h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 60px;
      height: 2px;
      background-color: var(--summer-twilight);
      transform: translateX(-50%);
  }
  
  .newsletter-content .script-text {
      margin-bottom: 1rem;
  }
  
  .newsletter-bonus {
      display: inline-block;
      padding: 0.8rem 1.5rem;
      background-color: rgba(255, 255, 255, 0.7);
      border-radius: 8px;
      margin: 1rem 0;
      border-left: 3px solid var(--soft-lichen);
  }
  
  .newsletter-bonus i {
      color: var(--summer-twilight);
      margin-right: 0.5rem;
  }
  
  .privacy-note {
      font-size: 0.85rem;
      color: rgba(86, 56, 46, 0.6);
      margin-top: 1.5rem;
      font-style: italic;
  }
  
  .newsletter-form {
      margin-top: 2.5rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
  }
  
  .newsletter-form input {
      padding: 1rem 1.5rem;
      border: 1px solid rgba(86, 56, 46, 0.1);
      border-radius: 30px;
      min-width: 300px;
      font-family: 'Barlow', sans-serif;
      font-size: 1rem;
      background: rgba(255, 255, 255, 0.95);
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(86, 56, 46, 0.03);
  }
  
  .newsletter-form input:focus {
      outline: none;
      border-color: var(--lotus-pond);
      box-shadow: 0 0 0 3px rgba(87, 96, 73, 0.1);
  }
  
  .newsletter-form .btn-primary {
      padding: 1rem 2rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 10px rgba(122, 69, 71, 0.2);
  }
  
  .newsletter-form .btn-primary i {
      margin-right: 0.5rem;
      font-size: 0.9rem;
  }
  
  .newsletter-form .btn-primary:hover {
      box-shadow: 0 6px 15px rgba(122, 69, 71, 0.3);
  }
  
  /* Animations pour la newsletter */
  @keyframes gentle-float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
      100% { transform: translateY(0); }
  }
  
  @keyframes subtle-pulse {
      0% { box-shadow: 0 4px 10px rgba(122, 69, 71, 0.2); }
      50% { box-shadow: 0 6px 15px rgba(122, 69, 71, 0.3); }
      100% { box-shadow: 0 4px 10px rgba(122, 69, 71, 0.2); }
  }
  
  .newsletter-content h2 {
      animation: gentle-float 6s ease-in-out infinite;
  }
  
  .newsletter-form .btn-primary:hover {
      animation: subtle-pulse 2s ease-in-out infinite;
  }
  
  .newsletter-form input:focus {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .hero-section {
          padding: 5rem 0 3rem;
      }
  
      .hero-section h1 {
          font-size: 2rem;
      }
  
      .offer-card {
          padding: 1.5rem;
          margin-bottom: 2rem;
      }
  
      .offer-card h3 {
          font-size: 1.5rem;
      }
  
      .newsletter-form {
          flex-direction: column;
          align-items: center;
      }
  
      .newsletter-form input,
      .newsletter-form .btn {
          width: 100%;
          max-width: 300px;
      }
  
      .newsletter-content {
          padding: 1.5rem;
      }
      
      .newsletter-form input,
      .newsletter-form .btn {
          width: 100%;
          max-width: 300px;
      }
      
      .newsletter-bonus {
          padding: 0.6rem 1rem;
      }
      
      .newsletter-content h2 {
          font-size: 1.8rem;
      }
  }
  
  @media (max-width: 480px) {
      .offers-section .container {
          padding: 0 1rem;
      }
  
      .offer-card {
          padding: 1.25rem;
      }
  
      .feature-list li {
          padding-left: 1.5rem;
      }
  }
  
  /*====================
  7. MEDIA QUERIES
  ====================*/
  
  @media (max-width: 768px) { 
      body { font-size: 15px; } 
      h1 { font-size: 2rem; } 
      h2 { font-size: 1.75rem; } 
      h3 { font-size: 1.3rem; } 
      .script-text { font-size: 1.5rem; } 
      .navbar { padding: 1rem; }
      .nav-links { display: none; } 
      .section { padding: 3rem 1.5rem 1rem; } 
      footer {
          padding: 2rem 1rem 1.5rem;
          margin-top: -1rem;
      }
  
      .footer-content {
          flex-direction: column;
          gap: 1.5rem;
          text-align: center;
          margin-bottom: 1.5rem;
      }
  
      .footer-brand {
          flex-direction: column;
          gap: 0.5rem;
      }
  
      .footer-nav {
          gap: 1.5rem;
          flex-wrap: wrap;
          justify-content: center;
      }
  
      .navbar {
          padding: 0.5rem 1rem;
      }
  
      .nav-container {
          padding: 0;
      }
  
      .logo {
          height: 40px;
          z-index: 1001;
      }
  
      .nav-toggle {
          display: block;
          z-index: 1001;
      }
  
      .nav-links {
          display: none;
          position: fixed;
          background-color: var(--alabaster);
          top: 60px;
          left: 0;
          width: 100%;
          height: calc(100vh - 60px);
          flex-direction: column;
          align-items: center;
          padding: 2rem;
          gap: 1.5rem;
          box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      }
  
      .nav-links.active {
          display: flex;
      }
  
      .nav-toggle.active .hamburger {
          background: transparent;
      }
  
      .nav-toggle.active .hamburger::before {
          transform: translateY(0) rotate(45deg);
      }
  
      .nav-toggle.active .hamburger::after {
          transform: translateY(0) rotate(-45deg);
      }
  }
  
  @media (max-width: 992px) {
      .hero-content {
          flex-direction: column-reverse;
          gap: 2rem;
      }
      
      .hero-text {
          text-align: center;
      }
      
      .hero-section h1 {
          font-size: 2.4rem;
      }
  }
  
  @media (max-width: 768px) {
      .hero-section {
          padding: 5rem 0 3rem;
      }
  
      .hero-section h1 {
          font-size: 2rem;
      }
  }

  /* Final CTA Section */
  .final-cta {
      padding: 5rem 0 4rem;
      background: linear-gradient(to bottom, #fff, var(--alabaster));
      text-align: center;
      position: relative;
  }

  .final-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(86, 56, 46, 0.1), transparent);
  }

  .final-cta-content {
      max-width: 700px;
      margin: 0 auto;
  }

  .final-cta h2 {
      color: var(--lotus-pond);
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
  }

  .final-cta h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background-color: var(--summer-twilight);
  }

  .final-cta p {
      margin-bottom: 2rem;
      font-size: 1.1rem;
      color: var(--bark);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .final-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin: 2.5rem 0;
  }

  .btn-primary {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(122, 69, 71, 0.2);
  }

  @media (max-width: 768px) {
      .final-cta {
          padding: 3rem 1.5rem 2rem;
      }
      
      .final-cta h2 {
          font-size: 1.8rem;
      }
      
      .final-cta-buttons {
          flex-direction: column;
          align-items: center;
          gap: 1rem;
      }
      
      .final-cta-buttons .btn {
          width: 100%;
          max-width: 300px;
      }
  }
