/*====================
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;
    }
    
    .infos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 1.5rem 1rem;
    }
    
    .info-item-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
  }

/*====================
6. Jouvence page
====================*/

/* Hero Section Specific */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--summer-twilight) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
  }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(87, 96, 73, 0.1);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(247, 241, 223, 0.2);
  color: var(--alabaster);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(247, 241, 223, 0.3);
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--alabaster);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--lavender-mist);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--alabaster);
  margin-bottom: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.hero-intro {
  background: rgba(247, 241, 223, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(247, 241, 223, 0.2);
}

.hero-intro p {
  color: var(--alabaster);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.hero-cta-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 220px;
  text-align: center;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--alabaster);
  border: 2px solid var(--alabaster);
}

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

.hero-image-container {
  position: relative;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-decoration {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 241, 223, 0.15) 0%, rgba(169, 184, 160, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(209, 192, 188, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.hero-image {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}


.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image {
  width: 480px;
  height: 340px;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.secondary-image {
  width: 320px;
  height: 230px;
  top: 8%;
  right: -2%;
  transform: rotate(12deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.tertiary-image {
  width: 300px;
  height: 210px;
  bottom: 8%;
  left: -1%;
  transform: rotate(-15deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .hero-section {
      padding-top: 6rem;
    }
    
    .hero-content-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-image-container {
      height: 400px;
      margin-top: 2rem;
    }
    
    .hero-image.main-image {
      width: 340px;
      height: 260px;
      position: static;
      transform: none;
      margin: 0 auto;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
    }
    
    .hero-decoration {
      display: none;
    }
    
    .hero-image.secondary-image,
    .hero-image.tertiary-image {
      display: none;
    }
}

/*====================
4. BENEFITS SECTION
====================*/
.benefits-section {
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, var(--alabaster) 0%, #f8f6f0 100%);
  position: relative;
}

/* Benefits Intro */
.benefits-intro {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.benefits-intro-content {
  max-width: 600px;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(87, 96, 73, 0.1);
  border: 1px solid var(--soft-lichen);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lotus-pond);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.badge-text {
  color: var(--lotus-pond);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefits-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.benefits-description {
  font-size: 1.3rem;
  color: var(--bark);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

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

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

.benefits-intro-image:hover img {
  transform: scale(1.05);
}

.image-accent {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--lotus-pond), var(--soft-lichen));
  border-radius: 50%;
  opacity: 0.9;
}

/* Benefits Showcase */
.benefits-showcase {
  margin-bottom: 4rem;
}

.showcase-main {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  border: 1px solid rgba(169, 184, 160, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(87, 96, 73, 0.1) 0%, rgba(169, 184, 160, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-item:hover .image-overlay {
  opacity: 1;
}

.showcase-content {
  padding: 1.5rem 0;
}

.showcase-content-full {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(87, 96, 73, 0.05) 0%, rgba(169, 184, 160, 0.08) 100%);
  border-radius: 20px;
  border: 1px solid rgba(169, 184, 160, 0.15);
  text-align: center;
}

.showcase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(87, 96, 73, 0.3);
}

.showcase-content-full .showcase-icon {
  margin: 0 auto 1.5rem auto;
}

.showcase-icon svg {
  width: 28px;
  height: 28px;
}

.showcase-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
}

.showcase-content p {
  font-size: 1.1rem;
  color: var(--bark);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  opacity: 0.9;
}

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

.benefit-features li {
  padding: 0.5rem 0;
  color: var(--bark);
  position: relative;
  padding-left: 1.5rem;
  opacity: 0.8;
}

.benefit-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lotus-pond);
  font-weight: 600;
}

.benefit-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lotus-pond);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--bark);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.showcase-grid .showcase-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(169, 184, 160, 0.15);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.showcase-grid .showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--soft-lichen);
}

.showcase-grid .showcase-image {
  height: 200px;
}

.showcase-grid .showcase-content {
  padding: 2rem;
}

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

.showcase-grid .showcase-content p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* Simple Benefits CTA */
.benefits-simple-cta {
  text-align: center;
  padding: 1rem 0;
}

.cta-teaser {
  font-size: 1.1rem;
  color: var(--bark);
  margin: 0 0 1rem 0;
  font-style: italic;
  opacity: 0.9;
}

.simple-cta-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  box-shadow: 0 8px 20px rgba(87, 96, 73, 0.3);
}

.simple-cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(87, 96, 73, 0.4);
  background: linear-gradient(135deg, var(--soft-lichen) 0%, var(--lotus-pond) 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(87, 96, 73, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(87, 96, 73, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--lotus-pond);
  border-color: var(--soft-lichen);
}

.btn-outline:hover {
  background: var(--soft-lichen);
  color: white;
  transform: translateY(-2px);
}

/* Simple CTA Button */
.simple-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(169, 184, 160, 0.2);
}

.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(87, 96, 73, 0.3);
  letter-spacing: 0.5px;
}

.reserve-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(87, 96, 73, 0.4);
  background: linear-gradient(135deg, var(--soft-lichen) 0%, var(--lotus-pond) 100%);
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
  .pricing-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-right {
    order: -1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .showcase-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 4rem 0;
  }
  
  .benefits-title {
    font-size: 2.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Premium Program Section */
.luxury-program-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--alabaster) 0%, #f5f2e8 50%, #f0ede1 100%);
  position: relative;
  overflow: hidden;
}

.luxury-program-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(87, 96, 73, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(169, 184, 160, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Program Header */
.program-header {
  text-align: center;
  margin-bottom: 6rem;
}


.program-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.program-subtitle {
  font-size: 1.3rem;
  color: var(--bark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.9;
}

/* Program Timeline */
.program-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 6rem auto;
}

.timeline-line {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--lotus-pond) 0%, var(--soft-lichen) 50%, var(--lotus-pond) 100%);
  border-radius: 2px;
}

.program-day-card {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 160px;
}

.day-number {
  position: absolute;
  left: 0;
  top: 2rem;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.day-number .number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 10px 30px rgba(87, 96, 73, 0.3);
  position: relative;
  z-index: 2;
}

.day-indicator {
  width: 20px;
  height: 20px;
  background: var(--lotus-pond);
  border-radius: 50%;
  margin-top: 1rem;
  box-shadow: 0 0 15px rgba(87, 96, 73, 0.4);
}

@keyframes pulse-indicator {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.day-content-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.program-day-card:hover .day-content-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--soft-lichen);
}

.day-image-container {
  position: relative;
  overflow: hidden;
}

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

.program-day-card:hover .day-image {
  transform: scale(1.1);
}

.image-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(87, 96, 73, 0.2) 0%, rgba(169, 184, 160, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.program-day-card:hover .image-gradient-overlay {
  opacity: 1;
}

.day-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(87, 96, 73, 0.9);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.day-badge svg {
  width: 16px;
  height: 16px;
}

.day-details {
  padding: 2.5rem;
  color: var(--bark);
}

.day-header-premium {
  margin-bottom: 2.5rem;
}

.day-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

.day-theme {
  display: inline-block;
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.day-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bark);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.8;
}

.day-time svg {
  width: 18px;
  height: 18px;
  color: var(--lotus-pond);
}

.activities-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.activity-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(169, 184, 160, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(169, 184, 160, 0.15);
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: rgba(169, 184, 160, 0.12);
  border-color: var(--soft-lichen);
  transform: translateX(3px);
}

.activity-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(87, 96, 73, 0.15) 0%, rgba(169, 184, 160, 0.1) 100%);
  border: 1px solid var(--soft-lichen);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lotus-pond);
}

.activity-icon svg {
  width: 28px;
  height: 28px;
}

.activity-content h4 {
  color: var(--lotus-pond);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

.activity-content p {
  color: var(--bark);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-size: 1rem;
  opacity: 0.9;
}

.activity-duration {
  display: inline-block;
  background: rgba(87, 96, 73, 0.1);
  color: var(--lotus-pond);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(87, 96, 73, 0.2);
}

/* Program Highlights */
.program-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--soft-lichen);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: white;
  box-shadow: 0 8px 25px rgba(87, 96, 73, 0.2);
}

.highlight-icon svg {
  width: 40px;
  height: 40px;
}

.highlight-card h3 {
  color: var(--lotus-pond);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
}

.highlight-card p {
  color: var(--bark);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .day-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .day-image-container {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .luxury-program-section {
    padding: 4rem 0;
  }
  
  .program-title {
    font-size: 2.5rem;
  }
  
  .program-day-card {
    padding-left: 0;
    margin-left: 2rem;
  }
  
  .timeline-line {
    left: 40px;
  }
  
  .day-number {
    left: -40px;
    width: 120px;
  }
  
  .day-number .number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .program-highlights {
    grid-template-columns: 1fr;
  }
}

/* Hébergement Section */
.hebergement-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f6f0 0%, #f1ede3 100%);
}

.hebergement-section h2 {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--lotus-pond);
}

.hebergement-intro {
  margin-bottom: 3rem;
}

/* Luxury Accommodation Section */
.luxury-accommodation-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.luxury-accommodation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(169, 184, 160, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(169, 184, 160, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.luxury-accommodation-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-grain" width="2" height="2" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-grain)"/></svg>') repeat;
  pointer-events: none;
}

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

/* Luxury Header */
.luxury-header {
  text-align: center;
  margin-bottom: 6rem;
}

.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(169, 184, 160, 0.2) 0%, rgba(169, 184, 160, 0.1) 100%);
  border: 1px solid rgba(169, 184, 160, 0.3);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
  color: #d4af37;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

.luxury-badge > .badge-text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.luxury-title {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(169, 184, 160, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.luxury-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Luxury Showcase */
.luxury-showcase {
  margin-bottom: 6rem;
}

.showcase-hero {
  margin-bottom: 4rem;
}

.hero-image-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Luxury Amenities */
.luxury-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.amenity-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 3rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.amenity-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.amenity-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
}

.amenity-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.amenity-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.stars {
  color: #d4af37;
  font-size: 1rem;
}

.rating-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.amenity-content {
  color: rgba(255, 255, 255, 0.8);
}

.amenity-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.amenity-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

/* Luxury Guarantee */
.luxury-guarantee {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(20px);
}

/* Value Highlights Section */
.value-highlights {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-highlights h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.highlight-icon {
  width: 24px;
  height: 24px;
  color: var(--lotus-pond);
  flex-shrink: 0;
}

.highlight-item span {
  color: var(--bark);
  font-weight: 500;
  line-height: 1.4;
}

.pricing-left,
.pricing-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 40px;
  height: 40px;
}

.guarantee-text {
  text-align: left;
}

.guarantee-text h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

.guarantee-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .luxury-accommodation-section {
    padding: 6rem 0;
  }
  
  .luxury-title {
    font-size: 2.5rem;
  }
  
  .luxury-amenities {
    grid-template-columns: 1fr;
  }
  
  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee-text {
    text-align: center;
  }
  
  .hero-features {
    justify-content: center;
  }
}
  
.hebergement-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hebergement-main-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  max-width: 800px;
  margin: 0 auto;
}

.hebergement-main-image:hover {
  transform: translateY(-5px);
}

.hebergement-main-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hebergement-main-image:hover img {
  transform: scale(1.02);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
}

.image-caption h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.image-caption p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.hebergement-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 1rem;
}

.hebergement-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(169, 184, 160, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hebergement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lotus-pond), #8fbc8f);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.hebergement-card:hover::before {
  transform: scaleX(1);
}

.hebergement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(169, 184, 160, 0.2);
}

.card-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem auto;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-image::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--lotus-pond), #8fbc8f, var(--lotus-pond));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hebergement-card:hover .card-image::after {
  opacity: 1;
}

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

.hebergement-card:hover .card-image img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

.card-content h3 {
  color: var(--lotus-pond);
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.card-content p {
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
  opacity: 0.85;
  max-width: 280px;
  margin: 0 auto;
}

.hebergement-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #555;
}

.hebergement-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.hebergement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hebergement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(87, 96, 73, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(169, 184, 160, 0.2);
}

.hebergement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(87, 96, 73, 0.15);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--summer-twilight), var(--bark));
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.card-icon i {
  color: white;
  font-size: 2rem;
}

.card-content h3 {
  margin: 0 0 1rem 0;
  color: var(--lotus-pond);
  font-size: 1.3rem;
  font-weight: 600;
}

.card-content p {
  margin: 0;
  line-height: 1.6;
  color: #666;
}

/* Tarifs Section */
.tarifs-section {
  padding: 3rem 0;
  background: white;
}

.tarifs-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--lotus-pond);
}

.pricing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 400px;
}

.tarif-card {
  background: linear-gradient(135deg, var(--lotus-pond), var(--bark));
  color: white;
  border-radius: 25px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 50px rgba(87, 96, 73, 0.4);
  margin: 0;
  position: relative;
  overflow: hidden;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.tarif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.tarif-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.1));
  border-radius: 27px;
  z-index: -1;
}

.tarif-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tarif-price {
  margin-bottom: 1.5rem;
}

.tarif-price .price {
  font-size: 4rem;
  font-weight: 800;
  display: block;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.tarif-price .price-detail {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

.tarif-description {
  margin-bottom: 2rem;
}

.tarif-description p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
}

.places-limited {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.25);
  padding: 1.5rem 2rem;
  border-radius: 18px;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  font-weight: 600;
  text-align: center;
}

.places-limited i {
  font-size: 1.3rem;
  opacity: 0.95;
  animation: pulse 2s infinite;
}

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

.tarif-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Practical Info Section */
.practical-info-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--alabaster) 0%, #f8f6f0 100%);
  position: relative;
}

.practical-header {
  text-align: center;
  margin-bottom: 5rem;
}

.practical-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.practical-subtitle {
  font-size: 1.3rem;
  color: var(--bark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.practical-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.practical-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.practical-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.practical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--soft-lichen);
}

.practical-card-featured {
  border: 2px solid var(--soft-lichen);
  background: linear-gradient(135deg, rgba(169, 184, 160, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid rgba(169, 184, 160, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 20px rgba(87, 96, 73, 0.3);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin: 0;
  letter-spacing: -0.01em;
}

.card-content {
  padding: 1rem 2rem 2rem 2rem;
}

.info-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(169, 184, 160, 0.1);
}

.info-detail:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--lotus-pond);
  font-size: 0.95rem;
  min-width: 80px;
}

.detail-value {
  color: var(--bark);
  font-size: 1rem;
  text-align: right;
  flex: 1;
  margin-left: 1rem;
}

.detail-note {
  color: var(--bark);
  opacity: 0.7;
  font-size: 0.85rem;
  text-align: right;
  margin-top: 0.25rem;
}

.info-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(87, 96, 73, 0.1) 0%, rgba(169, 184, 160, 0.08) 100%);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 15px;
  padding: 1rem;
  margin-top: 1rem;
  color: var(--lotus-pond);
  font-weight: 600;
}

.info-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--lotus-pond);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.practical-list li {
  padding: 0.75rem 0;
  color: var(--bark);
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid rgba(169, 184, 160, 0.1);
}

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

.practical-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lotus-pond);
  font-weight: 600;
}

.transport-options {
  margin-top: 1rem;
}

.transport-option {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(169, 184, 160, 0.1);
}

.transport-option:last-child {
  border-bottom: none;
}

.transport-option strong {
  color: var(--lotus-pond);
  font-weight: 600;
}

.transport-option span {
  color: var(--bark);
  opacity: 0.8;
  font-size: 0.9rem;
}

.condition-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(169, 184, 160, 0.1);
}

.condition-item:last-child {
  border-bottom: none;
}

.condition-label {
  font-weight: 600;
  color: var(--lotus-pond);
  font-size: 0.95rem;
}

.condition-value {
  color: var(--bark);
  font-size: 0.9rem;
  text-align: right;
}

/* Practical Sidebar */
.practical-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Responsive Design for Practical Info Section */
@media (max-width: 1024px) {
  .practical-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .practical-sidebar {
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .practical-section {
    padding: 4rem 0;
  }
  
  .practical-content {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .practical-main {
    gap: 2rem;
  }
  
  .practical-sidebar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .practical-card {
    border-radius: 20px;
  }
  
  .card-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .card-content {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
  }
  
  .card-header h3 {
    font-size: 1.3rem;
  }
  
  .info-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0;
  }
  
  .detail-value {
    text-align: left;
    margin-left: 0;
  }
  
  .detail-note {
    text-align: left;
  }
  
  .practical-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-header,
  .weather-header {
    padding: 1.25rem;
  }
  
  .contact-icon,
  .weather-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .practical-content {
    padding: 0 0.5rem;
  }
  
  .card-header {
    padding: 1.25rem 1.25rem 0.75rem 1.25rem;
  }
  
  .card-content {
    padding: 0.75rem 1.25rem 1.25rem 1.25rem;
  }
  
  .card-header h3 {
    font-size: 1.2rem;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .info-highlight {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .practical-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
  
  .transport-option {
    padding: 0.75rem 0;
  }
  
  .condition-item {
    padding: 0.5rem 0;
  }
}

/* Conditions de réservation */
.practical-conditions {
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.conditions-toggle {
  cursor: pointer;
  transition: all 0.3s ease;
}

.conditions-toggle:hover {
  background: rgba(169, 184, 160, 0.05);
}

.conditions-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(87, 96, 73, 0.05) 0%, rgba(169, 184, 160, 0.08) 100%);
  border-bottom: 1px solid rgba(169, 184, 160, 0.1);
}

.conditions-icon {
  width: 24px;
  height: 24px;
  color: var(--lotus-pond);
  flex-shrink: 0;
}

.conditions-header span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lotus-pond);
  flex: 1;
}

.chevron-icon {
  width: 20px;
  height: 20px;
  color: var(--lotus-pond);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.conditions-toggle.active .chevron-icon {
  transform: rotate(180deg);
}

.conditions-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.conditions-content.active {
  max-height: 2000px;
  padding: 2rem;
}

.conditions-section {
  margin-bottom: 2rem;
}

.conditions-section:last-child {
  margin-bottom: 0;
}

.conditions-section h4 {
  color: var(--lotus-pond);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(169, 184, 160, 0.2);
}

.conditions-section h5 {
  color: var(--lotus-pond);
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
}

.conditions-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conditions-section li {
  padding: 0.75rem 0;
  color: var(--bark);
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid rgba(169, 184, 160, 0.1);
  line-height: 1.6;
}

.conditions-section li:last-child {
  border-bottom: none;
}

.conditions-section li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lotus-pond);
  font-weight: 600;
  font-size: 1.2rem;
}

.conditions-section p {
  color: var(--bark);
  line-height: 1.6;
  margin: 0;
}

.conditions-section strong {
  color: var(--lotus-pond);
  font-weight: 600;
}

.conditions-section a {
  color: var(--lotus-pond);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.conditions-section a:hover {
  color: var(--soft-lichen);
  text-decoration: underline;
}

.payment-option {
  background: linear-gradient(135deg, rgba(169, 184, 160, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.payment-option h5 {
  margin-top: 0;
}

/* Responsive pour les conditions */
@media (max-width: 768px) {
  .conditions-header {
    padding: 1.25rem 1.5rem;
  }
  
  .conditions-content.active {
    padding: 1.5rem;
  }
  
  .conditions-section h4 {
    font-size: 1.1rem;
  }
  
  .conditions-section li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
  }
  
  .payment-option {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .conditions-header {
    padding: 1rem 1.25rem;
  }
  
  .conditions-content.active {
    padding: 1.25rem;
  }
  
  .conditions-header span {
    font-size: 1rem;
  }
  
  .conditions-section h4 {
    font-size: 1rem;
  }
  
  .conditions-section li {
    font-size: 0.9rem;
  }
}

.contact-card,
.weather-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-header,
.weather-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(87, 96, 73, 0.05) 0%, rgba(169, 184, 160, 0.08) 100%);
  border-bottom: 1px solid rgba(169, 184, 160, 0.1);
}

.contact-icon,
.weather-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-icon svg,
.weather-icon svg {
  width: 20px;
  height: 20px;
}

.contact-header h3,
.weather-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin: 0;
}

.contact-content,
.weather-content {
  padding: 1.5rem;
}

.contact-content p {
  color: var(--bark);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(87, 96, 73, 0.05);
  border: 1px solid rgba(169, 184, 160, 0.2);
  border-radius: 12px;
  color: var(--lotus-pond);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-method:hover {
  background: var(--soft-lichen);
  color: white;
  transform: translateX(3px);
}

.contact-method svg {
  width: 18px;
  height: 18px;
}

.weather-temp {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--lotus-pond);
  margin-bottom: 0.5rem;
}

.weather-desc {
  color: var(--bark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.weather-note {
  color: var(--bark);
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Infos Section */
.infos-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--alabaster) 0%, rgba(247, 241, 223, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.infos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(169, 184, 160, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.infos-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--lotus-pond);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.infos-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--summer-twilight), var(--bark));
  border-radius: 2px;
}

.infos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.info-item {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(87, 96, 73, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(169, 184, 160, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(169, 184, 160, 0.02), rgba(209, 192, 188, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(87, 96, 73, 0.15);
  border-color: rgba(169, 184, 160, 0.2);
}

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

.info-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--summer-twilight), var(--bark));
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  box-shadow: 0 10px 30px rgba(122, 69, 71, 0.2);
  position: relative;
  z-index: 2;
}

.info-item i {
  color: white;
  font-size: 2rem;
}

.info-item h4 {
  color: var(--lotus-pond);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.info-item p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Final CTA in Practical Info */
.practical-final-cta {
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .practical-final-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lotus-pond);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
  }
  
  .practical-final-cta p {
    font-size: 1.2rem;
    color: var(--bark);
    opacity: 0.9;
    margin: 0 0 2rem 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .practical-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lotus-pond) 0%, var(--soft-lichen) 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(87, 96, 73, 0.3);
    letter-spacing: 0.5px;
  }
  
  .practical-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(87, 96, 73, 0.4);
    background: linear-gradient(135deg, var(--soft-lichen) 0%, var(--lotus-pond) 100%);
  }

/* Responsive Design */
@media (max-width: 1200px) {

  .tarifs-section {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@media (max-width: 768px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-image-container {
    height: 400px;
  }
  
  .hero-image.main-image {
    width: 90%;
    height: 80%;
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto;
    transform: none;
  }
  
  .hero-decoration {
    width: 300px;
    height: 300px;
  }
  
  .hero-image.secondary-image,
  .hero-image.tertiary-image {
    display: none;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .luxury-container {
    padding: 0;
  }

  .timeline-line{
    display: none;
  }

  .program-day-card{
    margin: 0;
  }

  .day-details{
    padding: 1rem;
  }
  
  .programme-day {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  
  .programme-day:nth-child(even) .programme-image,
  .programme-day:nth-child(even) .programme-content {
    order: unset;
  }
  
  .programme-image {
    height: 200px;
  }

  .program-timeline{
    margin-bottom: 3rem;
  }
  
  .programme-content {
    padding: 2rem 1.5rem;
  }
  
  .day-header h3 {
    font-size: 1.25rem;
  }
  
  .hebergement-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hebergement-main-image img {
    height: 300px;
  }
  
  .hebergement-card {
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .card-image {
    height: 70px;
  }
  
  .benefits-section {
    padding: 3rem 0;
  }
  
  .benefits-section h2 {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .benefit-card-inner {
    padding: 1.25rem;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .benefit-content h3 {
    font-size: 1rem;
  }
  
  .benefit-content p {
    font-size: 0.85rem;
  }
  
  .benefits-cta {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .benefits-cta-content h3 {
    font-size: 1.25rem;
  }
  
  .benefits-cta-content p {
    font-size: 0.9rem;
  }

  .tarifs-section .container h2 {
    display: table;
    margin: 0 auto 3rem auto;
  }

  .bonus-section{
    padding: 0 2rem;
  }
  
  .infos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .info-item {
    padding: 2rem 1.5rem;
  }
  
  .info-item-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .info-item i {
    font-size: 1.5rem;
  }
  
  .info-item h4 {
    font-size: 1.2rem;
  }
  
  .info-item p {
    font-size: 0.9rem;
  }
  
  .pricing-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-cta-container {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hero-cta {
    width: 100%;
    max-width: 300px;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
  }

  .highlight-item{
    justify-content: center;
  }

  .highlight-icon{
    margin: 0;
  }

  .practical-info-section{
    padding: 4rem 0;
  }

  .practical-header{
    margin-bottom: 3rem;
  }
}
