/* ============================================
   Export Countries Section
   sgn-export-countries- prefix
   ============================================ */

.sgn-export-countries {
    padding: 70px 0 60px;
    background: #f8f9fa;
    position: relative;
}

.sgn-export-countries-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left side — heading */
.sgn-export-countries-text {
    flex: 0 0 340px;
}

.sgn-export-countries-heading {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 0;
}

.sgn-export-countries-heading .sgn-highlight {
    color: #4caf50;
}

.sgn-export-countries-subtext {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin-top: 14px;
    line-height: 1.6;
}

/* Right side — flags grid */
.sgn-export-countries-flags {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.sgn-export-countries-flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: default;
}

.sgn-export-countries-flag-item:hover {
    transform: scale(1.1);
}

.sgn-export-countries-flag-img {
    width: 64px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sgn-export-countries-flag-name {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #4b5563;
    text-align: center;
    white-space: nowrap;
}

/* View More button */
.sgn-export-countries-cta {
    text-align: center;
    margin-top: 40px;
}

.sgn-export-countries-btn {
    display: inline-block;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    padding: 12px 36px;
    border: 2px solid #1a1a2e;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: transparent;
}

.sgn-export-countries-btn:hover {
    background: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.2);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 992px) {
    .sgn-export-countries-inner {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    .sgn-export-countries-text {
        flex: none;
        max-width: 500px;
    }

    .sgn-export-countries-heading {
        font-size: 28px;
    }

    .sgn-export-countries-flags {
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .sgn-export-countries {
        padding: 50px 0 40px;
    }

    .sgn-export-countries-heading {
        font-size: 24px;
    }

    .sgn-export-countries-flags {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .sgn-export-countries-flag-img {
        width: 56px;
        height: 38px;
    }

    .sgn-export-countries-flag-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .sgn-export-countries {
        padding: 36px 0 30px;
    }

    .sgn-export-countries-heading {
        font-size: 20px;
    }

    .sgn-export-countries-subtext {
        font-size: 12px;
    }

    .sgn-export-countries-flags {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .sgn-export-countries-flag-img {
        width: 50px;
        height: 34px;
    }

    .sgn-export-countries-btn {
        font-size: 13px;
        padding: 10px 28px;
    }
}