@charset "utf-8";
/* CSS Document */

<style>
:root {
--primary-color: #ff7633;
--secondary-color: #ff9900;
--accent-color: #e9f2ff;
--dark-color: #333333;
--light-color: #ffffff;
--grey-color: #f5f5f5;
--border-color: #e0e0e0;
--text-color: #555555;
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1542296332-2e4473faf563?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 100px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e62129;
    color: var(--light-color);
    border-radius: 30px;
    font-weight: 500;
}
.btn:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--light-color);
}
/* Intro Section */
.intro-section {
    padding: 80px 0;
    text-align: center;line-height: 38px;
}
.section-title {
    position: relative;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--dark-color);
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e62129;
}
.intro-text {
    max-width: 1470px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}
.info-protection-notice {
    background-color: #f8f9fa;
    border-left: 4px solid #e62129;
    padding: 15px 20px;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.info-protection-notice p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #666;
}
.info-protection-notice i {
    color: #e62129;
    font-size: 1.5rem;
    margin-right: 15px;
}
.key-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.stat-item {
    flex: 1;
    min-width: 200px;
    background-color: var(--accent-color);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-10px);
}
.stat-icon {
    font-size: 40px;
    color: #e62129;
    margin-bottom: 15px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e62129;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
}
/* Map Section */
.map-section {
    padding: 50px 0;
    background-color: var(--grey-color);
}
#distributor-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Map popup customization */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
}
.leaflet-popup-content {
    margin: 10px 12px;
}
.map-popup {
    text-align: center;
}
.map-popup h3 {
    color: #e62129;
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.map-popup-flag {
    width: 30px;
    height: 20px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
}
.map-popup-btn {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e62129;
    color: var(--light-color);
    border-radius: 4px;
    font-size: 0.85rem;
    margin-top: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.map-popup-btn:hover {
    background-color: var(--secondary-color);
    color: #fff
}
.leaflet-container a {
    color: #fff;
}
/* Distributor Table Section */
.distributor-table-section {
    padding: 80px 0;
}
.distributor-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}
.filter-label {
    font-weight: 600;
    color: var(--dark-color);
}
.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    min-width: 200px;
}
.search-box {
    display: flex;
    max-width: 300px;
    width: 100%;
}
.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}
.search-btn {
    background-color: #e62129;
    color: var(--light-color);
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
.distributor-table-wrapper {
    overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
.distributor-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--light-color);
}
.distributor-table th {
    background-color: #e62129;
    color: var(--light-color);
    padding: 15px;
    text-align: left;
    position: sticky;
    top: 0;
}
.distributor-table tr {
    border-bottom: 1px solid var(--border-color);
}
.distributor-table td {
    padding: 15px;/* border-bottom: 1px solid var(--border-color); */
}
.distributor-table tbody tr:hover {
    background-color: var(--accent-color);
    cursor: pointer;
}
.distributor-table tbody tr.highlighted {
    background-color: rgba(0, 102, 204, 0.1);
}
.country-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.country-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border: 1px solid #eee;
}
.btn-table {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 4px;
    white-space: nowrap;
}
.request-info-cell {
    text-align: center;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 5px;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--light-color);
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.page-link:hover, .page-link.active {
    background-color: #e62129;
    color: var(--light-color);
}
/* Request Form Section */
.request-info-section {
    padding: 80px 0;
    background-color: var(--grey-color);
}
.notice-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}
.info-request-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 25px;
}
.form-group.half {
    width: 50%;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}
.required {
    color: #e74c3c;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e62129;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.submit-btn {
    background-color: #e62129;
    color: var(--light-color);
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submit-btn:hover {
    background-color: #0055b3;
}

/* Responsive Design */
@media (max-width: 992px) {
.filter-group {
    margin-bottom: 15px;
}
#distributor-map {
    height: 350px;
}
}

@media (max-width: 768px) {
.country-cell {
    display: block;
}
.country-cell > img {
    display: block;
}
.navbar {
    padding: 15px 0;
}
.mobile-toggle {
    display: block;
}
.nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--light-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 15px;
}
.nav-menu.active {
    left: 0;
}
.hero h1 {
    font-size: 2.2rem;
}
.section-title {
    font-size: 22px;
}
.intro-text {
    font-size: 16px;
    line-height: 24px;
}
.info-protection-notice p {
    font-size: 14px;
    line-height: 22px;
}
.key-stats {
    gap: 20px;
}
.stat-item {
    min-width: auto;
    width: 50%;
}
.filter-group {
    width: 100%;
}
.search-box {
    max-width: 100%;
}
.stat-number {
    font-size: 26px;
    line-height: 32px;
}
.stat-label {
    font-size: 14px;
}
.stat-icon {
    margin-bottom: 5px;
}
.stat-item {
    padding: 10px 20x;
}
.intro-section {
    padding: 35px 0;
}
#distributor-map {
    height: 300px;
}
.form-group.half {
    width: 100%;
}
}

@media (max-width: 576px) {
.distributor-table th, .distributor-table td {
    padding: 10px 8px;
    font-size: 0.9rem;
}
.btn-table {
    padding: 6px 8px;
    font-size: 0.8rem;
}
}
</style>