:root {
    --primary-color: #4a7c59;
    --primary-dark: #3a6348;
    --secondary-color: #6b8e9b;
    --secondary-dark: #557885;
    --accent-color: #d4af37;
    
    --dark: #333333;
    --medium: #777777;
    --light: #f8f8f8;
    --white: #ffffff;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --scroll-down-size: 2rem;
    --scroll-down-color: var(--white);
    --scroll-down-animation-duration: 2s;
    
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
}

.login-link {
    color: #ffffff !important;
}

.login-link i {
    color: #ffffff !important;
}

/* Style pour les boutons d'action */
.btn-secondary:hover, .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Style pour les adresses email sur mobile */
a[href^="mailto:"] {
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
}

/* Style spécifique pour les boutons côte à côte dans la section héro */
.hero-buttons .btn {
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    background: transparent;
}

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

.nav-links a:hover {
    color: var(--primary-color);
    font-weight: 600;
    background-color: rgba(229, 179, 187, 0.1);
}

.nav-links a.active,
.nav-links .has-dropdown.active > a {
    color: var(--primary-dark);
    font-weight: 600;
    background: rgba(201, 157, 164, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links a.active::after,
.nav-links .has-dropdown.active > a::after {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
    background: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(229, 179, 187, 0.1);
    padding: 1.5rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
    backdrop-filter: blur(5px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    animation: dropdownFadeIn 0.4s ease forwards;
}

@keyframes dropdownFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
        visibility: visible;
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        visibility: visible;
    }
}

.dropdown-menu li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }

.has-dropdown:hover .dropdown-menu li,
.has-dropdown.active .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(229, 179, 187, 0.15);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
}

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

.dropdown-menu .dropdown-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-right: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 3px 12px rgba(229, 179, 187, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dropdown-menu .dropdown-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.dropdown-menu .dropdown-item:hover .dropdown-icon::before {
    opacity: 1;
}

.dropdown-menu .dropdown-icon i {
    transition: all 0.4s ease;
}

.dropdown-menu .dropdown-item:hover .dropdown-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(229, 179, 187, 0.6);
}

.dropdown-menu .dropdown-item:hover .dropdown-icon i {
    transform: scale(1.2);
    animation: pulse 1s infinite alternate;
}

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

.dropdown-menu .dropdown-content {
    flex: 1;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-content h4 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--dark);
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.dropdown-menu .dropdown-item:hover .dropdown-content h4 {
    color: var(--primary-color);
    transform: translateX(3px);
}

.dropdown-menu .dropdown-content p {
    margin: 0.4rem 0 0;
    font-size: 1.3rem;
    color: var(--medium);
    font-family: var(--font-secondary);
    opacity: 0.8;
    transition: all 0.3s ease;
    max-width: 95%;
}

.dropdown-menu .dropdown-item:hover .dropdown-content p {
    opacity: 1;
    transform: translateX(3px);
}

/* Icône du menu déroulant */
.has-dropdown > a i.fa-chevron-down {
    font-size: 1.2rem;
    margin-left: 8px;
    transition: all 0.4s ease;
    opacity: 0.8;
    position: relative;
    top: 0;
}

.has-dropdown:hover > a i.fa-chevron-down,
.has-dropdown.active > a i.fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-color);
}

.has-dropdown.active > a i.fa-chevron-down,
.has-dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.has-dropdown.active > a::after {
    content: '';
    display: none;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.scroll-down {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    color: var(--scroll-down-color);
    font-size: var(--scroll-down-size);
    animation: bounce var(--scroll-down-animation-duration) infinite;
    cursor: pointer;
    z-index: 100;
}

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

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    background-image: url('../images/gallery/photoFONDD.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== SECTIONS GÉNÉRALES ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-header h2 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
    transition: width 0.5s ease;
}

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

.section-header p {
    font-size: 1.8rem;
    color: var(--medium);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
    font-family: var(--font-secondary);
    font-weight: 300;
}

/* Animation d'apparition des sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light h2::after {
    background-color: var(--white);
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info {
    display: flex;
    gap: var(--spacing-md);
}

.contact-info a {
    color: var(--medium);
    font-size: 1.4rem;
}

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

.contact-info i {
    margin-right: 5px;
}

.social-media {
    display: flex;
    gap: var(--spacing-sm);
}

.social-media a {
    color: var(--medium);
    font-size: 1.6rem;
    transition: var(--transition);
}

.social-media a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark);
}

.logo h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.logo p {
    font-size: 1.4rem;
    color: var(--medium);
    margin-bottom: 0;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styles pour les sous-menus déroulants */
.nav-links li {
    position: relative;
}

.nav-links li.has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.nav-links li.has-dropdown > a i {
    margin-left: 5px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-links li.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 15px 0;
    border-top: 3px solid var(--primary-color);
}

.nav-links li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--dark);
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--light);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.dropdown-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(229, 179, 187, 0.3);
}

.dropdown-content {
    flex: 1;
}

.dropdown-content h4 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.dropdown-content p {
    font-size: 1.3rem;
    color: var(--medium);
    margin-bottom: 0;
    line-height: 1.4;
}

.dropdown-menu li a:hover .dropdown-content h4 {
    color: var(--primary-color);
}

.dropdown-menu li a:hover .dropdown-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 12px rgba(229, 179, 187, 0.5);
}

.nav-links li {
    margin: 0 var(--spacing-sm);
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Style pour empêcher le défilement du body quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    .hero-section {
        height: 100vh;
        background: url('images/hero-bg.jpg') no-repeat center center/cover;
        display: flex;
        align-items: center;
        text-align: center;
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .hero-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

.hero-content h2 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.hero-buttons .btn {
    margin: 0 1rem;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: var(--spacing-xl) 0;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.intro-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.intro-text {
    flex: 1;
}

.intro-text .subtitle {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(229, 179, 187, 0.2), rgba(229, 179, 187, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(229, 179, 187, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(229, 179, 187, 0.3), rgba(229, 179, 187, 0.4));
    color: var(--primary-dark);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--medium);
    margin-bottom: var(--spacing-md);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover i {
    transform: translateX(8px);
    color: var(--primary-dark);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--spacing-xl) 0;
}

.pricing-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: var(--medium);
}

.tab-btn.active, .tab-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--spacing-md);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.price-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price-info p {
    color: var(--medium);
    margin-bottom: 0;
    font-size: 1.4rem;
}

.price-value {
    text-align: right;
}

.price-value span {
    display: block;
    font-weight: 600;
    font-size: 2rem;
    color: var(--primary-color);
}

.price-value .duration {
    font-size: 1.4rem;
    color: var(--medium);
    font-weight: normal;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: var(--medium);
    margin: 0 0.5rem;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-info {
    text-align: center;
    color: var(--white);
    padding: var(--spacing-sm);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-info h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    width: 100%;
    text-align: center;
}

.gallery-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light);
}

/* Tabs navigation */
.testimonials-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonials-tabs .tab-btn {
    padding: 15px 30px;
    background-color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonials-tabs .tab-btn:hover {
    background-color: rgba(229, 179, 187, 0.1);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.testimonials-tabs .tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tab content */
.testimonials-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonials-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 8rem;
    font-family: var(--font-primary);
    color: rgba(229, 179, 187, 0.15);
    line-height: 1;
    z-index: 0;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--medium);
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Styles pour les cartes de service */
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 30px;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.client-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
    border: 3px solid rgba(229, 179, 187, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover .client-img {
    transform: scale(1.05);
    border-color: rgba(229, 179, 187, 0.5);
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.client-details {
    flex-grow: 1;
}

.client-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.testimonial-item:hover .client-details h4 {
    color: var(--primary-color);
}

.client-details p {
    color: var(--medium);
    margin-bottom: 0;
    font-size: 1.4rem;
}

.rating {
    display: flex;
    margin-left: auto;
    margin-top: 5px;
}

.rating i {
    color: var(--accent-color);
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
}

.testimonial-date {
    font-size: 1.3rem;
    color: var(--medium);
    text-align: right;
}

/* Testimonial form */
.testimonial-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-form-container h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 2.4rem;
}

.testimonial-form-container > p {
    margin-bottom: 30px;
    color: var(--medium);
    font-size: 1.6rem;
}

.testimonial-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-form .form-row .form-group {
    flex: 1;
}

.testimonial-form .form-group {
    margin-bottom: 25px;
}

.testimonial-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.testimonial-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    transition: var(--transition);
}

.testimonial-form .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 179, 187, 0.2);
}

.testimonial-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.testimonial-form small {
    display: block;
    margin-top: 5px;
    color: var(--medium);
    font-size: 1.2rem;
}

/* Rating select */
.rating-select {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.rating-option {
    position: relative;
}

.rating-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.rating-option label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background-color: var(--light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-option label i {
    color: var(--accent-color);
}

.rating-option input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: var(--white);
}

.rating-option input[type="radio"]:checked + label i {
    color: var(--white);
}

/* Custom checkbox */
.custom-checkbox-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 0;
    font-size: 1.5rem;
    user-select: none;
    line-height: 1.5;
    text-align: left;
    width: 100%;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.custom-checkbox .checkmark {
    position: relative;
    display: inline-block;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.2s ease;
    margin-right: 12px;
    margin-top: 3px;
    cursor: pointer;
}

.custom-checkbox .checkmark:hover {
    border-color: var(--primary-color);
    background-color: rgba(229, 179, 187, 0.1);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    font-weight: 500;
    color: var(--dark);
    user-select: none;
    cursor: default;
}

/* Form submit */
.form-submit {
    text-align: center;
}

.form-success {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(156, 211, 90, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
    color: #4CAF50;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .rating-select {
        justify-content: space-between;
    }
    
    .testimonial-form-container {
        padding: 20px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--spacing-xl) 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 1;
}

.team-members {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--spacing-sm);
}

.team-member h4 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--medium);
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* ===== RESERVATION SECTION ===== */
.reservation-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light);
}

.reservation-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.reservation-intro p {
    font-size: 1.8rem;
    color: var(--medium);
}

.reservation-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.reservation-info {
    flex: 1;
    min-width: 300px;
}

.reservation-info h3 {
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 10px;
}

.reservation-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.reservation-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.method-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-sm);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(229, 179, 187, 0.1);
    border-radius: 50%;
    margin-right: var(--spacing-sm);
}

.method-icon i {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.method-details {
    flex: 1;
}

.method-details h4 {
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.method-details p {
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: var(--medium);
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

.form-intro {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background-color: rgba(229, 179, 187, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-intro h4 {
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.form-intro p {
    font-size: 1.5rem;
    color: var(--medium);
}

.reservation-form {
    flex: 1.5;
    min-width: 350px;
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* ===== HOURS SECTION ===== */
.hours-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light);
}

.hours-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.hours-intro p {
    font-size: 1.8rem;
    color: var(--medium);
}

.hours-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.hours-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-sm);
}

.hours-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-sm);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.hours-item .day {
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hours-item .time {
    font-size: 1.6rem;
    color: var(--medium);
}

.hours-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-box {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: var(--spacing-sm);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(229, 179, 187, 0.1);
    border-radius: 50%;
    margin-right: var(--spacing-sm);
    transition: all 0.3s ease;
}

.info-box:hover .info-icon {
    transform: scale(1.1);
}

.info-icon i {
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-box:hover .info-icon i {
    color: var(--accent-color);
}

/* Styles spécifiques pour les boîtes d'information */
.service-box .info-icon {
    background-color: rgba(229, 179, 187, 0.15);
    box-shadow: 0 0 15px rgba(229, 179, 187, 0.2);
}

.appointment-box .info-icon {
    background-color: rgba(229, 179, 187, 0.2);
    box-shadow: 0 0 15px rgba(229, 179, 187, 0.25);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.info-content p {
    font-size: 1.5rem;
    color: var(--medium);
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .hours-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hours-info {
        margin-top: var(--spacing-md);
    }
}

/* ===== SERVICES PAGE ===== */
.services-content {
    padding: var(--spacing-xl) 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.services-intro p {
    font-size: 1.8rem;
    color: var(--medium);
    line-height: 1.6;
}

/* Navigation des services */
.services-nav {
    margin: 0 auto 50px;
    text-align: center;
}

.services-nav ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.services-nav a {
    padding: 12px 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.services-nav a i {
    font-size: 1.8rem;
}

.services-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sections de service */
.service-section {
    margin-bottom: 70px;
    scroll-margin-top: 100px;
}

.service-section h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.service-section h2 i {
    color: var(--primary-color);
}

.section-intro {
    font-size: 1.7rem;
    color: var(--medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-section h2 {
        font-size: 2.5rem;
    }
}

/* ===== TYPOGRAPHY - LUXURY HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
}

/* Style pour les titres principaux (h1) */
h1 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    text-align: center;
    width: 100%;
}

/* Suppression des pseudo-éléments par défaut pour éviter les conflits */
h1:not(.modern-title)::before,
h1:not(.modern-title)::after {
    display: none;
}

/* Style moderne pour les titres principaux */
.modern-title {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    margin: 0 auto 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    transition: all 0.3s ease;
}

.modern-title:hover {
    color: var(--primary-color);
}

/* Conteneur pour centrer parfaitement les titres */
.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.modern-title::before,
.modern-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.modern-title:hover::before,
.modern-title:hover::after {
    width: 80px;
    background-color: var(--primary-color);
}

.modern-title::before {
    left: -50px;
    transition: all 0.3s ease;
}

.modern-title::after {
    right: -50px;
    transition: all 0.3s ease;
}

.modern-title:hover::before {
    left: -60px;
}

.modern-title:hover::after {
    right: -60px;
}

/* Anciennes décorations supprimées - remplacées par le style moderne */

/* Style pour les titres de section (h2) */
h2 {
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 auto 35px;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

h2::before,
h2::after {
    content: '';
    position: absolute;
    height: 2px;
    bottom: -10px;
    background-color: var(--primary-color);
    opacity: 0.7;
}

h2::before {
    left: 25%;
    width: 50%;
}

h2::after {
    display: none;
}

/* Cadre décoratif pour h2 - supprimé pour éviter les problèmes d'alignement */
h2 .heading-frame {
    display: none !important;
}

h2 .heading-frame::before,
h2 .heading-frame::after {
    display: none !important;
}

h2 .heading-frame::before,
h2 .heading-frame::after {
    display: none !important;
}

/* Style pour les titres de section avec icône */
.service-section h2 {
    font-size: 3.2rem;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-text-fill-color: var(--dark);
    text-shadow: none;
}

.service-section h2 i {
    color: var(--primary-color);
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.2));
}

.service-section h2::before {
    width: 70%;
    height: 1px;
}

.service-section h2::after {
    width: 40%;
    height: 1px;
}

/* Style pour les titres de page (bannière) */
.page-header h1 {
    font-size: 5rem;
    color: var(--white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
    padding: 0 40px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-header h1::before,
.page-header h1::after {
    content: '❦';
    position: absolute;
    top: 50%;
    font-size: 2.4rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header h1::before {
    left: 0;
    transform: translateY(-50%);
}

.page-header h1::after {
    right: 0;
    transform: translateY(-50%);
}

/* Ajout d'un sous-titre élégant pour les bannières */
.page-header .subtitle {
    font-size: 1.8rem;
    color: var(--white);
    text-align: center;
    font-style: italic;
    margin-top: -10px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.page-header .subtitle::before,
.page-header .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--white);
    opacity: 0.7;
}

.page-header .subtitle::before {
    left: -40px;
}

.page-header .subtitle::after {
    right: -40px;
}

/* Style pour les sous-titres (h3) */
h3 {
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 4px double var(--primary-color);
    display: inline-block;
    background: linear-gradient(to right, var(--dark), var(--dark) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

/* Style pour les petits titres (h4) */
h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

h4:hover::after {
    width: 100%;
}

/* Animation des titres au survol */
h1:hover::before,
h2:hover::before,
h3:hover::before {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Ajout de JavaScript pour animer les titres à l'affichage */
@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-title {
    animation: titleFadeIn 1s ease forwards;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 3.4rem;
        padding: 0 20px 25px;
    }
    
    h2 {
        font-size: 2.8rem;
        padding: 0 15px 20px;
    }
    
    h3 {
        font-size: 2.2rem;
        padding-left: 15px;
    }
    
    h4 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 3.6rem;
        padding: 0 30px;
    }
    
    .page-header .subtitle {
        font-size: 1.6rem;
    }
    
    .page-header .subtitle::before,
    .page-header .subtitle::after {
        width: 20px;
    }
    
    .page-header .subtitle::before {
        left: -30px;
    }
    
    .page-header .subtitle::after {
        right: -30px;
    }
}

/* ===== ANIMATIONS & EFFETS ÉLÉGANTS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes borderGlow {
    0% {
        box-shadow: 0 0 5px rgba(229, 179, 187, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(229, 179, 187, 0.6), 0 0 30px rgba(229, 179, 187, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(229, 179, 187, 0.3);
    }
}

/* Application des animations */
.animate-fade-up {
    opacity: 0;
    visibility: hidden;
    animation: fadeInUp 1s ease forwards;
    will-change: transform, opacity;
}

.animate-fade-left {
    opacity: 0;
    visibility: hidden;
    animation: fadeInLeft 1s ease forwards;
    will-change: transform, opacity;
}

.animate-fade-right {
    opacity: 0;
    visibility: hidden;
    animation: fadeInRight 1s ease forwards;
    will-change: transform, opacity;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 179, 187, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 179, 187, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 8px 15px rgba(229, 179, 187, 0.15);
    border-color: rgba(229, 179, 187, 0.4);
}

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

.service-card:hover .service-card-header img {
    transform: scale(1.05);
}

.service-card:hover h3 {
    color: var(--primary-dark);
}

.service-card-header {
    position: relative;
    overflow: hidden;
}

.service-card-header img {
    transition: transform 0.6s ease;
}

.service-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.service-category-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.service-card:hover .service-category-tag {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(229, 179, 187, 0.4);
    border-left-color: var(--accent-color);
}

/* ===== BORDURES DÉCORATIVES ===== */
.decorative-border {
    position: relative;
    padding: 40px;
    margin: 30px 0;
}

.decorative-border::before,
.decorative-border::after,
.decorative-border .corner-top-left,
.decorative-border .corner-top-right,
.decorative-border .corner-bottom-left,
.decorative-border .corner-bottom-right {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Coins horizontaux */
.decorative-border::before,
.decorative-border::after {
    height: 1px;
    width: 100px;
}

.decorative-border::before {
    top: 0;
    left: 0;
}

.decorative-border::after {
    bottom: 0;
    right: 0;
}

/* Coins verticaux */
.decorative-border .corner-top-left,
.decorative-border .corner-top-right,
.decorative-border .corner-bottom-left,
.decorative-border .corner-bottom-right {
    width: 1px;
    height: 100px;
}

.decorative-border .corner-top-left {
    top: 0;
    left: 0;
}

.decorative-border .corner-top-right {
    top: 0;
    right: 0;
}

.decorative-border .corner-bottom-left {
    bottom: 0;
    left: 0;
}

.decorative-border .corner-bottom-right {
    bottom: 0;
    right: 0;
}

.decorative-border:hover::before,
.decorative-border:hover::after,
.decorative-border:hover .corner-top-left,
.decorative-border:hover .corner-top-right,
.decorative-border:hover .corner-bottom-left,
.decorative-border:hover .corner-bottom-right {
    background-color: var(--accent-color);
    opacity: 1;
}

/* ===== ARRIÈRE-PLANS TEXTURÉS ===== */
.texture-bg {
    position: relative;
    overflow: hidden;
}

.texture-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="%23e5b3bb" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    opacity: 0.05;
    z-index: -1;
}

.pattern-dots {
    position: relative;
    overflow: hidden;
}

.pattern-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: -1;
}

/* ===== AMÉLIORATIONS DES BOUTONS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
    animation: shimmer 1.5s infinite;
}

.btn-primary {
    box-shadow: 0 4px 15px rgba(229, 179, 187, 0.3);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(229, 179, 187, 0.5);
    letter-spacing: 0.5px;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(229, 179, 187, 0.3);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    border: none;
}

.btn-accent:hover {
    background: linear-gradient(to right, var(--accent-color), #e5c76b);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/booking-bg.jpg') no-repeat center center/cover;
    color: var(--white);
}

.booking-content {
    display: flex;
    gap: var(--spacing-lg);
}

.booking-info, .booking-form {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: var(--spacing-md);
}

.info-item i {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
}

.info-item h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.booking-form {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-content {
    display: flex;
    gap: var(--spacing-lg);
}

.contact-info, .contact-map {
    flex: 1;
}

.contact-item {
    display: flex;
    margin-bottom: var(--spacing-md);
}

.contact-item i {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
    color: var(--medium);
    margin-bottom: 0;
}

.social-links {
    margin-top: var(--spacing-md);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--light);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(229, 179, 187, 0.05);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-toggle i {
    transition: var(--transition);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    max-height: 1000px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--light);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    margin-bottom: 1rem;
}

.newsletter-text p {
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 0;
}

.newsletter-form input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.nom-rose {
    color: #ff69b4 !important;
    font-weight: bold;
}

.site-footer {
    background-color: rgba(51, 51, 51, 0.5);
    color: rgba(255, 255, 255, 0.9);
    padding-top: var(--spacing-lg);
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-sm);
}

.footer-links, .footer-services, .footer-contact {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    margin: 0 auto;
}

.footer-links h4, .footer-services h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-links ul li, .footer-services ul li, .footer-contact ul li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-contact ul li i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-social {
    margin-top: 10px;
}

.copyright p {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #ffffff;
}

.copyright p a {
    color: #ffffff;
    text-decoration: underline;
    transition: var(--transition);
}

.copyright .droits {
    margin: 0 5px;
}

.copyright p a:hover {
    color: var(--primary-color);
}

.copyright strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.6rem;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-left: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .intro-content,
    .about-content,
    .booking-content,
    .contact-content,
    .newsletter-content {
        flex-direction: column;
    }
    
    .intro-image,
    .about-image {
        margin-bottom: var(--spacing-md);
    }
    
    .team-members {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 55%;
    }
    
    .main-header {
        padding: var(--spacing-sm) 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg) var(--spacing-md);
        z-index: 1000;
        transition: right 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: flex-start;
        will-change: right;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: var(--spacing-sm) 0;
        width: 100%;
    }
    
    .nav-links li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-sm) 0;
        width: 100%;
        font-weight: 500;
    }
    
    .nav-links li.has-dropdown > a {
        justify-content: space-between;
        padding: var(--spacing-sm) 0;
    }
    
    /* Styles pour les sous-menus sur mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: none;
        background-color: var(--light);
        border-radius: 0;
        margin-left: 0;
        left: 0;
    }
    
    .nav-links li.has-dropdown.dropdown-active .dropdown-menu {
        max-height: 1000px;
        padding: 10px 0;
        margin-top: 5px;
        border-left: 3px solid var(--primary-color);
    }
    
    .dropdown-item {
        padding: 12px 0 12px 15px;
        flex-direction: row;
        align-items: center;
    }
    
    .dropdown-icon {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .dropdown-content {
        padding-right: 10px;
    }
    
    .dropdown-content h4 {
        font-size: 1.5rem;
    }
    
    .dropdown-content p {
        font-size: 1.2rem;
        display: none; /* Cacher les descriptions sur mobile pour gagner de l'espace */
    }
    
    .nav-links li.has-dropdown > a i {
        transition: transform 0.3s ease;
        margin-left: auto;
        padding-left: 10px;
    }
    
    .nav-links li.has-dropdown.dropdown-active > a i {
        transform: rotate(180deg);
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Navigation mobile */
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-md) var(--spacing-md);
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: var(--spacing-sm) 0;
        width: 100%;
    }
    
    .nav-links li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-sm) 0;
        width: 100%;
        font-weight: 500;
    }
    
    /* Menus déroulants sur mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--primary-color);
        border-radius: 0;
        padding: 0;
        margin: 0.5rem 0 0.5rem 1rem;
        min-width: auto;
        width: auto;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: all 0.4s ease;
        background-color: var(--light);
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .has-dropdown.dropdown-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu .dropdown-item {
        padding: 0.8rem;
        margin-bottom: 0.3rem;
        border-radius: var(--border-radius);
    }
    
    .dropdown-menu .dropdown-item:hover {
        background-color: rgba(229, 179, 187, 0.1);
    }
    
    .dropdown-menu .dropdown-icon {
        width: 32px;
        height: 32px;
        font-size: 1.4rem;
    }
    
    .dropdown-menu .dropdown-content h4 {
        font-size: 1.4rem;
    }
    
    .dropdown-menu .dropdown-content p {
        font-size: 1.1rem;
        display: none; /* Cacher les descriptions sur mobile pour gagner de l'espace */
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-content h2 {
        font-size: 3.6rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 80%;
        margin: 1rem auto;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-social {
        margin-top: var(--spacing-sm);
    }
}

@media screen and (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
    }
    
    .price-value {
        margin-top: 1rem;
        text-align: center;
    }
}
