/* Export Section */
.sb-export-section {
    padding: 100px 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.sb-export-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.sb-export-content {
    animation: sb-fadeInLeft 1s ease-out;
}

@keyframes sb-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sb-export-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.sb-export-title .sb-highlight {
    font-weight: 800;
    color: #2a2a2a;
    display: block;
}

.sb-export-description {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
    text-align: justify;
}

.sb-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sb-contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #505050 0%, #2a2a2a 100%);
    transition: left 0.4s ease;
}

.sb-contact-button:hover::before {
    left: 0;
}

.sb-contact-button span {
    position: relative;
    z-index: 1;
}

.sb-contact-button i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sb-contact-button:hover i {
    transform: translateX(8px);
}

/* Right Map */
.sb-export-map {
    position: relative;
    animation: sb-fadeInRight 1s ease-out;
}

@keyframes sb-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sb-world-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Earth Icon */
.sb-earth-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 420px;
    color: #e0e0e0;
    z-index: 1;
    opacity: 0.4;
}

/* Location Pins */
.sb-location-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.sb-location-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    animation: sb-pinDrop 0.6s ease-out backwards;
}

@keyframes sb-pinDrop {
    0% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(10px) scale(1.2);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.sb-location-pin svg {
    width: 100%;
    height: 100%;
    fill: #dc3545;
    filter: drop-shadow(0 4px 8px rgba(220, 53, 69, 0.4));
}

/* Pin pulse animation */
.sb-location-pin::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: rgba(220, 53, 69, 0.3);
    border-radius: 50%;
    animation: sb-pulse 2s infinite;
}

@keyframes sb-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.8);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sb-export-container {
        gap: 60px;
    }

    .sb-export-title {
        font-size: 42px;
    }

    .sb-world-map-container {
        height: 400px;
    }
    
    .sb-earth-icon {
        font-size: 350px;
    }
}

@media (max-width: 1024px) {
    .sb-export-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .sb-export-title {
        font-size: 38px;
    }

    .sb-world-map-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .sb-export-section {
        padding: 60px 0;
    }

    .sb-export-container {
        padding: 0 25px;
        gap: 50px;
    }

    .sb-export-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .sb-export-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .sb-contact-button {
        padding: 15px 35px;
        font-size: 13px;
    }

    .sb-world-map-container {
        height: 350px;
    }
    
    .sb-earth-icon {
        font-size: 300px;
    }

    .sb-location-pin {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .sb-export-title {
        font-size: 28px;
    }

    .sb-export-description {
        font-size: 14px;
    }

    .sb-world-map-container {
        height: 280px;
    }
    
    .sb-earth-icon {
        font-size: 250px;
    }

    .sb-location-pin {
        width: 20px;
        height: 20px;
    }
}
