/* International Pages Styles */

.international-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #ff6b35 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.region-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Region Overview */
.region-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-weight: 700;
}

.overview-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Countries Section */
.countries-section {
    padding: 80px 0;
    background: white;
}

.countries-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
    font-weight: 700;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.country-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-left-color: #ff6b35;
}

.country-flag {
    text-align: center;
    margin-bottom: 20px;
}

.country-flag img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-info h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.country-capital,
.country-population {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.country-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.country-details h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.country-details ul {
    list-style: none;
    padding: 0;
}

.country-details li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.country-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Regional Map */
.regional-map {
    padding: 80px 0;
    background: #f8f9fa;
}

.regional-map h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
    font-weight: 700;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.map-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-image img {
    width: 100%;
    height: auto;
    filter: grayscale(20%) brightness(0.9);
}

.map-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.marker-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 90, 160, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-marker:hover .marker-label {
    opacity: 1;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: white;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-category {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top-color: #ff6b35;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.product-category:hover .category-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.product-category h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-category p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Countries Map Section */
.countries-map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.world-map {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: grayscale(20%) brightness(0.9);
}

.country-marker {
    position: absolute;
    cursor: pointer;
}

.country-marker .flag-marker {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.country-marker:hover .flag-marker {
    transform: scale(1.2);
}

.country-info {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.country-marker:hover .country-info {
    opacity: 1;
    visibility: visible;
}

.country-info h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.country-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-info li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.country-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.countries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Simple Hero */
.simple-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #ff6b35 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.simple-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.simple-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Country Sections */
.country-section {
    padding: 60px 0;
    background: white;
}

.country-section:nth-child(even) {
    background: #f8f9fa;
}

.country-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.country-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.country-info .country-flag {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.country-info h2 {
    color: #2c5aa0;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.country-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-info li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.country-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.country-map img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Countries Cards Section */
.countries-cards-section {
    padding: 80px 0;
    background: white;
}

.countries-cards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
    font-weight: 700;
}

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

@media (max-width: 1024px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.country-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-left-color: #ff6b35;
}

.card-header {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.card-header .country-flag {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid #ddd;
    margin-bottom: 15px;
}

.card-header h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 30px;
}

.country-details h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.country-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.country-details li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.country-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.map-section {
    margin-top: 20px;
}

.map-section .map-placeholder {
    padding: 30px 20px;
    max-width: none;
    margin: 0;
}

/* Products Redirect Section */
.products-redirect-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.products-content h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.products-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2c5aa0, #ff6b35);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
    color: white;
    text-decoration: none;
}

.explore-btn i {
    font-size: 1.3rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.country-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.country-flag {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.country-details h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.country-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-details li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.country-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Asia Pacific Marker Positions */
.myanmar-marker { top: 60%; left: 75%; }
.afghanistan-marker { top: 25%; left: 35%; }

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #ff6b35 100%);
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-btn {
    display: inline-block;
    background: white;
    color: #2c5aa0;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #2c5aa0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .floating-cards {
        display: none;
    }
    
    .countries-section {
        padding: 60px 0;
    }
    
    .countries-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .country-card {
        padding: 15px;
        margin: 0;
    }
    
    .global-stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0;
    }
    
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .hero-container {
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 180px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .countries-section {
        padding: 40px 0;
    }
    
    .countries-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .countries-grid {
        padding: 0;
        gap: 10px;
    }
    
    .country-card {
        padding: 12px;
        margin: 0;
    }
    
    .card-header {
        padding: 15px 10px;
    }
    
    .card-body {
        padding: 15px 10px;
    }
    
    .global-stats {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}