 
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

 
 * {
            margin: 0;
            padding: 0;
        }

        body {
            background-color: #f8fafc;
            color: #1e2b37;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* Palette inspirée du logo */
        :root {
            --navy-dark: #0a2e3f;       /* bleu profond du logo */
            --navy-medium: #1c4b63;      /* bleu légèrement plus clair */
            --rust: #b85c3a;             /* teinte rouille/cuivre */
            --sand: #d4c5a3;              /* beige clair/cordage */
            --steel-light: #eef3f7;       /* fond clair acier */
            --text-dark: #1e2b37;
            --text-light: #5b7a91;
            --white: #ffffff;
            --shadow-hard: 0 20px 35px -8px rgba(0, 0, 0, 0.15);
            --panel-bg: rgba(255, 255, 255, 0.95);
        }

        /* header */
        .main-header {
            background-color: var(--navy-medium);
            box-shadow: 0 4px 18px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 3px solid var(--rust);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 85px;
        }

        .logo img {
            height: 90px;
            width: auto;
            display: block;
            border-radius: 6px;
            transition: filter 0.3s, transform 0.3s;
        }
        .logo img:hover {
            filter: drop-shadow(0 0 10px var(--rust));
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 2.8rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            color: var(--white);
            padding-bottom: 6px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            text-transform: uppercase;
        }
        .nav-links a.active, .nav-links a:hover {
            border-bottom-color: var(--rust);
            color: var(--white);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }
        .mobile-menu-toggle span {
            width: 30px;
            height: 3px;
            background-color: var(--navy-dark);
            border-radius: 3px;
        }

        /* Styles pour le menu déroulant */
        .dropdown {
            position: relative;
        }

        .dropdown > a {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--white);
            min-width: 220px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-radius: 10px;
            padding: 12px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 1px solid #eef2f6;
            border-top: 3px solid var(--rust);
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 8px);
        }

        .dropdown-menu li {
            margin: 0;
            padding: 0;
        }

        .dropdown-menu li a {
            display: block;
            padding: 12px 22px;
            color: var(--navy-dark);
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: none;
            letter-spacing: normal;
            border-bottom: none;
            transition: all 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: var(--steel-light);
            color: var(--rust);
            padding-left: 28px;
            border-bottom: none;
        }

        /* Adaptation mobile */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                align-items: center;
                gap: 1.2rem;
                padding: 2rem;
                border-top: 3px solid var(--rust);
                box-shadow: 0 20px 30px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            
            .dropdown {
                width: 100%;
                text-align: center;
            }
            
            .dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                background-color: #f8fafc;
                margin-top: 10px;
                display: none;
                width: 100%;
                border-top: 2px solid var(--rust);
            }
            
            .dropdown.active .dropdown-menu {
                display: block;
            }
            
            .dropdown-menu li a {
                text-align: center;
                justify-content: center;
            }
        }

        /* carrousel hero */
        .carousel-hero {
            position: relative;
            height: 90vh;
            min-height: 650px;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s ease;
            z-index: 1;
        }
        .slide.active { opacity: 1; }
        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, rgba(10,46,63,0.9) 0%, rgba(28,75,99,0.75) 80%);
            z-index: 2;
        }
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            color: white;
            text-shadow: 0 0 20px #000;
            width: 90%;
            max-width: 1000px;
        }
        .hero-content h1 {
            font-size: clamp(3.5rem, 14vw, 7rem);
            font-weight: 800;
            letter-spacing: 6px;
            line-height: 1.1;
            animation: fadeUp 1.2s;
            color: #ffffff;
            text-shadow: 4px 4px 0 var(--rust), 8px 8px 0 rgba(0,0,0,0.3);
        }
        .hero-content p {
            font-size: clamp(1.2rem, 4vw, 2rem);
            font-weight: 300;
            letter-spacing: 6px;
            margin-top: 1.2rem;
            color: var(--sand);
            text-shadow: 2px 2px 0 var(--navy-dark);
        }
        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: var(--sand);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            letter-spacing: 2px;
            opacity: 0.9;
        }
        .scroll-indicator i {
            font-size: 1.5rem;
            animation: bounce 2.2s infinite;
            color: var(--rust);
        }
        @keyframes bounce { 0%,20%,50%,80%,100%{transform:translateY(0);} 40%{transform:translateY(-12px);} 60%{transform:translateY(-6px);} }

        /* sections */
        section { padding: 5rem 1.5rem; max-width: 1300px; margin: 0 auto; }

        .section-card {
            background: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow-hard);
            padding: 3.5rem 3rem;
            border: 1px solid #e0e8ed;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s, transform 0.9s;
            position: relative;
            border-left: 8px solid var(--rust);
        }
        .section-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }
        .section-title {
            margin-bottom: 2rem;
            position: relative;
        }
        .section-title h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy-dark);
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 120px;
            height: 3px;
            background: var(--rust);
            margin-top: 1rem;
            border-radius: 2px;
        }
        .section-card p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        /* MODALE BATEAUX */
        .boat-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 46, 63, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .boat-modal-content {
            background-color: var(--white);
            max-width: 750px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            border-radius: 24px;
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: modalFadeIn 0.3s ease;
            border: 3px solid var(--navy-dark);
        }

        .boat-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: var(--navy-dark);
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
            z-index: 10;
        }
        .boat-modal-close:hover {
            color: var(--rust);
        }

        .boat-modal-body {
            display: flex;
            flex-direction: column;
        }

        .boat-modal-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .boat-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-bottom: 3px solid var(--navy-dark);
        }

        .boat-modal-details {
            padding: 35px;
        }

        .boat-modal-details h2 {
            color: var(--navy-dark);
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .boat-modal-details .boat-modal-subtitle {
            color: var(--rust);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .boat-modal-details p {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1rem;
        }

        .boat-modal-details .boat-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            border-top: 1px solid #eef2f6;
            padding-top: 30px;
        }

        .boat-spec-item {
            flex: 1 1 180px;
            background: var(--steel-light);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid var(--rust);
        }

        .boat-spec-item strong {
            color: var(--navy-dark);
            display: block;
            margin-bottom: 6px;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .boat-spec-item span {
            color: var(--navy-medium);
            font-size: 1rem;
            font-weight: 500;
        }

        .boat-modal-btn {
            width: 100%;
            padding: 16px;
            background: var(--navy-dark);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .boat-modal-btn:hover {
            background: var(--rust);
        }

        @media (max-width: 768px) {
            .boat-modal-image {
                height: 200px;
            }
            .boat-modal-details {
                padding: 20px;
            }
        }

        /* Ajout du curseur pointer sur les cartes bateaux */
        .card.boat-card {
            cursor: pointer;
        }

        /* NOS RÉALISATIONS */
        .featured-projects {
            background-color: var(--steel-light);
            border-radius: 50px;
            padding: 80px 10%;
            text-align: center;
        }

        .featured-projects h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 15px;
        }

        .featured-projects .subtitle {
            color: var(--text-light);
            margin-bottom: 60px;
            font-size: 1.2rem;
        }

        .projects-grid {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }

        .project-card {
            background: var(--white);
            width: 340px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            transition: 0.3s;
            border: 1px solid #eef2f6;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px -5px rgba(0,0,0,0.15);
            border-color: var(--rust);
        }

        .project-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            border-bottom: 3px solid var(--rust);
            cursor: pointer;
        }

        .project-card:hover .project-image img {
            transform: scale(1.08);
        }

        .card-content {
            padding: 25px 20px;
            text-align: left;
        }

        .card-content h3 {
            margin-bottom: 8px;
            color: var(--navy-dark);
            font-size: 1.5rem;
        }

        .card-content p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 10px 28px;
            background: var(--navy-dark);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: 0.3s;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn:hover {
            background: var(--rust);
            color: var(--white);
        }

        /* MODALE PROJETS */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 46, 63, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--white);
            max-width: 850px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            border-radius: 24px;
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: modalFadeIn 0.3s ease;
            border: 3px solid var(--rust);
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: var(--navy-dark);
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
            z-index: 10;
        }
        .modal-close:hover {
            color: var(--rust);
        }

        .modal-body {
            display: flex;
            flex-direction: column;
        }

        .modal-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-bottom: 3px solid var(--rust);
        }

        .modal-details {
            padding: 35px;
        }

        .modal-details h2 {
            color: var(--navy-dark);
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .modal-details .modal-subtitle {
            color: var(--rust);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .modal-details p {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .modal-details .specs {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            border-top: 1px solid #eef2f6;
            padding-top: 30px;
        }

        .spec-item {
            flex: 1 1 200px;
        }

        .spec-item strong {
            color: var(--navy-dark);
            display: block;
            margin-bottom: 5px;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .spec-item span {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .modal-image {
                height: 200px;
            }
            .modal-details {
                padding: 20px;
            }
        }

        /* SECTION 3D */
        .section-3d {
            perspective: 1200px;
            display: flex;
            justify-content: center;
            padding: 3rem 1.5rem;
        }

        .card-3d {
            width: 550px;
            height: 350px;
            border-radius: 24px;
            overflow: hidden;
            transform: rotateX(15deg) rotateY(-20deg) rotateZ(-5deg);
            transition: transform 0.7s ease;
            box-shadow: 0 40px 80px rgba(0,0,0,0.3);
            border: 3px solid var(--rust);
        }

        .card-3d:hover {
            transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        }

        .card-3d img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* SECTION CARDS (coques) */
        .section.boats {
            background-color: var(--white);
            border-radius: 50px;
            padding: 80px 8%;
            text-align: center;
        }

        .section.boats h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--navy-dark);
        }

        .section.boats p {
            color: var(--text-light);
            font-size: 1.2rem;
            margin-bottom: 60px;
        }

        .cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            position: relative;
            flex-wrap: wrap;
        }

        .card.boat-card {
            position: relative;
            width: 260px;
            height: 460px;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            box-shadow: 0 20px 25px -8px rgba(0,0,0,0.2);
            border: 1px solid #e0e8ed;
            transition: transform 0.3s;
        }

        .card.boat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 35px -10px rgba(0,0,0,0.3);
        }

        .card.boat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.7s ease;
        }
        .card.boat-card:hover img {
            transform: scale(1.15);
        }

        .card.boat-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, var(--navy-dark), transparent);
            color: white;
            text-align: left;
            border-top: 3px solid var(--rust);
        }
        .card.boat-card .overlay h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--sand);
        }
        .card.boat-card .overlay span {
            font-size: 0.9rem;
            opacity: 0.9;
            color: #eef3f7;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--navy-medium);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            cursor: pointer;
            box-shadow: 0 0 0 2px var(--rust);
            font-weight: bold;
            color: white;
            z-index: 20;
        }
        .arrow:hover { background: var(--rust); color: var(--navy-dark); }
        .arrow.left{ left:-20px; }
        .arrow.right{ right:-20px; }

        @media (max-width: 768px) {
            .cards {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                padding: 10px 0;
                scrollbar-width: thin;
                scrollbar-color: var(--rust) var(--steel-light);
            }
            .cards::-webkit-scrollbar {
                height: 6px;
            }
            .cards::-webkit-scrollbar-track {
                background: var(--steel-light);
            }
            .cards::-webkit-scrollbar-thumb {
                background: var(--rust);
                border-radius: 3px;
            }
            .arrow {
                display: none;
            }
        }

        /* Équipe */
        .team-section {
            background: var(--white);
            padding: 80px 10%;
            text-align: center;
            border-radius: 50px;
            margin: 40px auto;
        }

        .team-section h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 15px;
        }

        .team-section p {
            color: var(--text-light);
            margin-bottom: 60px;
            font-size: 1.2rem;
        }

        .team-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-card {
            background: var(--white);
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #eef2f6;
            position: relative;
            transition: 0.4s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .team-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
            border-color: var(--rust);
        }

        .team-card img {
            width: 100%;
            display: block;
            border-bottom: 3px solid var(--rust);
        }

        .overlay-social {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, var(--navy-dark), transparent);
            display: flex;
            justify-content: center;
            align-items: flex-end;
            padding-bottom: 20px;
            opacity: 0;
            transition: 0.4s ease;
        }

        .team-card:hover .overlay-social {
            opacity: 1;
        }

        .social-icons-team {
            display: flex;
            gap: 18px;
        }

        .social-icons-team a {
            color: var(--white);
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .social-icons-team a:hover {
            transform: scale(1.2);
            color: var(--sand);
        }

        .team-info {
            padding: 20px 10px;
        }

        .team-info h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--navy-dark);
        }

        .team-info span {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        @media (max-width: 992px) {
            .team-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .team-container { grid-template-columns: 1fr; }
        }

        /* vidéo */
        .video-text-container {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }
        .video-text { 
            flex: 1; 
            min-width: 280px; 
            font-size: 1.2rem; 
            color: var(--text-light);
        }
        .video-container {
            flex: 1;
            min-width: 320px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 0 3px var(--rust);
            border: 1px solid var(--white);
        }
        .video-container video { width: 100%; height: auto; display: block; }

        /* carrousel expertise */
        #carousel-section { background: transparent; padding-top: 2rem; }
        .carousel-container {
            background: var(--white);
            border-radius: 40px;
            padding: 3.5rem 2rem;
            box-shadow: var(--shadow-hard);
            border: 1px solid #e0e8ed;
        }
        .carousel-title h2 {
            font-size: 3rem;
            color: var(--navy-dark);
        }
        .carousel-title p {
            color: var(--text-light);
            font-size: 1.2rem;
        }
        .carousel {
            position: relative;
            margin: 3rem 0 1.8rem;
            border-radius: 20px;
            overflow: hidden;
            border: 3px solid var(--rust);
            box-shadow: 0 20px 30px -5px rgba(0,0,0,0.2);
        }
        .carousel-track { display: flex; transition: transform 0.6s ease; }
        .carousel-slide { min-width: 100%; position: relative; }
        .carousel-slide img { width: 100%; height: 550px; object-fit: cover; display: block; }
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, var(--navy-dark), transparent);
            color: white;
            padding: 2.5rem 2.5rem 2rem;
            border-top: 3px solid var(--rust);
        }
        .carousel-caption h3 {
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--sand);
        }
        .carousel-caption p {
            font-size: 1.2rem;
            opacity: 0.9;
            color: var(--steel-light);
        }
        .carousel-controls {
            position: absolute; top: 50%; width: 100%; transform: translateY(-50%);
            display: flex; justify-content: space-between; padding: 0 1.5rem; z-index: 10; pointer-events: none;
        }
        .carousel-btn {
            background: rgba(10,46,63,0.8); border: 2px solid var(--rust);
            width: 56px; height: 56px; border-radius: 4px; font-size: 1.8rem;
            color: var(--sand); cursor: pointer; pointer-events: auto;
            transition: 0.2s;
        }
        .carousel-btn:hover { background: var(--rust); color: var(--navy-dark); border-color: white; }
        .carousel-indicators { display: flex; justify-content: center; gap: 14px; margin-top: 2rem; }
        .indicator {
            width: 50px; height: 6px; background: #d0dce5; border-radius: 2px; cursor: pointer; transition: 0.3s;
        }
        .indicator.active { background: var(--rust); width: 80px; }

        @media (max-width: 768px) {
            .carousel-slide img { height: 350px; }
            .carousel-caption h3 { font-size: 1.8rem; }
        }

        /* section ZAFINDRANO */
        .zafindrano-section {
            background: var(--white);
            padding: 80px 10%;
            border-radius: 60px;
            box-shadow: var(--shadow-hard);
            margin: 40px auto;
        }
        .zafindrano-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; flex-wrap: wrap; }
        .zafindrano-text { width: 45%; min-width: 300px; }
        .zafindrano-text h2 {
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 6px;
            margin-bottom: 20px;
            color: var(--navy-dark);
        }
        .zafindrano-text p { font-size: 1.1rem; line-height: 1.9; color: var(--text-light); margin-bottom: 25px; }
        .btn-zafindrano {
            display: inline-block; padding: 16px 45px;
            background: transparent; color: var(--navy-dark);
            text-decoration: none; letter-spacing: 2px; font-size: 0.9rem; transition: 0.3s;
            border-radius: 0; font-weight: 600;
            border: 2px solid var(--rust);
        }
        .btn-zafindrano:hover { background: var(--rust); color: var(--white); border-color: var(--navy-dark); }
        .zafindrano-images {
            position: relative; width: 50%; min-width: 300px; height: 500px;
        }
        .zafindrano-images img {
            width: 70%; border-radius: 10px;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3), 0 0 0 3px var(--rust);
            position: absolute; transition: all 0.4s;
            border: 1px solid white;
        }
        .img-top { top: 0; left: 0; z-index: 3; }
        .img-middle { top: 120px; left: 120px; z-index: 2; }
        .img-bottom { top: 240px; left: 40px; z-index: 1; }
        .zafindrano-images img:hover {
            transform: scale(1.07) translateY(-8px);
            z-index: 10; box-shadow: 0 25px 35px -10px black;
            border-color: var(--rust);
        }

        @media (max-width: 768px) {
            .zafindrano-container { flex-direction: column-reverse; }
            .zafindrano-images { height: 400px; width: 100%; }
        }

        /* footer */
        footer {
            background: var(--navy-dark);
            color: #b0ccdd;
            padding: 5rem 1.5rem 3rem;
            margin-top: 4rem;
            border-top: 6px solid var(--rust);
        }
        .footer-content { max-width: 1300px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
        .footer-logo { display: flex; align-items: center; gap: 18px; font-size: 2.2rem; font-weight: 700; color: var(--sand); }
        .footer-logo img { height: 65px; border-radius: 8px; border: 2px solid var(--rust); transition: transform 0.3s; }
        .footer-logo img:hover { transform: scale(1.05); }
        .footer-links { display: flex; gap: 2.8rem; flex-wrap: wrap; justify-content: center; }
        .footer-links a { color: #b0ccdd; text-decoration: none; font-weight: 500; transition: 0.2s; font-size: 1.1rem; }
        .footer-links a:hover { color: var(--rust); }
        .social-icons a {
            color: var(--sand); background: #1c4b63; width: 48px; height: 48px;
            border-radius: 4px; display: inline-flex; align-items: center; justify-content: center;
            margin: 0 8px; transition: 0.3s; font-size: 1.3rem; border: 1px solid var(--rust);
        }
        .social-icons a:hover { background: var(--rust); color: var(--navy-dark); border-color: var(--sand); }
        .copyright { color: #8aaec2; font-size: 1rem; }
        .order-note { color: #9bbdd0; font-style: italic; }