:root {
    --primary-color: #0B1061;
    --secondary-color: #087CE3;
    --gradient-primary: linear-gradient(45deg, #0B1061, #087CE3);
    --gradient-secondary: linear-gradient(45deg, #087CE3, #0B1061);
    --text-primary: #0B1061;
    --text-secondary: #087CE3;
    --bg-light: #f8faff;
    --border-color: #e6eaf3;
}

/* Global Styles */
body {
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Section Styles */
.section-title h2 {
    color: var(--primary-color);
}

.section-title p {
    color: var(--text-secondary);
}

/* Card Styles */
.card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(11, 16, 97, 0.1);
}

/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Custom Animations */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animation {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-section .accordion {
    margin-top: 40px;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-button {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    background: #fff;
    border: none;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #007bff;
    background: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.faq-section .accordion-body {
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    background: #fff;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .accordion-button {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .faq-section .accordion-body {
        font-size: 14px;
        padding: 15px 20px;
    }
}

/* Comparison Section Styles */
.comparison-section {
    padding: 100px 0;
    position: relative;
    margin-top: 80px;
}

.comparison-table {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table th {
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
    font-weight: 600;
    padding: 25px 20px;
    border: none;
    font-size: 18px;
    color: #2c2c2c;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.comparison-table td {
    padding: 20px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.comparison-table th.verimap,
.comparison-table td.verimap {
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.1));
}

.comparison-table th.desktop,
.comparison-table td.desktop {
    background: linear-gradient(45deg, rgba(108, 117, 125, 0.05), rgba(108, 117, 125, 0.1));
}

.comparison-table .fa-check {
    color: #28a745;
    font-size: 20px;
    background: rgba(40, 167, 69, 0.15);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.comparison-table .fa-times {
    color: #dc3545;
    font-size: 20px;
    background: rgba(220, 53, 69, 0.15);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.comparison-table .rating {
    color: #ffc107;
    font-size: 18px;
    display: flex;
    gap: 5px;
}

.comparison-table .rating i {
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.comparison-table .rating i:hover {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.comparison-note {
    background: linear-gradient(45deg, #fff3cd, #fff8e1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(133, 100, 4, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comparison-note:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.comparison-note .note-icon {
    color: #856404;
    font-size: 28px;
    flex-shrink: 0;
    background: rgba(133, 100, 4, 0.15);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(133, 100, 4, 0.1);
}

.comparison-note p {
    color: #856404;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.comparison-table .platform-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.comparison-table .platform-header i {
    font-size: 24px;
    background: rgba(0, 123, 255, 0.15);
    padding: 10px;
    border-radius: 50%;
    color: #007bff;
    transition: all 0.3s ease;
}

.comparison-table .platform-header span {
    font-weight: 600;
    font-size: 18px;
}

.comparison-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-table td:first-child i {
    color: #007bff;
    font-size: 18px;
    background: rgba(0, 123, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.comparison-table td:first-child:hover i {
    transform: scale(1.1);
    background: rgba(0, 123, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}

.comparison-table th.verimap .platform-header i {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}

.comparison-table th.desktop .platform-header i {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    box-shadow: 0 0 15px rgba(108, 117, 125, 0.2);
}

@media (max-width: 767px) {
    .comparison-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px;
        font-size: 14px;
    }
    
    .comparison-table .fa-check,
    .comparison-table .fa-times {
        font-size: 16px;
        padding: 6px;
    }
    
    .comparison-note {
        padding: 20px;
        margin-top: 30px;
    }
    
    .comparison-note p {
        font-size: 14px;
    }
    
    .comparison-note .note-icon {
        font-size: 24px;
        padding: 10px;
    }
    
    .comparison-table .platform-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .comparison-table .platform-header i {
        font-size: 20px;
        padding: 8px;
    }
    
    .comparison-table .platform-header span {
        font-size: 16px;
    }
    
    .comparison-table td:first-child i {
        font-size: 16px;
        padding: 6px;
    }
} 