/* styles.css */

.page-html {
    scroll-behavior: smooth;
}

.page-body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #2C3E50;
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 75%;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #E0E0E0;
    border-top-color: #005BAC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 18px;
    color: #005BAC;
    font-weight: 500;
}

.dot-animation::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40%, 60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 350px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    padding: 25px;
}

.cookie-icon {
    font-size: 32px;
    color: #005BAC;
    margin-bottom: 15px;
}

.cookie-content .cookie-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2C3E50;
}

.cookie-content .cookie-text {
    font-size: 14px;
    color: #6D7B8C;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #005BAC;
    color: #FFFFFF;
}

.cookie-btn.accept:hover {
    background-color: #1A6BB5;
}

.cookie-btn.reject {
    background-color: #E0E0E0;
    color: #4A5C68;
}

.cookie-btn.reject:hover {
    background-color: #C0C0C0;
}

/* Advertisement Banner */
.ad-banner {
    background-color: #E8F0F8;
    border-bottom: 1px solid #B0C4DE;
    padding: 8px 0;
    text-align: center;
}

.ad-banner .ad-text {
    font-size: 12px;
    color: #2C3E50;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ad-banner .ad-icon {
    color: #005BAC;
}

/* Header - without navbar */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2C3E50;
}

.logo-highlight {
    color: #005BAC;
    font-weight: 800;
}

.cta-btn {
    background-color: #005BAC;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cta-btn:hover {
    background-color: #1A6BB5;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #F0F5FA 0%, #E0EAF5 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0, 91, 172, 0.1);
    color: #005BAC;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2C3E50;
    margin-top: 0;
}

.hero-title .highlight {
    color: #005BAC;
}

.hero-description {
    font-size: 18px;
    color: #6D7B8C;
    margin-bottom: 20px;
    line-height: 1.6;
    margin-top: 0;
}

.price-tag {
    background-color: #005BAC;
    display: inline-flex;
    align-items: baseline;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    gap: 5px;
}

.price-label {
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0.9;
}

.price-value {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
}

.price-note {
    color: #FFFFFF;
    font-size: 12px;
    opacity: 0.8;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-features .feature-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4A5C68;
}

.hero-features .feature-icon-item {
    color: #005BAC;
    font-size: 20px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #005BAC;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.hero-cta:hover {
    background-color: #1A6BB5;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge .trust-icon {
    font-size: 24px;
    color: #FFD700;
}

.trust-badge .trust-text {
    font-weight: 600;
    color: #2C3E50;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .trust-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
    margin-top: 0;
}

.section-title .highlight {
    color: #005BAC;
}

.section-subtitle {
    font-size: 18px;
    color: #6D7B8C;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text .about-paragraph {
    margin-bottom: 20px;
    color: #6D7B8C;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #005BAC;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #6D7B8C;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background-color: #F5F9FF;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.value-card .value-icon {
    font-size: 32px;
    color: #005BAC;
    margin-bottom: 15px;
}

.value-card .value-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2C3E50;
    margin-top: 0;
}

.value-card .value-description {
    font-size: 14px;
    color: #6D7B8C;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #F5F9FF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 91, 172, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon .bn-icon {
    font-size: 30px;
    color: #005BAC;
}

.benefit-card .benefit-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2C3E50;
    margin-top: 0;
}

.benefit-card .benefit-description {
    font-size: 14px;
    color: #6D7B8C;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #F5F9FF;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 91, 172, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon .feat-icon {
    font-size: 30px;
    color: #005BAC;
}

.feature-item .feature-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2C3E50;
    margin-top: 0;
}

.feature-item .feature-description {
    font-size: 14px;
    color: #6D7B8C;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Specs Section */
.specs {
    padding: 60px 0;
    background: linear-gradient(135deg, #005BAC 0%, #1A6BB5 100%);
}

.specs-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.specs-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #2C3E50;
    margin-top: 0;
}

.specs-title .highlight {
    color: #005BAC;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-bottom: 1px solid #E0E0E0;
}

.spec-label {
    font-size: 14px;
    color: #6D7B8C;
    margin-bottom: 5px;
    font-weight: 500;
}

.spec-value {
    font-size: 16px;
    color: #2C3E50;
    font-weight: 600;
}

.price-highlight {
    color: #005BAC;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #F5F9FF;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #FFD700;
}

.testimonial-rating .star-icon {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #4A5C68;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    margin-top: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar .avatar-icon {
    font-size: 40px;
    color: #6D7B8C;
}

.author-info .author-name {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 5px;
    margin-top: 0;
}

.author-info .author-role {
    font-size: 14px;
    color: #6D7B8C;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #F5F9FF;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #F0F5FA;
}

.faq-question .faq-title {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.faq-question .faq-icon {
    color: #005BAC;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer .faq-text {
    color: #6D7B8C;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Return Policy Section */
.return-policy {
    padding: 60px 0;
    background: linear-gradient(135deg, #005BAC 0%, #1A6BB5 100%);
    color: #FFFFFF;
}

.policy-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.policy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.policy-title {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 0;
}

.policy-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    margin-top: 0;
}

.policy-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item .detail-icon {
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer .footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFFFFF;
    margin-top: 0;
}

.footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-list .footer-list-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-list .footer-list-item .footer-icon {
    color: #FFD700;
    width: 20px;
}

.footer .footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .footer-link:hover {
    color: #FFD700;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-disclaimer .disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #BDC3C7;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #95A5A6;
}

.footer-copyright .copyright-text {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: #FFFFFF;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    padding: 40px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-container.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6D7B8C;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #2C3E50;
}

.modal-title {
    font-size: 24px;
    color: #005BAC;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
    margin-top: 0;
}

.modal-content {
    color: #4A5C68;
    line-height: 1.7;
}

.modal-content .modal-subtitle {
    color: #2C3E50;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.modal-content .modal-list {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-content .modal-text {
    margin: 0 0 10px 0;
}

/* Utility Classes */
.highlight {
    color: #005BAC;
}

/* Mobile Navigation Overlay */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333333; /* Default dark color, might be slightly different on some themes but generally fine */
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 28px;
    color: #333333;
    cursor: pointer;
    padding: 20px;
    margin-bottom: 20px;
}

.mobile-nav-content {
    padding: 0 30px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #EEEEEE;
}

.mobile-nav-link:hover {
    color: #666666; /* Inherits specific theme highlight color via JS or stays generic dark gray */
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions .cta-btn {
        display: none;
    }
}
