*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c19a5b;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: #c19a5b;
    color: white;
}

.btn-primary:hover {
    background-color: #a88447;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(193, 154, 91, 0.2);
}

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3a5f;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: #c19a5b;
}

.logo img {
    height: 45px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        height: 35px;
        margin-right: 8px;
    }
}

/* Navigation Desktop */
.nav-desktop ul {
    display: flex;
    list-style: none;
}

.nav-desktop li {
    margin-left: 30px;
}

.nav-desktop a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #c19a5b;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c19a5b;
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #1a3a5f;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Mobile */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 80px 30px 30px;
}

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

.nav-mobile ul {
    list-style: none;
}

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

.nav-mobile a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: #c19a5b;
}

.cars-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf2 100%);
    overflow: hidden;
    min-height: 100vh;
}

.trade-section {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, #0a1a2f 0%, #1a3a5f 100%);
    overflow: hidden;
    min-height: 100vh;
    color: white;
}

/* ===== ÉLÉMENTS D'ARRIÈRE-PLAN ANIMÉS ===== */
.trade-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Conteneurs maritimes */
.shipping-container {
    position: absolute;
    bottom: 50px;
    z-index: 2;
}

.shipping-container.left {
    left: -100px;
    animation: floatContainer 20s infinite ease-in-out;
}

.shipping-container.right {
    right: -100px;
    animation: floatContainer 18s infinite ease-in-out reverse;
}

@keyframes floatContainer {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

.container-stack {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.container-box {
    width: 120px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(193, 154, 91, 0.3);
    border-radius: 8px;
    position: relative;
    transform: skewX(-5deg);
    backdrop-filter: blur(5px);
}

.container-box::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(193, 154, 91, 0.2);
    border-radius: 4px;
}

.container-box.blue {
    border-color: rgba(52, 152, 219, 0.5);
}

.container-box.red {
    border-color: rgba(231, 76, 60, 0.5);
}

.container-box.green {
    border-color: rgba(46, 204, 113, 0.5);
}

.container-box.orange {
    border-color: rgba(230, 126, 34, 0.5);
}

/* Carte du monde animée */
.world-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.continent {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawMap 10s ease-in-out infinite;
}

@keyframes drawMap {
    0% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 1000;
    }
}

.sea-route {
    stroke-dasharray: 10;
    animation: moveRoute 20s linear infinite;
}

@keyframes moveRoute {
    to {
        stroke-dashoffset: -100;
    }
}

.ship,
.plane {
    animation: moveShip 30s linear infinite;
}

.ship1 {
    animation: moveShip 25s linear infinite;
}

.ship2 {
    animation: moveShip 30s linear infinite reverse;
}

.ship3 {
    animation: moveShip 35s linear infinite;
}

.plane1 {
    animation: movePlane 15s linear infinite;
}

.plane2 {
    animation: movePlane 20s linear infinite reverse;
}

@keyframes moveShip {
    from {
        transform: translateX(-50px);
    }

    to {
        transform: translateX(850px);
    }
}

@keyframes movePlane {
    from {
        transform: translateX(-100px) translateY(0);
    }

    to {
        transform: translateX(900px) translateY(-50px);
    }
}

/* Grue */
.crane {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    height: 300px;
    z-index: 2;
    opacity: 0.2;
}

.crane-arm {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 10px;
    background: rgba(193, 154, 91, 0.5);
    transform-origin: right center;
    animation: craneMove 10s ease-in-out infinite;
}

@keyframes craneMove {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

.crane-hook {
    position: absolute;
    top: 10px;
    right: 100px;
    width: 4px;
    height: 50px;
    background: rgba(193, 154, 91, 0.5);
    animation: hookMove 5s ease-in-out infinite;
}

@keyframes hookMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

/* ===== STATISTIQUES ===== */
.trade-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 154, 91, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    animation: statPulse 3s infinite;
}

@keyframes statPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #c19a5b;
    box-shadow: 0 20px 40px rgba(193, 154, 91, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(193, 154, 91, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #c19a5b;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

/* ===== FILTRES ===== */
.trade-filters {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 154, 91, 0.2);
    border-radius: 50px;
    padding: 20px 30px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trade-filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trade-filter-btn:hover {
    border-color: #c19a5b;
    color: white;
}

.trade-filter-btn.active {
    background: #c19a5b;
    border-color: #c19a5b;
    color: white;
    box-shadow: 0 5px 15px rgba(193, 154, 91, 0.3);
}

.filter-search {
    position: relative;
    min-width: 250px;
}

.filter-search input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.filter-search input:focus {
    outline: none;
    border-color: #c19a5b;
    background: rgba(255, 255, 255, 0.15);
}

.filter-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

/* ===== GRILLE DES PRODUITS ===== */
.trade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.trade-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 154, 91, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFloat 0.6s ease-out;
}

@keyframes cardFloat {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trade-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #c19a5b;
    box-shadow: 0 30px 50px rgba(193, 154, 91, 0.2);
}

.trade-card-inner {
    display: flex;
    flex-direction: column;
}

/* ===== MEDIA ===== */
.trade-media {
    position: relative;
}

.trade-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.trade-card:hover .trade-image {
    transform: scale(1.1);
}

.trade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trade-card:hover .trade-overlay {
    opacity: 1;
}

.quality-indicator {
    width: 100%;
}

.quality-label {
    color: white;
    font-size: 0.8rem;
    margin-bottom: 5px;
    display: block;
}

.quality-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.quality-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.quality-fill.premium {
    background: linear-gradient(90deg, #f1c40f, #e67e22);
}

.quality-fill.standard {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.quality-value {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== BADGES ===== */
.trade-badge {
    position: absolute;
    top: 15px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
    text-transform: uppercase;
}

.trade-badge.export {
    left: 15px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.trade-badge.import {
    left: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.trade-badge.origin {
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: white;
}

/* ===== MINIATURES ===== */
.trade-thumbnails {
    display: flex;
    gap: 5px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
}

.trade-thumb {
    width: 50px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.trade-thumb:hover,
.trade-thumb.active {
    border-color: #c19a5b;
    transform: translateY(-3px);
    opacity: 1;
}

/* ===== INFORMATIONS ===== */
.trade-info {
    padding: 25px;
    color: white;
}

.trade-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.trade-header h3 {
    font-size: 1.3rem;
    color: white;
}

.trade-rating {
    color: #f1c40f;
    font-size: 0.9rem;
}

.trade-rating span {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 5px;
}

/* ===== SPÉCIFICATIONS ===== */
.trade-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.spec-item i {
    color: #c19a5b;
}

/* ===== CARACTÉRISTIQUES ===== */
.trade-features {
    list-style: none;
    margin-bottom: 15px;
}

.trade-features li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.trade-features i {
    color: #27ae60;
    margin-right: 8px;
}

/* ===== PRIX ===== */
.trade-price-section {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c19a5b;
}

.price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.price-options {
    font-size: 0.9rem;
}

.bulk {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* ===== ACTIONS ===== */
.trade-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-inquiry {
    flex: 2;
    padding: 14px;
    background: #c19a5b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-inquiry:hover {
    background: #a88447;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 154, 91, 0.3);
}

.btn-specs {
    flex: 1;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-specs:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-chat {
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-chat:hover {
    background: #128C7E;
    transform: translateY(-2px) rotate(360deg);
}

.btn-details-trade {
    flex: 1;
    padding: 14px;
    background: #1a3a5f;
    color: white;
    border: 2px solid #1a3a5f;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-details-trade:hover {
    background: transparent;
    color: #1a3a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 95, 0.3);
}

/* ===== GALERIE MODAL IMPORT-EXPORT ===== */
.gallery-content {
    background: #0a0a0a !important;
    max-width: 900px !important;
    border: 1px solid rgba(193, 154, 91, 0.3);
}

.gallery-media-container {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    overflow: hidden;
}

.gallery-media-container img,
.gallery-media-container video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: fadeIn 0.5s ease;
}

.modal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-prev,
.modal-next {
    background: rgba(193, 154, 91, 0.2);
    color: #c19a5b;
    border: 1px solid #c19a5b;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background: #c19a5b;
    color: white;
    transform: scale(1.1);
}

.modal-title-display {
    color: #c19a5b !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-close {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    font-size: 1.5rem !important;
    top: 15px !important;
    right: 15px !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ===== SERVICES COMPLÉMENTAIRES ===== */
.additional-services {
    margin: 80px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.additional-services h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 154, 91, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #c19a5b;
    box-shadow: 0 20px 40px rgba(193, 154, 91, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(193, 154, 91, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c19a5b;
    margin: 0 auto 20px;
}

.service-card h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== PROCESSUS ===== */
.trade-process {
    margin: 80px 0;
    position: relative;
    z-index: 10;
}

.trade-process h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c19a5b, transparent);
}

.process-step {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #c19a5b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(193, 154, 91, 0.3);
}

.step-content h4 {
    color: white;
    margin-bottom: 10px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.step-arrow {
    position: absolute;
    top: 40px;
    right: -15px;
    color: #c19a5b;
    font-size: 1.2rem;
    z-index: 3;
}

/* ===== BOUTON VOIR PLUS ===== */

.view-more-container {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    background: white;
    border: 2px solid #c19a5b;
    color: #c19a5b;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(193, 154, 91, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-load-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-load-more:hover {
    background: #c19a5b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 91, 0.3);
}

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

.btn-load-more:hover i {
    transform: translateY(5px);
}

/* ===== PAYS PARTENAIRES ===== */
.partner-countries {
    margin: 80px 0;
    position: relative;
    z-index: 10;
}

.partner-countries h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

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

.country-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 154, 91, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    border-color: #c19a5b;
}

.country-card img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.country-card span {
    color: white;
    font-weight: 600;
}

/* ===== MODALS ===== */
.trade-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 3000;
    overflow-y: auto;
}

.trade-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideUp 0.4s ease;
}

.specs-content {
    max-width: 800px;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trade-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.trade-modal-close:hover {
    background: #c19a5b;
    color: white;
    transform: rotate(90deg);
}

.trade-modal-body {
    padding: 40px;
}

.trade-modal-body h2 {
    color: #1a3a5f;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

#selectedProductDisplay {
    color: #c19a5b;
    font-weight: 600;
    margin-bottom: 30px;
}



/* ===== SPÉCIFICATIONS ===== */
.specs-document {
    min-height: 400px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.specs-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.specs-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #c19a5b;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

.specs-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-download-pdf,
.btn-print-specs {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-download-pdf {
    background: #1a3a5f;
    color: white;
}

.btn-download-pdf:hover {
    background: #0a1a2f;
    transform: translateY(-2px);
}

.btn-print-specs {
    background: #f0f0f0;
    color: #333;
}

.btn-print-specs:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* ===== NOTIFICATION ===== */
.trade-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
    font-weight: 500;
    border-left: 4px solid #1a3a5f;
}

.trade-notification.show {
    transform: translateX(0);
}

/* ==============================================
   FOOTER
   ============================================== */

.footer {
    background-color: #1a3a5f;
    color: white;
    padding: 70px 0 30px;
}

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

.footer-brand p {
    margin: 15px 0 20px;
    color: #b0c4d9;
    line-height: 1.6;
}

.footer-brand a {
    color: wheat;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-brand a:hover {
    color: goldenrod;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c19a5b;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c19a5b;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #b0c4d9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #b0c4d9;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ==============================================
   RESPONSIVE STYLES
   ============================================== */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 15px 20px;
    }

    .nav-desktop {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        min-height: 600px;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
    }

    .contact-form-container,
    .contact-info,
    .map-container {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .trade-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .trade-grid {
        grid-template-columns: 1fr;
    }

    .trade-filters {
        border-radius: 20px;
        flex-direction: column;
    }

    .filter-tabs {
        justify-content: center;
    }

    .filter-search {
        width: 100%;
    }

    .trade-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .specs-actions {
        flex-direction: column;
    }

    .shipping-container {
        display: none;
    }
}

@media (max-width: 576px) {
    .trade-header {
        flex-direction: column;
        gap: 10px;
    }

    .trade-actions {
        flex-direction: column;
    }

    .btn-inquiry,
    .btn-specs {
        width: 100%;
    }

    .btn-chat {
        width: 100%;
    }

    .countries-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MODAL DÉTAILS PRODUIT ===== */
.details-content {
    max-width: 1000px !important;
    width: 95% !important;
    padding: 0 !important;
    overflow: hidden;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    min-height: 500px;
}

.details-media {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.details-main-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#detailsMainImage {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.details-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
}

.modal-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.modal-thumb:hover,
.modal-thumb.active {
    opacity: 1;
    border-color: #c19a5b;
    transform: scale(1.05);
}

.details-info {
    padding: 40px;
    background: white;
    color: #333;
    display: flex;
    flex-direction: column;
}

#detailsTitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a3a5f;
    margin-bottom: 10px;
}

.details-price {
    font-size: 1.5rem;
    color: #c19a5b;
    font-weight: 700;
    margin-bottom: 25px;
}

.details-description h3 {
    font-size: 1.1rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.details-specs-list {
    margin-bottom: 20px;
}

.details-features-list {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.details-features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
    text-align: left;
}

.details-features-list i {
    color: #27ae60;
    font-size: 1rem;
    flex-shrink: 0;
}

.details-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp-direct {
    background: #25d366 !important;
    color: white !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-whatsapp-direct:hover {
    background: #128c7e !important;
    transform: translateY(-2px);
    color: white !important;
}

.btn-inquiry-direct {
    background: #1a3a5f !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-inquiry-direct:hover {
    background: #0d213a !important;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .details-info {
        padding: 30px;
    }

    #detailsTitle {
        font-size: 1.8rem;
    }
}