/* Bootstrap and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Muli', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header & Navigation */
.site-navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-navbar-target {
    background: rgba(0, 0, 0, 0.9);
}

.site-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #d77a68;
    text-decoration: none;
}

.site-logo-col {
    text-align: left;
}

@media (min-width: 992px) {
    .site-logo-col {
        text-align: center;
    }
}

.site-menu {
    list-style: none;
    display: flex;
}

.site-menu li {
    margin-left: 30px;
}

.site-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.site-menu a:hover {
    color: #d77a68;
}

/* Header structure */
.site-navbar .row {
    margin-bottom: 15px;
}

.site-navbar .row:last-child {
    margin-bottom: 0;
}

/* Center menu */
.main-menu {
    justify-content: center;
    width: 100%;
}

/* Mobile hamburger positioning */
.site-menu-toggle-wrapper {
    display: none;
    justify-content: flex-end;
    width: 100%;
}

@media (max-width: 991px) {
    .site-menu-toggle-wrapper {
        display: flex !important;
    }
}

/* Hero Section */
.ftco-blocks-cover-1 {
    margin-top: 0;
}

.site-section-cover {
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

/* Parallax effect using CSS - background stays fixed while page scrolls */
.site-section-cover[data-stellar-background-ratio] {
    background-attachment: fixed;
}

.hero-cover {
    background-position: center 100% !important;
    height: 95vh !important;
    min-height: 700px;
}

@media (max-width: 991.98px) {
    .hero-cover {
        height: 88vh !important;
        min-height: 560px;
        background-position: 58% 100% !important;
    }
}

.site-section-cover.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.site-section-cover h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.site-section-cover p {
    font-size: 18px;
    /* max-width: 500px; */
    z-index: 1;
    position: relative;
}

/* Sections */
.site-section {
    padding: 80px 0;
}

.serif {
    font-family: 'Playfair Display', serif;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

.heading-border-bottom {
    position: relative;
    padding-bottom: 20px;
}

.heading-border-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d77a68;
}

/* Services Section */
.service_13987 {
    transition: 0.3s;
    overflow: hidden;
    border-radius: 8px;
}

.service_13987 a {
    display: block;
    cursor: pointer;
}

.service_13987:hover {
    transform: translateY(-10px);
}

.service_13987:hover img {
    transform: scale(1.1);
}

.service_13987 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.service_13987 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary {
    background: #d77a68 !important;
    border: none !important;
    color: #fff !important;
    padding: 12px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none !important;
}

.btn-primary:hover {
    background: #c47768 !important;
    transform: scale(1.05);
    text-decoration: none !important;
}

.btn-primary:focus,
.btn-primary:active {
    text-decoration: none !important;
}

/* About Kinesiologie */
.kinesiologie {
    background: linear-gradient(135deg, #d77a68 0%, #c47768 100%);
    padding: 100px 0;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.kinesiologie::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 42%);
    pointer-events: none;
}

.kinesiologie::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -70px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    filter: blur(4px);
    pointer-events: none;
}

.kinesiologie-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 30px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.kinesiologie-copy,
.kinesiologie-side {
    position: relative;
    z-index: 1;
}

.kinesiologie-copy {
    padding-right: 18px;
}

.kinesiologie-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.1;
}

.kinesiologie-quote {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-left: 2px solid rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.08);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.88);
}

.kinesiologie-copy p {
    color: rgba(255,255,255,0.94);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 650px;
}

.kinesiologie-principes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.principle-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 18px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    backdrop-filter: blur(1px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.principle-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.principle-icon,
.card-icon,
.result-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.principle-item strong,
.kinesiologie-card h3,
.kinesiologie-result strong {
    color: #fff !important;
}

.principle-item p {
    margin: 4px 0 0;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.8) !important;
}

.kinesiologie-side {
    display: grid;
    gap: 18px;
}

.kinesiologie-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 20px 20px 18px;
    box-shadow: 0 18px 35px rgba(67, 38, 31, 0.12);
    backdrop-filter: blur(2px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.kinesiologie-card:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
}

.kinesiologie-card h3 {
    margin: 14px 0 12px;
    font-size: 22px;
    font-family: 'Playfair Display', serif;
}

.kinesiologie-card ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
}

.warning-card {
    background: rgba(89, 48, 39, 0.12);
}

.kinesiologie-result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    background: rgba(255,255,255,0.12);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.25s ease;
}

.kinesiologie-result:hover {
    transform: translateY(-2px);
}

.kinesiologie-result p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
}

@media (max-width: 991px) {
    .kinesiologie-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .kinesiologie {
        padding: 80px 0 120px 0 !important;
    }

    .approach-intro-text {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .wrap-icon {
        margin-bottom: 10px !important;
    }

    .approach-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .kinesiologie-shell {
        gap: 18px;
    }

    .kinesiologie-principes {
        grid-template-columns: 1fr;
    }

    .kinesiologie-copy p,
    .kinesiologie-card ul,
    .kinesiologie-result p {
        font-size: 15px;
    }

    .kinesiologie-card h3 {
        font-size: 20px;
    }

    .kinesiologie-result {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Features Section */
.features_75651 {
    background-size: cover;
    background-position: center;
    position: relative;
}

.features_75651::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.block_75651 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.block_75651 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 15px 0;
    font-weight: bold;
}

.block_75651 p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

.wrap-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.approach-icon {
    font-size: 48px;
    display: block;
    color: #d77a68;
}

.block_75651:hover .wrap-icon {
    background: rgba(212, 165, 116, 0.4);
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-2 {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-left: 4px solid #d4a574;
}

.testimonial-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-2 blockquote {
    margin: 0;
    border: none;
}

.testimonial-2 blockquote p {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 14px;
}

.v-card {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.v-card strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

/* Social Icons */
.social_29128 a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 12px;
    color: #d4a574;
    font-size: 24px;
    transition: 0.3s;
    border: 2px solid #d4a574;
    border-radius: 50%;
}

.social_29128 a:hover {
    color: #fff;
    background-color: #d4a574;
    transform: scale(1.1);
}

.social_29128.white a {
    color: #fff;
    border-color: #fff;
}

.social_29128.white a:hover {
    background-color: #d4a574;
    border-color: #d4a574;
    color: #fff;
}

/* Background Images */
.bg-img-1 {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* Footer */
.site-footer {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 60px 0 30px;
    color: #fff;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

.site-footer a {
    color: #d4a574;
    text-decoration: none;
    transition: 0.3s;
}

.site-footer a:hover {
    color: #fff;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Image Modal Popup */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    place-content: center;
    text-align: center;
}

.modal-inner {
    position: relative;
    display: inline-block;
    align-items: center;
    justify-content: center;
    max-width: none;
    max-height: none;
    line-height: 0;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(1px);
    margin: 0 auto;
    vertical-align: middle;
}

.modal-content {
    max-width: min(88vw, 1200px);
    max-height: 84vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    display: block;
    margin: 0;
    border-radius: 7px;
}

.close {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.7);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #d4a574;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        transform: scale(0.8);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-image {
    cursor: pointer;
}

.form-error {
    display: block;
    color: #b00020;
    font-size: 12px;
    margin-top: 6px;
    min-height: 16px;
}

.input-invalid {
    border-color: #b00020 !important;
}

.success-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
}

.success-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    inset: 0;
}

.success-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    width: min(92vw, 420px);
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.success-card-centered {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.success-card h3 {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-section {
        padding: 40px 0;
    }
    
    .site-section-cover h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .service_13987 img {
        height: 250px;
    }
    
    .bg-img-1 {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .col-md-6, .col-md-5 {
        margin-bottom: 30px;
    }
}

/* Owl Carousel */
/* Preloader */
.preloader {
    display: none;
}

/* Text Utility */
.text-primary {
    color: #d4a574 !important;
}

.text-muted {
    color: #999 !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

/* Spacing */
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.pt-5 { padding-top: 3rem !important; }

/* Alignment */
.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

/* Display */
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.d-none { display: none !important; }

.d-lg-block {
    display: block !important;
}

.d-lg-none {
    display: none !important;
}

@media (max-width: 991px) {
    .d-lg-block {
        display: none !important;
    }
    .d-lg-none {
        display: block !important;
    }
}

/* Position */
.position-relative {
    position: relative !important;
}

/* Colors */
.text-white { color: #fff !important; }
.text-black { color: #000 !important; }
.text-danger { color: #dc3545 !important; }

.bg-image.overlay {
    position: relative;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Row & Columns */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-3, .col-6, .col-12,
.col-md-5, .col-md-6, .col-md-12,
.col-lg-3, .col-lg-8 {
    padding-right: 15px;
    padding-left: 15px;
    flex-basis: 100%;
}

.col-3 { flex-basis: 25%; max-width: 25%; }
.col-6 { flex-basis: 50%; max-width: 50%; }
.col-12 { flex-basis: 100%; max-width: 100%; }

@media (min-width: 768px) {
    .col-md-5 { flex-basis: 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex-basis: 50%; max-width: 50%; }
    .col-md-12 { flex-basis: 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex-basis: 25%; max-width: 25%; }
    .col-lg-8 { flex-basis: 66.666667%; max-width: 66.666667%; }
}

.ml-auto { margin-left: auto !important; }
.mr-auto { margin-right: auto !important; }
.mr-md-4 { @media (min-width: 768px) { margin-right: 1.5rem !important; } }
.mt-md-5 { @media (min-width: 768px) { margin-top: 3rem !important; } }

/* Font Weight */
.font-weight-bold { font-weight: 700 !important; }

/* Shrink to fit */
html {
    scroll-behavior: smooth;
}

/* Icon Styles */
[class^="icon-"]::before,
[class*=" icon-"]::before {
    display: inline-block;
}

.icon-heart::before {
    content: '♥';
}

.lead {
    font-size: 20px;
    line-height: 1.8;
}

.testimonial_38201 {
    line-height: 1.8;
    margin-bottom: 20px;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Formulaire de Contact */
#contact-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d77a68;
}

.form-group label {
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #d4a574;
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    font-family: 'Muli', sans-serif;
}

/* Map Section */
.site-section iframe {
    border-radius: 8px;
}

/* Information Box */
.site-section h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 20px;
}

.site-section p strong {
    color: #d77a68;
    font-weight: 700;
}

.site-section a {
    color: #d4a574;
    text-decoration: none;
    transition: 0.3s;
}

.site-section a:hover {
    color: #d77a68;
    text-decoration: underline;
}

/* Success Message */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

/* Gallery Section */
.gallery-section {
    padding-top: 80px !important;
}

.gallery-carousel .gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0 10px;
}

.gallery-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

@media (min-width: 576px) {
    .gallery-carousel .gallery-item {
        flex-basis: 50%;
    }
}

@media (min-width: 992px) {
    .gallery-carousel .gallery-item {
        flex-basis: 33.333%;
    }
}

@media (min-width: 1200px) {
    .gallery-carousel .gallery-item {
        flex-basis: 25%;
    }
}

.gallery-card {
    display: block;
    width: 100%;
    height: 320px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    border: 0;
    border-radius: 14px;
    background: #f9f9f9;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    transform: scale(1.05);
}

.gallery-card:focus-visible {
    outline: 3px solid #d77a68;
    outline-offset: 3px;
}

.gallery-controls {
    margin-top: 24px;
    text-align: center;
}

.gallery-control {
    width: 44px;
    height: 44px;
    margin: 0 6px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #d77a68;
    font-size: 28px;
    line-height: 1;
}

.gallery-control:hover,
.gallery-control:focus-visible {
    background: #c47768;
}

@media (max-width: 767px) {
    .gallery-section {
        padding-top: 40px !important;
        margin-top: 30px !important;
        clear: both;
    }
    
    .gallery-card {
        height: 280px;
    }
}

/* Gallery */
.service_13987 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s transform;
}

.service_13987 img:hover {
    transform: scale(1.05);
}

/* Section ID Targeting */
#about, #services, #contact {
    scroll-margin-top: 100px;
}

/* Hamburger Menu Button */
.js-menu-toggle {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 1001 !important;
    background: transparent !important;
    border: none !important;
    padding: 5px 10px !important;
    cursor: pointer !important;
    display: none !important;
}

@media (max-width: 991px) {
    .js-menu-toggle {
        display: block !important;
    }
}

.js-menu-toggle span {
    font-size: 28px;
    color: #fff;
    display: block;
}

/* Mobile Menu */
.site-mobile-menu {
    display: none;
    position: fixed;
    z-index: 1000;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 280px;
    height: 100vh;
    background: #1a1a1a;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.site-mobile-menu.active {
    display: block;
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

@media (max-width: 991px) {
    .site-mobile-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%) !important;
    }

    .site-mobile-menu.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }
}

.site-mobile-menu-header {
    position: relative;
    padding: 20px;
    text-align: right;
}

.site-mobile-menu-close {
    cursor: pointer;
    color: #fff;
    text-align: right;
    padding: 10px;
    font-size: 24px;
}

.site-mobile-menu-body {
    padding: 30px 20px;
}

.site-mobile-menu-body .site-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.site-mobile-menu-body .site-menu li {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: right;
}

.site-mobile-menu-body .site-menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.site-mobile-menu-body .site-menu a:hover {
    color: #d4a574;
}

/* Responsive fixes for Mon Approche section */
@media (max-width: 767px) {
    .site-section-cover {
        height: 650px !important;
        padding: 40px 20px;
        min-height: 700px !important;
    }
    
    .approach-section {
        min-height: 1100px !important;
        padding: 0 20px 50px 20px !important;
        align-items: flex-start !important;
    }
}

.site-section-cover .container {
    padding: 20px;
}

.site-section-cover h1,
.site-section-cover h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-cover .col-md-7 {
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
}

.hero-cover h1,
.hero-cover p {
    text-align: left !important;
}

.site-section-cover p {
    font-size: 14px;
    max-width: 100%;
}

.wrap-icon {
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    font-size: 36px !important;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d77a68;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    background: #d77a68;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .block_75651 h3 {
        font-size: 16px;
    }
    
    .block_75651 p {
        font-size: 12px;
    }
    
    /* Extra padding for sections on mobile */
    .site-section {
        padding: 20px 0 !important;
    }
    
    /* Uniform spacing before section titles */
    .site-section h2 {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .heading-border-bottom {
        margin-top: 0 !important;
    }
    
    /* About section images stack on mobile */
    #about .d-flex {
        flex-direction: column;
    }
    
    #about .bg-img-1 {
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }
    
    /* Reduce spacing in approach section blocks on mobile */
    .approach-section .col-md-6 {
        margin-bottom: 10px !important;
    }
    
    .approach-section .row {
        margin-top: 0.5rem !important;
    }
}
