/* Global Distribution Page Styles */
/* WiseLeaf Scientific Ventures */

/* Hero Section with World Map */
.hero-section {
    background: linear-gradient(135deg, #0c4a60 0%, #1a5c75 50%, #2c5282 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><line x1="10" y1="0" x2="10" y2="20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><line x1="0" y1="10" x2="20" y2="10" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23network)"/></svg>');
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* World Map Animation */
.world-map {
    width: 500px;
    height: 350px;
    position: relative;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 250"><path d="M50,100 Q100,80 150,100 T250,100 Q300,120 350,100 T450,100" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/><path d="M50,150 Q150,130 250,150 T450,150" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/></svg>') center center no-repeat;
    background-size: contain;
}

.distribution-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #48bb78;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.node:hover {
    transform: scale(1.5);
    background: #38a169;
}

.node::after {
    content: attr(data-region);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.node:hover::after {
    opacity: 1;
}

.node-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #48bb78;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Node Positions */
.north-america { top: 40%; left: 20%; }
.europe { top: 30%; left: 45%; }
.asia-pacific { top: 35%; left: 75%; }
.south-america { top: 70%; left: 25%; }
.africa { top: 55%; left: 50%; }

/* Distribution Overview */
.distribution-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.distribution-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(12, 74, 96, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3182ce, #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.stat-icon i {
    font-size: 36px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 10px;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Distribution Channels */
.distribution-channels {
    padding: 80px 0;
    background: white;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.channel-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(12, 74, 96, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12, 74, 96, 0.15);
}

.primary-channel {
    border-color: #48bb78;
    position: relative;
}

.channel-header {
    padding: 30px;
    position: relative;
}

.primary-channel .channel-header {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.channel-icon {
    width: 60px;
    height: 60px;
    background: #e6f3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.primary-channel .channel-icon {
    background: rgba(255, 255, 255, 0.2);
}

.channel-icon i {
    font-size: 28px;
    color: #3182ce;
}

.primary-channel .channel-icon i {
    color: white;
}

.channel-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.primary-channel .channel-header h3 {
    color: white;
}

.channel-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.channel-content {
    padding: 30px;
}

.channel-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.channel-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.channel-features li {
    color: #4a5568;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.channel-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.channel-partners {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.partner-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.partner-name {
    background: #f7fafc;
    color: #3182ce;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.access-metrics {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3182ce;
    display: block;
}

.metric-label {
    font-size: 0.9rem;
    color: #718096;
}

.indexing-status {
    margin-top: 25px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 0.9rem;
}

.status-item i.fa-check-circle {
    color: #48bb78;
}

.status-item i.fa-clock {
    color: #ed8936;
}

.status-item i.fa-paper-plane {
    color: #3182ce;
}

/* Regional Distribution */
.regional-distribution {
    padding: 80px 0;
    background: #f8fafc;
}

.regions-container {
    margin-top: 60px;
}

.region-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(12, 74, 96, 0.1);
}

.region-tab {
    background: none;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.region-tab:hover {
    background: #f7fafc;
    color: #3182ce;
}

.region-tab.active {
    background: #3182ce;
    color: white;
}

.region-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(12, 74, 96, 0.1);
    position: relative;
}

.region-panel {
    display: none;
}

.region-panel.active {
    display: block;
}

.region-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.region-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.region-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.region-stat {
    text-align: center;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3182ce;
    display: block;
}

.stat-desc {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 5px;
}

.key-partnerships h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.key-partnerships ul {
    list-style: none;
    padding: 0;
}

.key-partnerships li {
    color: #4a5568;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.key-partnerships li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

/* Technology & Innovation */
.technology-innovation {
    padding: 80px 0;
    background: white;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-feature {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(12, 74, 96, 0.1);
    border-left: 4px solid #3182ce;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12, 74, 96, 0.15);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3182ce, #2c5282);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.tech-icon i {
    font-size: 32px;
    color: white;
}

.tech-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.tech-feature p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-feature ul {
    list-style: none;
    padding: 0;
}

.tech-feature li {
    color: #4a5568;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.tech-feature li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

/* Partnerships */
.partnerships {
    padding: 80px 0;
    background: #f8fafc;
}

.partnership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.partnership-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(12, 74, 96, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12, 74, 96, 0.15);
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3182ce, #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.partnership-icon i {
    font-size: 36px;
    color: white;
}

.partnership-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.partnership-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.partnership-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.partnership-card li {
    color: #4a5568;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.partnership-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.partnership-cta {
    display: inline-block;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partnership-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(72, 187, 120, 0.3);
}

/* Success Metrics */
.success-metrics {
    padding: 80px 0;
    background: white;
}

.metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.metric-category {
    background: #f7fafc;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.metric-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.metric-items {
    display: grid;
    gap: 20px;
}

.metric-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3182ce;
    display: block;
}

.metric-label {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Distribution CTA */
.distribution-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c4a60 0%, #2c5282 100%);
    color: white;
    text-align: center;
}

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

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

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.contact-item i {
    font-size: 18px;
    opacity: 0.8;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(72, 187, 120, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #2c5282;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .world-map {
        width: 300px;
        height: 200px;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .channels-grid,
    .tech-features,
    .partnership-types,
    .metrics-dashboard {
        grid-template-columns: 1fr;
    }
    
    .region-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .region-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .world-map {
        width: 250px;
        height: 150px;
    }
    
    .channel-card,
    .tech-feature,
    .partnership-card {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .region-content {
        padding: 25px;
    }
}