/* Reset et styles globaux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Variables pour les couleurs du site */
:root {
    --primary-color: #51a6d5;
    --primary-dark: #3c85ad;
    --secondary-color: #d2eaf4;
    --secondary-light: #e8f4fa;
    --white: #fff;
    --dark: #333;
    --gray: #777;
    --light-gray: #f5f5f5;
    --gold: #d4af37;
    --gold-light: #f1e5b9;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Conteneur principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 1100px;
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: var(--transition);
    padding: 10px 40px;
}

/* Style du header lors du défilement */
.header-scrolled {
    width: 85%;
    top: 10px;
    padding: 8px 35px;
    background-color: var(--white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-svg {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.header-scrolled .logo-svg {
    transform: scale(0.9);
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.header-scrolled .logo h1 {
    font-size: 1.6rem;
}

.logo-container {
    width: 60px;
    height: 50px;
}

.logo-container img {
    width:100%;
}

/* Menu hamburger (visible uniquement en mobile) */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.menu-active .hamburger span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.menu-active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-active .hamburger span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Navigation Desktop */
.navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-menu li {
    margin-left: 30px;
    position: relative;
}

.main-menu a {
    text-decoration: none;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.main-menu a span {
    position: relative;
}

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

.main-menu a:hover span::after,
.main-menu a.active span::after {
    width: 100%;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--primary-color);
}

.main-menu a i {
    margin-left: 5px;
    font-size: 12px;
    transition: var(--transition);
}

/* Sous-menu */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 15px;
    width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
    list-style: none;
}

.submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--white);
    transform: rotate(45deg);
    z-index: -1;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-submenu:hover > a i {
    transform: rotate(180deg);
}

.submenu li {
    margin: 0;
    width: 100%;
}

.submenu a {
    padding: 10px 20px;
    font-size: 15px;
    display: block;
    color: var(--dark);
    transition: var(--transition);
}

.submenu a:hover {
    background-color: var(--secondary-light);
    color: var(--primary-color);
}

/* Bouton téléphone */
.btn-phone {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(81, 166, 213, 0.3);
}

.btn-phone i {
    margin-right: 8px;
}

.btn-phone:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 166, 213, 0.4);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--secondary-color);
}

.close-menu {
    font-size: 32px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-main-menu {
    list-style: none;
}

.mobile-main-menu li {
    margin-bottom: 20px;
}

.mobile-main-menu a {
    text-decoration: none;
    color: var(--dark);
    font-size: 24px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}

.mobile-main-menu a:hover,
.mobile-main-menu a.active {
    color: var(--primary-color);
}

.mobile-has-submenu {
    margin-bottom: 0 !important;
}

.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.mobile-has-submenu.active .mobile-submenu-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition);
}

.mobile-has-submenu.active .mobile-submenu {
    height: auto;
    opacity: 1;
    padding-top: 10px;
}

.mobile-submenu a {
    font-size: 18px;
    padding: 10px 0;
    border-left: 1px solid var(--secondary-color);
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.mobile-submenu a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.mobile-menu-footer {
    margin-top: 40px;
    text-align: center;
}

.btn-phone-mobile {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 30px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(81, 166, 213, 0.3);
}

.btn-phone-mobile:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 166, 213, 0.4);
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.mobile-social-icons a {
    color: var(--dark);
    font-size: 22px;
    transition: var(--transition);
}

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

/* Hero Élégant */

.hero-elegant {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: url('../images/hero.jpeg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero2 {
    height:70vh;
    background: url('../images/image8.jpeg') no-repeat center center;
    background-size: cover;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-text {
    color: var(--white);
    max-width: 650px;
    animation: fadeIn 1s ease forwards;
}

.hero-tagline {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 60px;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
    opacity: 0.9;
}

.hero-buttons {
    margin-bottom: 60px;
}

.btn-elegant {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--primary-dark);
    padding: 18px 40px;
    border-radius: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.btn-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-dark);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-elegant:hover {
    color: var(--light-gray);
}

.btn-elegant:hover::before {
    width: 100%;
}

/* Section d'informations dans le hero */
.hero-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 350px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.info-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-icon {
    color: var(--primary-color);
    font-size: 24px;
    min-width: 40px;
    text-align: center;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-number {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 5px;
}

.info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Indicateur de défilement */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-indicator i {
    font-size: 20px;
    animation: scrollDown 2s infinite;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
}

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

/* Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-flex {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .header {
        width: 85%;
        padding: 10px 25px;
    }
    
    .main-menu li {
        margin-left: 20px;
    }
    
    .main-menu a {
        font-size: 14px;
    }
    
    .btn-phone {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-tagline {
        padding-left: 0;
    }
    
    .hero-tagline::before {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-info {
        flex-direction: row;
        max-width: 100%;
        justify-content: space-between;
    }
    
    .info-card {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .header {
        width: 90%;
        padding: 10px 20px;
    }
    
    .navigation {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header-content {
        flex-direction: row;
        text-align: left;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .hero-elegant {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-elegant {
        padding: 15px 30px;
    }
    
    .hero-info {
        flex-direction: column;
        width:90%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .header {
        width: 95%;
        top: 10px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 12px;
    }
    
    .info-number {
        font-size: 24px;
    }
    
    .info-label {
        font-size: 13px;
    }
}

/* Section de Présentation */
.presentation-section {
    background-color: var(--white);
    padding: 120px 0;
    position: relative;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.section-tagline {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.section-tagline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--primary-color);
}

.presentation-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    max-width: 500px;
}

.section-title .highlight {
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    z-index: -1;
}

.presentation-text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.presentation-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 25px;
}

.feature-icon {
    font-size: 30px;
    color: var(--primary-color);
    background-color: var(--secondary-light);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.btn-secondary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.btn-secondary:hover i {
    transform: translateX(5px);
}

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

.presentation-media {
    position: relative;
}

.presentation-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.presentation-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-caption {
    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: 30px 20px 20px;
    text-align: center;
}

.caption-text {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.presentation-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-icon {
    font-size: 28px;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

/* Media Queries pour la section de présentation */
@media (max-width: 1200px) {
    .presentation-grid {
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .presentation-section {
        padding: 80px 0;
    }
    
    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .presentation-media {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-tagline, .section-title {
        text-align: center;
    }
    
    .section-tagline {
        padding-left: 0;
        display:flex;
        justify-content: center;
    }
    
    .section-tagline::before {
        display: none;
    }
    
    .section-title {
        margin: 0 auto;
    }
    
    .presentation-text {
        text-align: center;
    }
    
    .presentation-features {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-secondary {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .presentation-section {
        padding: 60px 0;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .presentation-badge {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
    
    .badge-icon {
        font-size: 22px;
    }
    
    .badge-text {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .presentation-text {
        font-size: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
}

/* Section Passion & Expérience */
.passion-section {
    position: relative;
    background-color: var(--primary-color);
    padding: 120px 0;
    color: var(--white);
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
}

.passion-content {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.passion-years {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.years-number {
    font-family: 'Playfair Display', serif;
    font-size: 9rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    position: relative;
}

.years-text {
    position: absolute;
    bottom: 5px;
    left: 105px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 1.4;
}

.passion-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.emphasis {
    color: var(--gold-light);
    font-style: italic;
}

.passion-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 670px;
    opacity: 0.9;
}

.passion-signature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature-line {
    width: 50px;
    height: 2px;
    background-color: var(--gold-light);
}

.signature-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-light);
}

.passion-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    flex: 1;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Media Queries pour la section Passion */
@media (max-width: 1200px) {
    .passion-title {
        font-size: 2.5rem;
    }
    
    .years-number {
        font-size: 7rem;
    }
    
    .years-text {
        left: 85px;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .passion-section {
        padding: 100px 0;
    }
    
    .passion-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .passion-years {
        align-items: center;
    }
    
    .years-text {
        position: static;
        margin-top: -20px;
    }
    
    .passion-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .passion-signature {
        justify-content: center;
    }
    
    .passion-stats {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .passion-section {
        padding: 80px 0;
    }
    
    .passion-title {
        font-size: 2rem;
    }
    
    .passion-description {
        font-size: 1.05rem;
    }
    
    .years-number {
        font-size: 6rem;
    }
}

@media (max-width: 576px) {
    .passion-section {
        padding: 60px 0;
    }
    
    .years-number {
        font-size: 5rem;
    }
    
    .years-text {
        font-size: 0.9rem;
    }
    
    .passion-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
}

/* Section Réseaux Sociaux */
.social-section {
    background-color: var(--white);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

.social-divider {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.social-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.social-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}

.section-intro {
    margin-bottom: 20px;
}

.social-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Plateformes sociales */
.social-platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.social-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.platform-card {
    width: 260px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
    text-decoration: none;
    color: var(--dark);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: var(--transition);
    z-index: 1;
}

.instagram-card::before {
    background: linear-gradient(to right, #833AB4, #FD1D1D, #FCAF45);
}

.facebook-card::before {
    background-color: #1877F2;
}

.tiktok-card::before {
    background: linear-gradient(to right, #00f2ea, #ff0050);
}

.platform-card:hover {
    transform: translateY(-10px);
}

.platform-card:hover::before {
    height: 6px;
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 26px;
    position: relative;
    transition: var(--transition);
}

.instagram-card .platform-icon {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.12), rgba(253, 29, 29, 0.12), rgba(252, 175, 69, 0.12));
    color: #E1306C;
}

.facebook-card .platform-icon {
    background-color: rgba(24, 119, 242, 0.12);
    color: #1877F2;
}

.tiktok-card .platform-icon {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.12), rgba(255, 0, 80, 0.12));
    color: #000000;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-info {
    margin-bottom: 15px;
}

.platform-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.platform-info p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.platform-arrow {
    text-align: right;
    font-size: 18px;
    opacity: 0.3;
    transition: var(--transition);
}

.platform-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Galerie sociale */
.social-gallery {
    background-color: var(--secondary-light);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    background-color: var(--primary-color);
    border-radius: 12px;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* Placeholder pour simuler des images Instagram */
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 24px;
}

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

.gallery-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.btn-gallery:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.btn-gallery:hover i {
    transform: translateX(5px);
}

.btn-gallery i {
    transition: transform 0.3s ease;
}

.hashtag-container {
    display: inline-block;
}

.hashtag {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    position: relative;
    padding: 0 5px;
}

.hashtag::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--secondary-color);
    z-index: -1;
    opacity: 0.8;
}

/* Media Queries pour la section Réseaux Sociaux */
@media (max-width: 1200px) {
    .social-platforms {
        gap: 20px;
    }
    
    .platform-card {
        width: 230px;
    }
}

@media (max-width: 992px) {
    .social-section {
        padding: 100px 0 120px;
    }
    
    .social-platforms {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .platform-card {
        width: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .social-section {
        padding: 80px 0 100px;
    }
    
    .social-gallery {
        padding: 30px;
    }
    
    .social-platforms {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .platform-card {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .social-section {
        padding: 60px 0 80px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-gallery {
        padding: 25px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .platform-card {
        padding: 20px 25px;
    }
} 

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

/* Section FAQ */
.faq-section {
    background-color: var(--white);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.faq-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.faq-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.faq-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 20px auto 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 5;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
    margin: 0;
    transition: var(--transition);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.faq-icon span:first-child {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-icon span:last-child {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-icon span:last-child {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-item.active .faq-icon span {
    background-color: var(--white);
}

.faq-answer {
    padding: 0 30px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    height: auto;
    opacity: 1;
}

.faq-answer p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 5;
}

.faq-footer p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.faq-footer .btn-elegant {
    color: var(--dark);
    border-color: var(--primary-color);
    background-color: var(--secondary-light);
    padding: 15px 35px;
    display: inline-block;
}

.faq-footer .btn-elegant::before {
    background-color: var(--primary-color);
}

.faq-footer .btn-elegant:hover {
    color: var(--white);
}

.faq-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
}

.faq-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.7;
    z-index: -1;
}

.faq-circle-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: -100px;
    background-color: var(--secondary-color);
    opacity: 0.4;
}

/* Media Queries pour la section FAQ */
@media (max-width: 1200px) {
    .faq-question h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0 120px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 650px;
        margin: 0 auto;
    }
    
    .faq-circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .faq-circle-2 {
        display:none;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0 100px;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
    
    .faq-footer p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 50px 0 80px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-column {
        gap: 15px;
    }
    
    .faq-footer .btn-elegant {
        padding: 12px 30px;
    }
}

/* Footer */
.site-footer {
    position: relative;
    background-color: var(--white);
    color: var(--gray);
    overflow: hidden;
    border-top: 1px solid var(--secondary-color);
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-main {
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-svg {
    margin-right: 15px;
}

.footer-logo h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.footer-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(81, 166, 213, 0.3);
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

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

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

.footer-links ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.6;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--gray);
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-info li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.btn-contact {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
    text-align: center;
}

.btn-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(81, 166, 213, 0.3);
}

.footer-bottom {
    background-color: var(--secondary-light);
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    align-items: center;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-color);
}

.separator {
    margin: 0 15px;
    color: var(--secondary-color);
}

/* Media Queries pour le footer */
@media (max-width: 1200px) {
    .footer-columns {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-main {
        padding: 100px 0 60px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-description {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 80px 0 40px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer-wave {
        height: 80px;
    }
    
    .footer-main {
        padding: 70px 0 30px;
    }
    
    .footer-logo h2 {
        font-size: 1.6rem;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}

/* Section Services/Prestations */
.services-section {
    background-color: var(--white);
    padding: 120px 0;
    position: relative;
}

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

.services-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Cartes de services principales */
.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 100px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.service-icon {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(81, 166, 213, 0.3);
    z-index: 2;
    display:none;
}

@media (max-width: 768px) {
    .service-icon {
        display:none;
    }
}
.service-content {
    padding: 40px 30px 30px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--dark);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

/* Section de détails des services */
.services-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.services-section .section-title {
    font-size:3rem;
    font-family: "Playfair Display";
}

.services-details::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-color: var(--secondary-light);
    z-index: 1;
    border-radius: 20px;
}

.services-details-image {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
    width: 90%;
    margin: 0 auto;
}

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

.services-details-image:hover img {
    transform: scale(1.05);
}

.services-details-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.services-details-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.services-details-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.services-details-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    gap: 20px;
}

.service-item-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(81, 166, 213, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.service-item-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-item-text p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section destinations */
.services-destinations {
    margin-bottom: 100px;
}

.destinations-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 15px;
}

.destinations-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: var(--white);
}

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

.destination-image {
    height: 250px;
    overflow: hidden;
}

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

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 25px;
}

.destination-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.destination-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.services-cta {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    max-width: 70%;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn-elegant {
    border-color: var(--white);
    background-color: transparent;
    color: var(--white);
}

.cta-content .btn-elegant::before {
    background-color: var(--white);
}

.cta-content .btn-elegant:hover {
    color: var(--primary-color);
}

.cta-decoration {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 180px;
    opacity: 0.1;
    color: var(--white);
}

/* Media Queries pour la section Services */
@media (max-width: 1200px) {
    .services-showcase {
        gap: 30px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .services-details-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 70px;
    }
    
    .services-details {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 70px;
    }
    
    .services-details-image {
        height: 400px;
    }
    
    .services-details-content {
        padding: 0 20px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .cta-decoration {
        display: none;
    }
    
    .cta-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .services-cta {
        padding: 40px 30px;
        text-align: center;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    
    .service-item-text p {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .service-content {
        padding: 30px 20px 25px;
    }
    
    .services-details-content p {
        font-size: 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .destination-image {
        height: 200px;
    }
}

/* Section Contact */
.contact-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 100px;
}

/* Carte d'informations de contact */
.contact-info-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(81, 166, 213, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/wave-pattern.png') repeat;
    opacity: 0.05;
    border-radius: 20px;
}

.contact-header {
    margin-bottom: 40px;
    position: relative;
}

.contact-header .section-tagline {
    color: rgba(255, 255, 255, 0.8);
}

.contact-header .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-header .highlight::after {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

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

.method-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.method-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.method-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.method-link {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.method-text {
    font-weight: 500;
    font-size: 1.05rem;
}

.contact-socials {
    margin-top: auto;
    position: relative;
}

.contact-socials h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background-color: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
}

/* Carte de formulaire de contact */
.contact-form-card {
    background-color: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.form-header p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: var(--light-gray);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(81, 166, 213, 0.1);
}

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

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-privacy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--primary-color);
}

.form-privacy label {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.btn-submit {
    align-self: flex-end;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(81, 166, 213, 0.3);
}

.btn-submit i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Section carte */
.map-container {
    background-color: var(--secondary-light);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.map-content {
    max-width: 600px;
    margin-bottom: 30px;
}

.map-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

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

.map-frame {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Media Queries pour la section contact */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 30px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 40px 30px;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-card,
    .contact-form-card {
        max-width: 100%;
    }
    
    .map-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-methods {
        gap: 25px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        width: fit-content;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-submit {
        width: 100%;
        margin-top: 10px;
    }
    
    .map-content h3 {
        font-size: 1.5rem;
    }
    
    .map-frame {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .contact-form-card,
    .map-container {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .method-icon {
        margin-bottom: 0;
    }
    
    .map-frame {
        height: 300px;
    }
}

/* Section Mentions Légales */
.legal-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.legal-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.legal-icon {
    width: 120px;
    flex-shrink: 0;
    background-color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.legal-card:hover .legal-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.legal-card-content {
    padding: 40px;
    flex: 1;
}

.legal-card-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.legal-card-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.legal-card-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-card-content p:last-child {
    margin-bottom: 0;
}

.legal-info {
    margin-top: 15px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.legal-info p {
    margin-bottom: 8px;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

.legal-card-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.legal-card-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Media Queries pour la section mentions légales */
@media (max-width: 992px) {
    .legal-section {
        padding: 80px 0;
    }
    
    .legal-card {
        flex-direction: column;
    }
    
    .legal-icon {
        width: 100%;
        height: 120px;
    }
    
    .legal-card-content {
        padding: 30px;
    }
    
    .legal-card-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .legal-section {
        padding: 60px 0;
    }
    
    .legal-container {
        gap: 30px;
    }
    
    .legal-icon {
        height: 100px;
        font-size: 2rem;
    }
    
    .legal-card-content h2 {
        font-size: 1.4rem;
    }
    
    .legal-info {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .legal-section {
        padding: 50px 0;
    }
    
    .legal-card-content {
        padding: 25px 20px;
    }
    
    .legal-card-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-icon {
        height: 80px;
        font-size: 1.8rem;
    }
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

/* Services Activities Section */
.services-activities {
    margin: 4rem 0;
    padding: 2rem 0;
    background-color: rgba(210, 234, 244, 0.3);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.activities-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.activities-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.activity-card {
    background-color: #fff;
    border-radius: 0.8rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #51a6d5, #d2eaf4);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.activity-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(210, 234, 244, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    background-color: #51a6d5;
    transform: scale(1.1);
}

.activity-icon i {
    font-size: 1.8rem;
    color: #51a6d5;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon i {
    color: #fff;
}

.activity-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.activity-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .activities-title {
        font-size: 2rem;
    }
}

/* Section mobilité */
.services-mobility {
    background-color: var(--primary-color);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 4rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(81, 166, 213, 0.2);
}

.services-mobility::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.5;
    border-radius: 50%;
    transform: translate(30%, -40%);
}

.mobility-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.mobility-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--white);
    opacity: 0.6;
}

.mobility-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.mobility-icon {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.8;
    flex-shrink: 0;
}

.mobility-text {
    flex: 1;
}

.mobility-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-mobility {
        padding: 2rem 1.5rem;
    }
    
    .mobility-title {
        font-size: 1.8rem;
    }
    
    .mobility-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mobility-icon {
        font-size: 3rem;
    }
    
    .mobility-text p {
        font-size: 1rem;
    }
}

/* Section Bateaux */
.boats-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

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

.boats-section .section-header {
    margin-bottom: 60px;
}

.boats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.boat-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.boat-image {
    height: 250px;
    overflow: hidden;
}

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

.boat-card:hover .boat-image img {
    transform: scale(1.05);
}

.boat-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.boat-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.boat-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.boat-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.boat-specs li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--dark);
}

.boat-specs li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.boat-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: auto;
}

@media (max-width: 992px) {
    .boats-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 650px;
    }
    
    .boat-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .boats-section {
        padding: 70px 0;
    }
    
    .boat-image {
        height: 220px;
    }
    
    .boat-content {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .boats-section {
        padding: 50px 0;
    }
    
    .boat-content h3 {
        font-size: 1.4rem;
    }
    
    .boat-specs li {
        font-size: 0.95rem;
    }
}

/* Section Bateaux dans Prestations */
.services-boats {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--secondary-light);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.boats-section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.boats-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.boats-comparison {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 0 auto;
    max-width: 900px;
}

.boat-box {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    transition: all 0.3s ease;
    text-align: center;
}

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

.boat-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.boat-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.boat-spec {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--dark);
}

.boat-spec i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.boat-box p {
    margin-top: 1.5rem;
    color: var(--gray);
    font-style: italic;
}

@media (max-width: 768px) {
    .boats-comparison {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-boats {
        padding: 2rem 1rem;
    }
    
    .boats-section-title {
        font-size: 1.8rem;
    }
}