   :root {
            --primary-green: #1a4d2e;
            --light-green: #2d6a4f;
            --gold: #d4af37;
            --gold-light: #e6c86e;
            --cream: #faf8f3;
            --dark-text: #2d3436;
            --light-gray: #f1f3f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        html, body {
            height: 100%;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--cream);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            color: var(--dark-text);
        }

        main {
            flex: 1 0 auto;
        }

        /* Header optimisé */
        header {
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            top: 0;
            z-index: 1000;
            padding: 25px 0;
			padding-top: 0px;
        }

        .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .header-logo {
            max-height: 240px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .header-logo:hover {
            transform: scale(1.05);
        }

        .header-nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-link-custom {
            text-decoration: none;
            color: var(--primary-green);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 10px 26px;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .nav-link-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .nav-link-custom:hover::before {
            left: 0;
        }

        .nav-link-custom:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 77, 46, 0.3);
        }

        .nav-separator {
            width: 2px;
            height: 22px;
            background: linear-gradient(180deg, transparent, var(--gold), transparent);
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, #1a4d2e 100%);
            color: white;
            padding: 30px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">ircle cx="50" cy="50" r="1" fill="rgbaba(255,255,255,0.1)"/></svg>');
            background-size: 50px 50px;
            opacity: 0.3;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 18px;
            line-height: 1.3;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.95;
            font-weight: 300;
            letter-spacing: 0.5px;
            color: var(--gold-light);
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-decoration {
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 22px auto 0;
            animation: pulse 1s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scaleX(1); }
            50% { opacity: 0.7; transform: scaleX(1.2); }
        }

        @keyframes markerPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            }
            50% {
                transform: scale(1.08);
                box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
            }
        }

        .section-title {
            text-align: center;
            margin: 0 0 40px;
            color: var(--primary-green);
            font-weight: 700;
            font-size: 2.3rem;
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 55px;
            height: 3px;
            background: var(--gold);
        }


        /* Section marques */
        .brand-slider {
            background: linear-gradient(180deg, var(--light-gray) 0%, var(--cream) 100%);
            padding: 40px 0;
        }

        .section-title {
            text-align: center;
            margin: 0 0 40px;
            color: var(--primary-green);
            font-weight: 700;
            font-size: 2.3rem;
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 55px;
            height: 3px;
            background: var(--gold);
        }

        .brand-card {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
            perspective: 1000px;
        }

        .brand-card-inner {
            padding: 22px;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-radius: 14px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform-style: preserve-3d;
            display: flex;
            flex-direction: column;
            border: 2px solid transparent;
        }

        /* Bordure dorée sur desktop au hover */
        .brand-card-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 14px;
            padding: 3px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .brand-card:hover .brand-card-inner::before {
            opacity: 1;
        }

        .brand-card-inner::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                    45deg,
                    transparent 30%,
                    rgba(255, 255, 255, 0.1) 50%,
                    transparent 70%
            );
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
            transition: transform 0.6s ease;
        }

        .brand-card:hover .brand-card-inner::after {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }

        .brand-card:hover .brand-card-inner {
            transform: translateY(-10px) rotateX(2deg);
            box-shadow: 0 18px 45px rgba(26, 77, 46, 0.2);
        }

        .brand-card-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.5s ease;
            border-radius: 50%;
            z-index: -1;
        }

        .brand-card:hover .brand-card-glow {
            transform: translate(-50%, -50%) scale(1.5);
        }

        .brand-logo-box {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            width: 100%;
            margin: 0 auto 15px auto;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            padding: 20px;
            position: relative;
            transition: all 0.4s ease;
        }

        .brand-logo-box.rocky-bg,
        .brand-logo-box.mgv-bg {
            background-color: #2d3436;
        }

        .brand-logo-box.mgv-bg {
            background-color: #403F3F;
        }

        .brand-logo-box.freilauber-bg {
            background-color: #008acd;
        }

        .brand-logo-box img {
            max-height: 80px;
            max-width: 100%;
            object-fit: contain;
            display: block;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .brand-card:hover .brand-logo-box img {
            transform: scale(1.1) translateY(-5px);
        }

        .brand-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .brand-desc {
            font-size: 0.92rem;
            color: #636e72;
            line-height: 1.5;
            font-weight: 400;
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 65px;
        }

        .brand-card:hover .brand-desc {
            color: var(--primary-green);
            transform: translateY(-2px);
        }

        .brand-card-badge {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: white;
            padding: 5px 14px;
            border-radius: 18px;
            font-size: 0.82rem;
            font-weight: 600;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }

        .brand-card:hover .brand-card-badge {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile : bordure dorée toujours visible + espacement réduit */
        @media (max-width: 768px) {
            .brand-slider {
                padding: 35px 0;
            }

            .brand-slider .row {
                gap: 18px;
            }

            .brand-slider .col-12 {
                padding-left: 12px;
                padding-right: 12px;
            }

            /* Bordure dorée toujours visible sur mobile */
            .brand-card-inner {
                border: 2px solid var(--gold);
                box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
            }

            /* Désactiver les effets hover sur mobile */
            .brand-card-inner::before {
                display: none;
            }

            /* Badge toujours visible sur mobile */
            .brand-card-badge {
                opacity: 1;
                transform: translateY(0);
            }

            /* Logo plus petit sur mobile */
            .brand-logo-box {
                height: 100px;
            }

            .brand-logo-box img {
                max-height: 65px;
            }

            .brand-card-inner {
                padding: 18px;
            }

            .brand-desc {
                font-size: 0.88rem;
                min-height: 55px;
            }
        }

        @media (max-width: 576px) {
            .brand-slider {
                padding: 30px 0;
            }

            .brand-slider .row {
                gap: 15px;
            }

            .brand-card-inner {
                padding: 16px;
            }

            .brand-logo-box {
                height: 90px;
                padding: 15px;
            }

            .brand-logo-box img {
                max-height: 55px;
            }

            .brand-desc {
                font-size: 0.85rem;
            }

            .brand-card-badge {
                padding: 4px 12px;
                font-size: 0.75rem;
            }
        }




        /* Slider avec animations enrichies */
        .vineyard-slider {
            width: 100%;
            height: 40vh;
            min-height: 420px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
            margin: 0;
            padding: 0;
        }

        .vineyard-slider .carousel,
        .vineyard-slider .carousel-inner,
        .vineyard-slider .carousel-item {
            height: 100%;
        }

        .vineyard-slider .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .vineyard-slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
/*            background: linear-gradient(
                    135deg,
                    rgba(26, 77, 46, 0.6) 0%,
                    rgba(45, 106, 79, 0.5) 50%,
                    rgba(26, 77, 46, 0.6) 100%
            );

 */
            z-index: 1;
            animation: overlayPulse 1s ease-in-out infinite;
        }

        @keyframes overlayPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.85; }
        }

        .vineyard-slider .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                    ellipse at center,
                    transparent 0%,
                    rgba(26, 77, 46, 0.3) 100%
            );
            z-index: 1;
            animation: vignetteBreathing 1s ease-in-out infinite;
        }

        @keyframes vignetteBreathing {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .vineyard-slider .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                    radial-gradient(circle, rgba(212, 175, 55, 0.3) 2px, transparent 2px),
                    radial-gradient(circle, rgba(212, 175, 55, 0.2) 1px, transparent 1px);
            background-size: 50px 50px, 80px 80px;
            background-position: 0 0, 40px 40px;
            z-index: 1;
            animation: particlesFloat 1s linear infinite;
            opacity: 0.4;
        }

        @keyframes particlesFloat {
            0% { transform: translateY(0) translateX(0); }
            100% { transform: translateY(-100px) translateX(50px); }
        }

        .vineyard-slider .carousel-item.active img {
            animation: slowZoomPan 1s ease-in-out forwards;
        }

        @keyframes slowZoomPan {
            0% { transform: scale(1) translateX(0); }
            50% { transform: scale(1.08) translateX(-2%); }
            100% { transform: scale(1.1) translateX(0); }
        }

        .vineyard-slider .carousel-caption {
            z-index: 2;
            bottom: 28%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            width: 90%;
            max-width: 750px;
        }

        .slide-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.3rem;
            font-weight: 700;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
            letter-spacing: 1px;
            animation: titleSlideScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        @keyframes titleSlideScale {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.8);
            }
            60% {
                transform: translateY(-5px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .slide-subtitle {
            font-size: 1.15rem;
            font-weight: 300;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            color: var(--gold-light);
            letter-spacing: 0.5px;
            animation: subtitleFadeSlide 0.8s ease 0.3s both;
        }

        @keyframes subtitleFadeSlide {
            0% {
                opacity: 0;
                transform: translateY(30px);
                letter-spacing: 3px;
            }
            100% {
                opacity: 1;
                transform: translateY(0);
                letter-spacing: 0.5px;
            }
        }

        .slide-title::after {
            content: '';
            display: block;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 15px auto 0;
            animation: lineExpand 1s ease 0.5s forwards;
        }

        @keyframes lineExpand {
            0% {
                width: 0;
                opacity: 0;
            }
            100% {
                width: 80px;
                opacity: 1;
            }
        }

        .vineyard-slider .carousel-indicators {
            z-index: 2;
            margin-bottom: 18px;
        }

        .vineyard-slider .carousel-indicators button {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            border: 2px solid var(--gold-light);
            background-color: transparent;
            opacity: 0.6;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .vineyard-slider .carousel-indicators button.active {
            background-color: var(--gold);
            opacity: 1;
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
            animation: indicatorPulse 0.5s ease;
        }

        @keyframes indicatorPulse {
            0%, 100% { transform: scale(1.3); }
            50% { transform: scale(1.5); }
        }

        .vineyard-slider .carousel-indicators button:hover {
            opacity: 1;
            transform: scale(1.2);
        }

        .vineyard-slider .carousel-control-prev,
        .vineyard-slider .carousel-control-next {
            z-index: 2;
            width: 70px;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .vineyard-slider .carousel-control-prev:hover,
        .vineyard-slider .carousel-control-next:hover {
            opacity: 1;
        }

        .vineyard-slider .carousel-control-prev-icon,
        .vineyard-slider .carousel-control-next-icon {
            width: 45px;
            height: 45px;
            background-color: rgba(212, 175, 55, 0.9);
            border-radius: 50%;
            padding: 11px;
            transition: all 0.3s ease;
            filter: none;
            animation: controlPulse 2s ease-in-out infinite;
        }

        @keyframes controlPulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
            }
        }

        .vineyard-slider .carousel-control-prev:hover .carousel-control-prev-icon,
        .vineyard-slider .carousel-control-next:hover .carousel-control-next-icon {
            background-color: var(--gold);
            transform: scale(1.15);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
            animation: none;
        }

        .vineyard-slider .carousel-fade .carousel-item {
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .vineyard-slider .carousel-fade .carousel-item.active {
            opacity: 1;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-green) 0%, #0f2419 100%);
            color: white;
            flex-shrink: 0;
            padding: 32px 0;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        footer p {
            margin: 0;
            font-size: 0.93rem;
            opacity: 0.9;
        }

        .footer-contact-item {
            font-size: 0.92rem;
            opacity: 0.95;
            transition: all 0.3s ease;
            margin-bottom: 8px;
        }

        .footer-contact-item:hover {
            opacity: 1;
            transform: translateX(5px);
        }

        .footer-contact-item i {
            color: var(--gold-light);
            font-size: 0.95rem;
        }

        .footer-contact-item a:hover {
            color: var(--gold-light) !important;
        }

        .footer-address {
            font-size: 0.82rem;
            opacity: 0.8;
            line-height: 1.6;
            margin-top: 12px;
        }

        .footer-address i {
            color: var(--gold-light);
        }

        .footer-tagline {
            font-size: 0.88rem;
            color: var(--gold-light);
            opacity: 0.95;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-rights {
            font-size: 0.78rem;
            opacity: 0.7;
            margin-top: 8px;
        }

        .footer-follow {
            font-size: 0.92rem;
            opacity: 0.9;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.15rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            border: 2px solid transparent;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: white;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
            border-color: var(--gold-light);
        }

        .social-icon i {
            transition: transform 0.3s ease;
        }

        .social-icon:hover i {
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .header-logo {
                max-height: 125px;
            }

            .header-nav {
                gap: 24px;
            }

            .nav-link-custom {
                font-size: 0.98rem;
                padding: 9px 22px;
            }

            .hero {
                padding: 45px 0;
            }

            .hero h1 {
                font-size: 2.1rem;
            }

            .hero p {
                font-size: 1.15rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-divider {
                height: 55px;
            }

            .section-marker-icon {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .brand-slider {
                padding: 40px 0;
            }

            .vineyard-slider {
                height: 30vh;
            }

            .slide-title {
                font-size: 2rem;
            }

            .slide-subtitle {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 768px) {

            .header-nav {
                flex-direction: column;
                gap: 12px;
            }

            .nav-separator {
                width: 45px;
                height: 2px;
            }

            .hero {
                padding: 40px 0;
            }

            .hero h1 {
                font-size: 1.7rem;
            }

            .hero p {
                font-size: 1.05rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 35px;
            }

            .section-divider {
                height: 45px;
            }

            .section-marker {
                gap: 15px;
            }

            .section-marker-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }

            .brand-slider {
                padding: 35px 0;
            }

            .brand-slider .row {
                gap: 10px;
            }

            .vineyard-slider {
                height: 340px;
            }

            .slide-title {
                font-size: 1.65rem;
            }

            .slide-subtitle {
                font-size: 0.98rem;
            }

            .vineyard-slider .carousel-control-prev-icon,
            .vineyard-slider .carousel-control-next-icon {
                width: 38px;
                height: 38px;
            }

            footer {
                padding: 28px 0;
            }

            .footer-contact,
            .footer-social {
                margin-bottom: 18px;
            }

            footer .row > div {
                margin-bottom: 22px;
            }

            footer .row > div:last-child {
                margin-bottom: 0;
            }

            .social-icon {
                width: 46px;
                height: 46px;
                font-size: 1.25rem;
            }
        }

        @media (max-width: 576px) {
            header {
                padding: 10px 0;
            }

            .hero {
                padding: 32px 0;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .section-divider {
                height: 40px;
            }

            .brand-slider {
                padding: 30px 0;
            }

            .vineyard-slider {
                height: 290px;
            }

            .slide-title {
                font-size: 1.45rem;
            }

            .slide-subtitle {
                font-size: 0.9rem;
            }
        }
		
		
		  /* Section Contact */
        .contact-section {
            padding: 60px 0;
            background: linear-gradient(180deg, var(--light-gray) 0%, var(--cream) 100%);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Carte d'informations */
        .contact-info-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            border: 2px solid var(--gold);
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--gold), var(--gold-light));
        }

        .contact-info-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-info-title i {
            color: var(--gold);
            font-size: 1.8rem;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 28px;
            padding: 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: var(--light-gray);
        }

        .contact-info-item:hover {
            background: white;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
            transform: translateX(5px);
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .contact-info-content h3 {
            font-size: 1.1rem;
            color: var(--primary-green);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .contact-info-content p,
        .contact-info-content a {
            font-size: 0.95rem;
            color: #636e72;
            margin: 0;
            line-height: 1.6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info-content a:hover {
            color: var(--gold);
        }

        /* Formulaire de contact */
        .contact-form-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            border: 2px solid var(--gold);
        }

        .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .form-title i {
            color: var(--gold);
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-group label .required {
            color: var(--gold);
        }

        .form-control-custom {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .form-control-custom:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
        }

        textarea.form-control-custom {
            min-height: 140px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Section Map */
        .map-section {
            padding: 60px 0;
            background: var(--cream);
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .map-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.3rem;
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .map-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 55px;
            height: 3px;
            background: var(--gold);
        }

        .map-frame {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            border: 3px solid var(--gold);
            height: 450px;
        }

        .map-frame iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-green) 0%, #0f2419 100%);
            color: white;
            flex-shrink: 0;
            padding: 32px 0;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        footer p {
            margin: 0;
            font-size: 0.93rem;
            opacity: 0.9;
        }

        .footer-contact-item {
            font-size: 0.92rem;
            opacity: 0.95;
            transition: all 0.3s ease;
            margin-bottom: 8px;
        }

        .footer-contact-item:hover {
            opacity: 1;
            transform: translateX(5px);
        }

        .footer-contact-item i {
            color: var(--gold-light);
            font-size: 0.95rem;
        }

        .footer-contact-item a:hover {
            color: var(--gold-light) !important;
        }

        .footer-address {
            font-size: 0.82rem;
            opacity: 0.8;
            line-height: 1.6;
            margin-top: 12px;
        }

        .footer-address i {
            color: var(--gold-light);
        }

        .footer-tagline {
            font-size: 0.88rem;
            color: var(--gold-light);
            opacity: 0.95;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-rights {
            font-size: 0.78rem;
            opacity: 0.7;
            margin-top: 8px;
        }

        .footer-follow {
            font-size: 0.92rem;
            opacity: 0.9;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.15rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            border: 2px solid transparent;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: white;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
            border-color: var(--gold-light);
        }

        .social-icon i {
            transition: transform 0.3s ease;
        }

        .social-icon:hover i {
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .header-logo {
                max-height: 140px;
            }

            .header-nav {
                gap: 24px;
            }

            .nav-link-custom {
                font-size: 0.98rem;
                padding: 9px 22px;
            }

            .hero-contact {
                padding: 45px 0;
            }

            .hero-contact h1 {
                font-size: 2.1rem;
            }

            .hero-contact p {
                font-size: 1.15rem;
            }

            .contact-container {
                gap: 30px;
            }

            .contact-info-card,
            .contact-form-card {
                padding: 30px;
            }

            .contact-info-title,
            .form-title {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 768px) {
            .header-logo {
                max-height: 125px;
            }

            .header-nav {
                flex-direction: row;
                gap: 12px;
            }

            .nav-separator {
                width: 45px;
                height: 2px;
            }

            .hero-contact {
                padding: 40px 0;
            }

            .hero-contact h1 {
                font-size: 1.7rem;
            }

            .hero-contact p {
                font-size: 1.05rem;
            }

            .contact-section,
            .map-section {
                padding: 40px 0;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .contact-info-card,
            .contact-form-card {
                padding: 25px;
            }

            .contact-info-title,
            .form-title {
                font-size: 1.5rem;
            }

            .map-frame {
                height: 350px;
            }