/*====================
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;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10rem 0 7rem;
    background: url('images/couplenature.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.8) 0%, 
        rgba(122, 69, 71, 0.75) 100%);
    z-index: -1;
}

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

.hero-text-content {
    color: var(--alabaster);
    padding-right: 2rem;
}

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

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

.subtitle-wrapper h2 {
    font-size: 2.2rem;
    color: var(--alabaster);
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    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-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--alabaster);
    opacity: 0.95;
}

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

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

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

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

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

.btn {
    min-width: 180px;
    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;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    color: var(--summer-twilight);
    font-size: 2.2rem;
    opacity: 0.8;
    margin-bottom: 1.2rem;
    display: block;
}

.quote-card blockquote p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--bark);
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-author {
    text-align: right;
    font-size: 1rem;
    color: var(--summer-twilight);
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    z-index: 1;
    height: 350px;
}

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

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

/* 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 h1 {
    animation-delay: 0.2s;
}

.subtitle-wrapper {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-values {
    animation-delay: 0.8s;
}

.hero-cta {
    animation-delay: 1s;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .hero-text-content {
        padding-right: 0;
    }
    
    .hero-image-container {
        height: 300px;
    }
}

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

@media (max-width: 768px) {
    .hero-section {
        padding: 7rem 0 4rem;
        min-height: auto;
    }
    
    .hero-text-content h1 {
        font-size: 2.8rem;
    }
    
    .subtitle-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .quote-card {
        padding: 2rem;
        transform: translateY(0);
    }
    
    .quote-card blockquote p {
        font-size: 1.1rem;
    }
    
    .hero-image-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-values {
        flex-direction: column;
        align-items: center;
    }
    
    .value-pill {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

/* Mission Section */
.mission-section {
    padding: 5rem 0 3rem;
    position: relative;
    background: linear-gradient(135deg, #fff, rgba(247, 241, 223, 0.5));
    overflow: hidden;
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(247, 241, 223, 0.8), transparent);
    z-index: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mission-content {
    padding-right: 2rem;
    position: relative;
}

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--summer-twilight);
    position: relative;
    display: inline-block;
}

.mission-content h2 i {
    color: var(--lotus-pond);
    margin-right: 0.5rem;
    font-size: 1.8rem;
    vertical-align: middle;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--lotus-pond), var(--summer-twilight));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mission-content h2:hover::after {
    width: 150px;
}

.mission-details {
    margin: 2.5rem 0;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(86, 56, 46, 0.12);
}

.mission-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bark);
    position: relative;
    display: inline-block;
}

.mission-details h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--soft-lichen);
    border-radius: 2px;
}

.mission-list {
    margin: 1.5rem 0;
}

.mission-list li {
    margin-bottom: 1.2rem;
    padding: 1.2rem 1.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid var(--lotus-pond);
    box-shadow: 0 5px 15px rgba(86, 56, 46, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.mission-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    border-left-color: var(--summer-twilight);
}

.mission-list li i {
    color: var(--lotus-pond);
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mission-list li:hover i {
    transform: scale(1.2);
    color: var(--summer-twilight);
}

.mission-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(86, 56, 46, 0.2);
    aspect-ratio: 4/5;
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
    z-index: 1;
}

.mission-visual:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(86, 56, 46, 0.25);
}

.mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.95);
}

.mission-visual:hover .mission-img {
    transform: scale(1.05);
    filter: brightness(1);
}

.mission-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(transparent, rgba(86, 56, 46, 0.85));
    text-align: center;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.mission-visual:hover .mission-overlay {
    transform: translateY(0);
    opacity: 1;
}

.mission-quote {
    font-family: 'Dancing Script', cursive;
    color: var(--alabaster);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
    transform: translateY(5px);
    transition: transform 0.3s ease;
}

.mission-visual:hover .mission-quote {
    transform: translateY(0);
}

.mission-cta {
    margin-top: 3rem;
    text-align: left;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.08);
    transition: transform 0.3s ease;
}

.mission-cta:hover {
    transform: translateY(-5px);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--bark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-text i {
    color: var(--summer-twilight);
    margin-right: 0.5rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--lotus-pond), var(--summer-twilight));
    color: var(--alabaster);
    border: none;
    box-shadow: 0 10px 20px rgba(122, 69, 71, 0.3);
}

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

.cta-buttons .btn-primary i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mission-content {
        padding-right: 0;
        order: 2;
    }

    .mission-visual {
        aspect-ratio: 16/9;
        max-width: 700px;
        margin: 0 auto;
        order: 1;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .mission-details h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 4rem 0;
    }
    
    .mission-content h2 {
        font-size: 1.8rem;
    }
    
    .mission-content h2 i {
        font-size: 1.5rem;
    }

    .mission-details {
        padding: 1.5rem;
    }
    
    .mission-details h3 {
        font-size: 1.4rem;
    }

    .mission-list li {
        padding: 1rem 1.2rem;
    }

    .mission-quote {
        font-size: 1.5rem;
    }
    
    .mission-cta {
        padding: 1.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(247, 241, 223, 0.5), rgba(247, 241, 223, 0.8));
    position: relative;
    overflow: hidden;
}

.story-section .container {
    max-width: 80%;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern-light.png');
    opacity: 0.05;
    z-index: 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-header h2 {
    color: var(--lotus-pond);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: inline-block;
    position: relative;
}

.section-header h2 i {
    color: var(--summer-twilight);
    margin-right: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--summer-twilight), var(--lotus-pond));
    transition: width 0.3s ease;
}

.section-header:hover h2::after {
    width: 120px;
}

.section-subtitle {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--summer-twilight);
    margin-top: 1rem;
    opacity: 0.9;
}

/* Story Intro */
.story-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.intro-content {
    padding-right: 2rem;
}

.intro-content h3 {
    color: var(--summer-twilight);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.decorative-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--lotus-pond), var(--soft-lichen));
    margin-bottom: 2rem;
    transition: width 0.3s ease;
}

.intro-content:hover .decorative-line {
    width: 100px;
}

.intro-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bark);
}

.intro-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(87, 96, 73, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

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

.visual-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-container:hover img {
    transform: scale(1.05);
}

.visual-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    text-align: center;
    transform: translateY(30%);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.visual-container:hover .visual-quote {
    transform: translateY(0);
    opacity: 1;
}

.visual-quote i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Team Container */

.team-members{
    display: flex;
}

.team-member {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
    align-items: center;
}

.member-card {
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(169, 184, 160, 0.2);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-header {
    display: flex;
    background: linear-gradient(to right, var(--lotus-pond), var(--soft-lichen));
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.member-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('images/pattern-light.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.member-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    margin: 0 0 0.5rem;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.member-name::before {
    display: none;
}

.member-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
}

.member-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.member-expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.expertise-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.expertise-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.expertise-tag i {
    font-size: 0.8rem;
}

.member-bio {
    padding: 2rem;
    color: var(--bark);
    line-height: 1.6;
}

.member-bio p {
    margin-bottom: 1.5rem;
}

.member-quote {
    position: relative;
    padding: 1.5rem 2rem;
    background: rgba(169, 184, 160, 0.1);
    border-left: 3px solid var(--lotus-pond);
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.member-quote p {
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: rgba(87, 96, 73, 0.1);
    z-index: 0;
}

.member-specialties {
    padding: 0 2rem 2rem;
}

.specialties-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--summer-twilight);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialties-title i {
    color: var(--lotus-pond);
    font-size: 1rem;
}

.specialties-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.8rem;
}

.specialties-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 1rem;
    background: rgba(169, 184, 160, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.specialties-list li:hover {
    background: rgba(169, 184, 160, 0.2);
    transform: translateX(5px);
}

.specialties-list li i {
    color: var(--lotus-pond);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .story-section{
        padding: 3rem 0;
    }

    .story-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .team-members{
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .member-card {
        width: 95%;
    }
    
    .member-header {
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .member-name {
        font-size: 2rem;
    }
    
    .specialties-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .member-info {
        margin-left: 0;
        margin-top: 1.5rem;
        align-items: center;
    }
    
    .member-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .member-bio, 
    .member-specialties {
        padding: 1.5rem;
    }
    
    .specialties-title {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .member-expertise-tags {
        justify-content: center;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.8rem;
    }
    
    .member-quote {
        padding: 1.2rem;
    }
}

/* Story Conclusion */
.story-conclusion {
    margin-top: 2rem;
    text-align: center;
}

.conclusion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(87, 96, 73, 0.12);
    position: relative;
    overflow: hidden;
}

.conclusion-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--lotus-pond), var(--summer-twilight), var(--soft-lichen));
}

.conclusion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, var(--lotus-pond), var(--summer-twilight));
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.conclusion-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--lotus-pond);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.conclusion-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--bark);
}

.conclusion-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    transition: transform 0.3s ease;
}

.conclusion-content .btn:hover {
    transform: translateY(-5px);
}

.conclusion-content .btn i {
    margin-right: 0.7rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .conclusion-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .conclusion-icon {
        width: 60px;
        height: 60px;
    }
    
    .conclusion-icon i {
        font-size: 1.5rem;
    }
}

/* Values Section */
.values-section {
    padding: 3rem 0;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    padding: 2rem;
    background: linear-gradient(to bottom right, rgba(247, 241, 223, 0.5), rgba(247, 241, 223, 0.2));
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(86, 56, 46, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--lotus-pond), var(--summer-twilight));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(86, 56, 46, 0.1);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card i {
    font-size: 2rem;
    color: var(--lotus-pond);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.1);
    color: var(--summer-twilight);
}

.value-card h3 {
    color: var(--summer-twilight);
    margin-bottom: 1rem;
}

.values-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Offers Section */
.offers-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(247, 241, 223, 0.9), rgba(209, 192, 188, 0.4));
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 20 L20 0 L40 20 L20 40 Z" fill="none" stroke="%23A9B8A0" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 40px 40px;
    opacity: 0.15;
    pointer-events: none;
}

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

.offers-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--bark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.offers-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--summer-twilight), var(--soft-lichen));
}

.offers-section .container > h2 {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 800px;
    display: block;
}

/* Offers Grid Layout */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0 1rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(86, 56, 46, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(86, 56, 46, 0.15);
    border-left: 4px solid var(--summer-twilight);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--summer-twilight), var(--soft-lichen));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.offer-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

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

.offer-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.offer-content i {
    font-size: 2.2rem;
    color: var(--summer-twilight);
    margin-bottom: 1.2rem;
    opacity: 0.9;
    transition: transform 0.3s ease, color 0.3s ease;
}

.offer-card:hover .offer-content i {
    transform: scale(1.1);
    color: var(--summer-twilight);
}

.offer-content h3 {
    font-size: 1.6rem;
    color: var(--lotus-pond);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.8rem;
    display: inline-block;
}

.offer-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--soft-lichen);
    transition: width 0.3s ease;
}

.offer-card:hover .offer-content h3::after {
    width: 60px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .offer-content {
        padding: 1.5rem;
    }

    .offer-content h3 {
        font-size: 1.4rem;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff, rgba(247, 241, 223, 0.5));
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 20 L20 0 L40 20 L20 40 Z" fill="none" stroke="%23A9B8A0" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

.why-us-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.why-us-section h2 {
    color: var(--bark);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.why-us-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--summer-twilight), var(--soft-lichen));
    transition: width 0.3s ease;
}

.why-us-section h2:hover::after {
    width: 100px;
}

.why-us-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    padding-left: 0;
}

.why-us-list li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(86, 56, 46, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: flex-start;
}

.why-us-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(86, 56, 46, 0.1);
    border-left: 3px solid var(--summer-twilight);
}

.why-us-list li i {
    color: var(--summer-twilight);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    transition: transform 0.3s ease;
}

.why-us-list li:hover i {
    transform: scale(1.2);
}

/* Common Elements */
.highlight {
    font-size: 1.1rem;
    color: var(--bark);
    margin: 1.5rem auto;
    max-width: 800px;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    border: none;
    display: block;
    text-align: center;
    line-height: 1.8;
}

.highlight:hover {
    transform: none;
    box-shadow: none;
}

.highlight i {
    display: none;
}

.cta-text {
    font-size: 1.2rem;
    margin: 2rem auto;
    color: var(--bark);
    max-width: 600px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text i {
    margin-right: 0.8rem;
    color: var(--summer-twilight);
    font-size: 1.2rem;
}

.cta-buttons {
    margin: 2rem 0;
    text-align: center;
}
