@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg-color: #f0f7ff;
    --blue-deep: #e1effe;
    --blue-light: #ffffff;
    --text-color: #000000;
    --text-muted: #111111;
    --accent-color: #000000;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-wrapper {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.heading-font {
    font-family: 'Outfit', sans-serif;
}

/* Advertisement Top Bar */
.ad-top-bar {
    background-color: #1a2b4b;
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.ad-top-text {
    margin: 0;
}

/* Page Loader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-inner {
    text-align: center;
}

.loader-logo {
    font-size: 32px;
    font-weight: 700;
    color: #1a2b4b;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInOut 2s infinite alternate;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navigation Header */
.main-header {
    background: rgba(240, 247, 255, 0.85);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 43, 75, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-container {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    transition: var(--transition);
}

.nav-item-link:hover {
    color: var(--accent-color);
}

.brand-name-link {
    text-decoration: none;
    color: #1a2b4b;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-button-header {
    background: var(--accent-color);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.cta-button-header:hover {
    background: #253a63;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #1a2b4b;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2400;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-backdrop-active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    padding: 120px 25px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(26, 43, 75, 0.05);
    border: 1px solid rgba(26, 43, 75, 0.1);
    border-radius: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #1a2b4b;
}

.hero-title {
    font-size: clamp(40px, 8vw, 68px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.main-cta-btn {
    background: #fff;
    color: #000;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
}

.hero-img-container {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-main-img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: transform 10s ease;
}

.hero-section:hover .hero-main-img {
    transform: scale(1.1);
}

/* Features (Why Us) */
.features-section {
    padding: 100px 25px;
    background: var(--blue-deep);
}

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

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #888;
}

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

.feature-card {
    background: var(--blue-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(26, 43, 75, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 43, 75, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 43, 75, 0.08);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: #1a2b4b;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-text {
    color: #888;
    line-height: 1.6;
}

/* Product Details (About Us Adaptation) */
.about-section {
    padding: 100px 25px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-box {
    border-radius: 12px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 25px;
    background: #0c0c0c;
    color: #ffffff;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: #ffffff;
}

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

.testimonial-card {
    background: var(--blue-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(26, 43, 75, 0.05);
    border-left: 4px solid #1a2b4b;
    box-shadow: 0 4px 20px rgba(26, 43, 75, 0.03);
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #000000;
}

.testimonial-author {
    font-weight: 600;
    color: #000000;
}

/* FAQs */
.faq-section {
    padding: 100px 25px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--text-color);
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    color: var(--text-muted);
    padding-bottom: 25px;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: var(--blue-deep);
    padding: 80px 25px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand-text {
    color: #000000;
    line-height: 1.6;
}

.footer-heading {
    font-size: 16px;
    color: #000000;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-li {
    margin-bottom: 12px;
}

.footer-a-link {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-a-link:hover {
    color: #1a2b4b;
}

/* Footer Advertisement Note */
.footer-ad-note {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(26, 43, 75, 0.1);
    color: #4a5d7e;
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111111;
    font-size: 14px;
}

/* Cookie Popup */
.cookies-overlay {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: #ffffff;
    border: 1px solid rgba(26, 43, 75, 0.1);
    padding: 30px;
    border-radius: 12px;
    z-index: 2000;
    box-shadow: 0 10px 40px rgba(26, 43, 75, 0.1);
    display: none;
}

.cookie-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.cookie-text {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn-accept {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn-reject {
    background: transparent;
    color: #1a2b4b;
    border: 1px solid rgba(26, 43, 75, 0.2);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Hamburger & Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: #ffffff;
    z-index: 2500;
    padding: 80px 40px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    box-shadow: -10px 0 30px rgba(26, 43, 75, 0.1);
}

.mobile-nav-active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    color: #1a2b4b;
    font-size: 32px;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
}

.mobile-menu-item {
    margin-bottom: 30px;
}

.mobile-menu-link {
    text-decoration: none;
    color: #1a2b4b;
    font-size: 24px;
    font-weight: 600;
}

/* Modal for Legal */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    padding: 50px 20px;
    overflow-y: auto;
}

.modal-content {
    background: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(26, 43, 75, 0.1);
    color: #1a2b4b;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #1a2b4b;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive Utilities */
@media (max-width: 991px) {
    .hero-section {
        flex-direction: column-reverse;
        padding-top: 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .cta-button-header {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}