/* Comparison Page Styles */


/* Intro section */
.comparison-intro {
    padding: 40px 0px 20px 0px;
    text-align: center;
    background-color: var(--white);
}

.comparison-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-intro-content p {
    font-size: 1.1rem;
    color: #4a4a6a;
}

/* Map section */
.global-coverage {
    padding: 60px 0;
    text-align: center;
}

.global-coverage h2 {
    margin-bottom: 10px;
}

.coverage-subtitle {
    margin-bottom: 40px;
    color: #4a4a6a;
}

.map-container {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

#coverageMap {
    height: 450px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

/* Leaflet specific styles */
.leaflet-container {
    height: 450px;
    width: 100%;
    font-family: var(--font-family);
}

.pulse-icon {
    background: none !important;
}

.pulse-circle {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(218, 0, 50, 0.4);
    animation: pulse 2s infinite;
    position: absolute;
    top: 5px;
    left: 5px;
}

.map-legend {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.boltsign-dot {
    background-color: #DA0032;
    box-shadow: 0 0 8px 2px rgba(218, 0, 50, 0.5);
    animation: pulse 2s infinite;
}

.docusign-dot {
    background-color: #2B5F9E;
}

.box-dot {
    background-color: #0061D5;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 0, 50, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(218, 0, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(218, 0, 50, 0);
    }
}

.coverage-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
    text-align: left;
}

.coverage-provider {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    margin: 0 15px 20px;
}

.coverage-provider h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.coverage-provider:nth-child(1) h3 {
    color: #DA0032;
}

.coverage-provider:nth-child(2) h3 {
    color: #2B5F9E;
}

.coverage-provider:nth-child(3) h3 {
    color: #0061D5;
}

/* Comparison table */
.feature-comparison {
    padding: 60px 0;
}

.feature-comparison h2,
.feature-comparison > p {
    text-align: center;
    margin-bottom: 10px;
}

.feature-comparison > p {
    margin-bottom: 40px;
    color: #4a4a6a;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.comparison-table th {
    background-color: #303163;
    color: white;
    font-weight: 600;
}

.comparison-table th.boltsign-col {
    background-color: #DA0032;
}

.comparison-table td.boltsign-col {
    background-color: rgba(218, 0, 50, 0.05);
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: #f9f9fd;
}

.comparison-table tr:hover td.boltsign-col {
    background-color: rgba(218, 0, 50, 0.1);
}

/* Key advantages */
.key-advantages {
    padding: 60px 0;
    background-color: #f9f9fd;
    text-align: center;
}

.key-advantages h2 {
    margin-bottom: 40px;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.advantage-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.advantage-icon {
    font-size: 2rem;
    color: #DA0032;
    margin-bottom: 20px;
}

.advantage-card h3 {
    margin-bottom: 15px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #303163 0%, #1A1A36 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-hero {
        padding: 60px 0 40px;
    }
    
    .comparison-hero h1 {
        font-size: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .coverage-details {
        flex-direction: column;
        align-items: center;
    }
    
    .coverage-provider {
        margin-bottom: 30px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 250px;
        margin-bottom: 15px;
    }
} 
/* Comparison Page Styles */

.comparison-hero {
    background-color: var(--bg-lightwhite);
    padding: var(--section-padding);
}

.comparison-intro-content {
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Global Coverage Section */

.coverage-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

#coverageMap {
    height: 450px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.boltsign-dot {
    background-color: #DA0032;
}

.docusign-dot {
    background-color: #2B5F9E;
}

.box-dot {
    background-color: #0061D5;
}

/* Data Center Table */
.datacenter-table {
    margin-top: 50px;
    margin-bottom: 60px;
}

.datacenter-table h3 {
    text-align: center;
    margin-bottom: 25px;
}

.data-center-comparison {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.data-center-comparison th,
.data-center-comparison td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-center-comparison th {
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 600;
}

.data-center-comparison th:first-child {
    width: 20%;
}

.data-center-comparison tr:last-child td {
    border-bottom: none;
}

.data-center-comparison i.fa-check-circle {
    color: #28a745;
    margin-right: 6px;
}

.data-center-comparison i.fa-times-circle {
    color: #dc3545;
    margin-right: 6px;
}

/* Region highlighting */
.region-north-america td:first-child {
    border-left: 4px solid #4285F4;
}

.region-europe td:first-child {
    border-left: 4px solid #EA4335;
}

.region-asia td:first-child {
    border-left: 4px solid #FBBC05;
}

.region-middle-east td:first-child {
    border-left: 4px solid #34A853;
}

.region-africa td:first-child {
    border-left: 4px solid #8F44AD;
}

.region-oceania td:first-child {
    border-left: 4px solid #F39C12;
}

/* Feature Comparison Section */
.feature-comparison {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 600;
}

.comparison-table td:first-child {
    font-weight: 600;
    width: 25%;
}

.boltsign-col {
    background-color: rgba(218, 0, 50, 0.05);
}

.comparison-table th.boltsign-col {
    background-color: #DA0032;
}

/* Key Advantages Section */
.key-advantages {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.advantage-card {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(218, 0, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    color: #DA0032;
    font-size: 24px;
}

.advantage-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #coverageMap {
        height: 350px;
    }
    
    .map-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .data-center-comparison th,
    .data-center-comparison td {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    #coverageMap {
        height: 300px;
    }
}