
@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/Campton/Campton-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'EllenLuffLarken';
    src: url('../font/EllenLuffLarken/EllenLuff-Larken-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../font/EllenLuffLarken/EllenLuff-Larken-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #02564C;
    --secondary: #60A097;
    --light: #FFFFFF;
    --accent: #FFECD2;
    --font-family: 'Campton', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--light);
    color: #333;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
    font-family: 'EllenLuffLarken', serif;
    font-weight: 300;
    font-style: normal;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    font-family: 'EllenLuffLarken', serif;
    font-weight: 300;
    font-style: normal;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.lead {
    font-weight: 300;
    font-size: 1.3rem;
}

.text-light {
    font-weight: 200;
}

.text-emphasis {
    font-weight: 600;
}

/* Navigation */
.navbar {
    background-color: var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-collapse {
    justify-content: flex-end;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--accent);
    font-weight: 500;
    font-size: 1rem;
    margin: 0 10px;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.navbar-nav .nav-link:hover {
    color: var(--light);
    font-weight: 600;
}

/* Override Bootstrap navbar-light styles */
.navbar-light .navbar-nav .nav-link {
    color: var(--accent) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--light) !important;
}

.navbar-light .navbar-toggler {
    border-color: var(--accent);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFECD2' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link.active {
    color: var(--light) !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hero {
    background-color: var(--primary);
    padding: 15rem 0;
    color: var(--light);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--primary);
    color: var(--primary);
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.1rem;
    transition: all 0.3s;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active  {
    background-color: var(--primary);
    border-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
}

.about {
    padding: 12rem 0;
    background-image: linear-gradient(rgba(96, 160, 151, 0.8), rgba(96, 160, 151, 0.8)), url(../img/fondateur.jpg);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    color: var(--light);
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 2rem;
    letter-spacing: -0.01em;
}

.about p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

/* Services Section - Design moderne */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
}

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

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

.services h2 {
    font-weight: 900;
    color: var(--primary);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services .lead {
    font-weight: 400;
    color: var(--primary);
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

/* Grille moderne des services - largeurs égales */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-rows: 300px;
    gap: 25px;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 30px rgba(2, 86, 76, 0.1),
        0 1px 8px rgba(2, 86, 76, 0.05);
    border: 1px solid rgba(96, 160, 151, 0.1);
    /* Toutes les cartes ont la même taille */
    grid-column: span 1;
    grid-row: span 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

/* Variantes de taille pour créer un layout asymétrique */
.service-card-large {
    grid-column: span 2;
    grid-row: span 1;
}

.service-card-wide {
    grid-column: span 2;
}

.service-card-tall {
    grid-row: span 2;
}

.service-content {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
}

.service-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

/* Effets au survol */
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(2, 86, 76, 0.15),
        0 10px 25px rgba(2, 86, 76, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--secondary);
}

.service-card:hover h4 {
    color: var(--secondary);
}

.service-card:hover p {
    color: #555;
}

/* Overlay décoratif */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .service-overlay {
    opacity: 0.03;
}

/* Responsive pour la grille */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .service-card-large,
    .service-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }

    .services h2 {
        font-size: 2.5rem;
    }

    .services .lead {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
    }

    .service-card-large,
    .service-card-wide,
    .service-card-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .service-content {
        padding: 30px 25px;
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h4 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.services {
    padding: 100px 0;
    background-color: var(--accent);
}

.services h2 {
    font-weight: 900;
    color: var(--primary);
}

.services .lead {
    font-weight: 400;
    color: var(--primary);
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-item p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Toggle Buttons Styles */
.commitment-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.toggle-btn {
    background-color: var(--light);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-table;
    position: relative;
    overflow: hidden;
}

.toggle-btn:first-child {
    border-radius: 25px 0 0 25px;
    border-right: 1px solid var(--primary);
}

.toggle-btn:last-child {
    border-radius: 0 25px 25px 0;
    border-left: 1px solid var(--primary);
}

.toggle-btn.active {
    background-color: var(--primary);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(96, 160, 151, 0.3);
}

.toggle-btn i {
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

/* Content Animation */
.commitment-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.commitment-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

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

/* Mobile Responsive */
@media (max-width: 767px) {
    .toggle-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .toggle-btn i {
        font-size: 1rem;
    }
}

.commitments {
    padding: 100px 0;
    background-color: var(--light);
}

.commitments h2 {
    color: var(--primary);
    font-weight: 900;
}

.commitments .lead {
    font-weight: 400;
    color: var(--primary);
}

.commitment-title {
    color: var(--secondary);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
    font-size: 1.8rem;
}

.commitment-item {
    border: 3px solid var(--accent);
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s;
}

.commitment-item:hover {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.commitment-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.commitment-item p {
    font-weight: 300;
    line-height: 1.5;
}

.commitment-number {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Process Section Improvements */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern-overlay.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

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

/* Modern Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.process-step-modern {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.process-step-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-right: 30px;
    min-width: 80px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.step-content h4 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Apartment Showcase */
.apartment-showcase {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.apartment-showcase h3 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 20px;
}

.apartment-showcase p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Slick Slider Customization */
.apartment-slider {
    margin: 0 -15px;
}

.apartment-slide {
    padding: 0 15px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.apartment-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.apartment-slide:hover img {
    transform: scale(1.05);
}

/* Styles personnalisés pour les flèches du slider */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-arrow:hover {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slick-prev.custom-arrow {
    left: -20px;
}

.slick-next.custom-arrow {
    right: -20px;
}

.custom-arrow i {
    color: #333;
    font-size: 16px;
}

/* Ajustement pour les écrans mobiles */
@media (max-width: 768px) {
    .slick-prev.custom-arrow {
        left: 5px;
    }

    .slick-next.custom-arrow {
        right: 5px;
    }
}

/* Slick Dots Customization */
.apartment-slider .slick-dots {
    bottom: -50px;
}

.apartment-slider .slick-dots li button:before {
    color: var(--accent);
    font-size: 12px;
}

.apartment-slider .slick-dots li.slick-active button:before {
    color: var(--light);
}

/* Slick Arrows Customization */
.apartment-slider .slick-prev,
.apartment-slider .slick-next {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 10;
}

.apartment-slider .slick-prev:before,
.apartment-slider .slick-next:before {
    display: none;
}

.apartment-slider .slick-prev:hover, .apartment-slider .slick-prev:focus, .apartment-slider .slick-next:hover, .apartment-slider .slick-next:focus {
    background: var(--accent);
}

.apartment-slider .slick-prev {
    left: -25px;
}

.apartment-slider .slick-next {
    right: -25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-step-modern {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
        font-size: 2.5rem;
    }

    .apartment-showcase {
        padding: 30px 20px;
    }

    .apartment-slider .slick-prev {
        left: 10px;
    }

    .apartment-slider .slick-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .process {
        padding: 80px 0;
    }

    .apartment-slide img {
        height: 250px;
    }
}

.contact {
    padding: 100px 0 80px;
    background-color: var(--accent);
}

.contact h2 {
    color: var(--primary);
    font-weight: 900;
}

.contact .lead {
    font-weight: 400;
    color: var(--primary);
}

.contact-form {
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(96, 160, 151, 0.25);
}

.form-control::placeholder {
    font-weight: 300;
    color: #999;
}

.contact-info {
    display: flex;
    background-color: var(--primary);
    color: var(--light);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;

    a {
        color: var(--light);
        text-decoration: none;

        &:hover{
            text-decoration: underline;
            color: var(--light);
        }
        &:active {
            text-decoration: underline;
            color: var(--light);
        }
        &:focus {
            text-decoration: underline;
            color: var(--light);
        }
        &:visited {
            color: var(--light);
        }
    }
}

.contact-info h3 {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light);
}

.contact-info p {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.contact-info p i {
    width: 25px;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-info .social-icons {
    margin-top: 25px;
}

.contact-info .social-icons a {
    margin-right: 15px;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info .social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--accent);
    padding: 60px 0 30px;
    text-align: center;
}

footer img {
    height: 40px;
    margin-bottom: 20px;
}

footer h5 {
    color: var(--light);
    margin-bottom: 20px;
    font-weight: 700;
}

footer p {
    font-weight: 300;
    color: var(--accent);
}

footer a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 400;
}

footer a:hover {
    color: var(--light);
    font-weight: 500;
}

footer ul li {
    margin-bottom: 8px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--light);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 10px;
    transition: all 0.3s;
    font-weight: 500;
}

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 236, 210, 0.2);
}

.copyright p {
    font-weight: 200;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--accent);
}

.text-thin { font-weight: 100; }
.text-extralight { font-weight: 200; }
.text-light { font-weight: 300; }
.text-book { font-weight: 400; }
.text-medium { font-weight: 500; }
.text-semibold { font-weight: 600; }
.text-bold { font-weight: 700; }
.text-extrabold { font-weight: 800; }
.text-black { font-weight: 900; }

/* Styles pour la page des mentions légales */
.legal-section {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.legal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.legal-content h2 {
    color: #02554b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffe7c7;
    padding-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-content a {
    color: #02554b;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #ffe7c7;
}

.copyright small {
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .legal-section {
        padding: 100px 0 60px;
    }

    .legal-content {
        padding: 20px;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 2rem;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about h2 {
        font-size: 2.5rem;
    }

    .about, .services, .commitments, .process, .contact {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }

    .contact-info {
        margin-top: 30px;
    }

    /* Ajustements mobiles pour la typographie */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .commitment-title {
        font-size: 1.5rem;
    }

    .container {
        width: 90%;
    }
}
