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

.page-html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.page-body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

.body-no-scroll {
    overflow: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d1b2a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    color: #00d1ff;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}

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

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

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

/* Advertisement Top Note */
.top-advertisement-bar {
    background-color: #f0f4f8;
    color: #4a5568;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Header & Navigation */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d1b2a;
    text-decoration: none;
}

.brand-logo-span {
    color: #00d1ff;
}

.navigation-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #00d1ff;
}

.header-cta-button {
    background-color: #00d1ff;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.header-cta-button:hover {
    background-color: #00b8e6;
    transform: translateY(-2px);
}

.cta-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Mobile Hamburger */
.hamburger-button {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
    margin-right: -10px;
}

.hamburger-line {
    width: 30px;
    height: 4px;
    background-color: #0d1b2a;
    border-radius: 4px;
    transition: 0.3s;
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: #ffffff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
}

.mobile-menu-overlay.menu-active {
    transform: translateX(0);
}

.close-menu-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.close-icon-svg {
    width: 24px;
    height: 24px;
    fill: #0d1b2a;
}

.mobile-nav-item {
    text-decoration: none;
    color: #0d1b2a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.mobile-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-shadow.shadow-active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    padding: 80px 20px;
}

.hero-content-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
}

.hero-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0d1b2a;
    font-weight: 800;
}

.hero-heading-accent {
    color: #00d1ff;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 184, 230, 0.1);
}

/* Sections General */
.section-padding {
    padding: 100px 20px;
}

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

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #0d1b2a;
}

/* About Us / Why Us */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon-box {
    width: 60px;
    height: 60px;
    background-color: #e0faff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.feature-icon-svg {
    width: 30px;
    height: 30px;
    fill: #00d1ff;
}

.feature-heading {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0d1b2a;
}

.feature-description {
    color: #4a5568;
}

.feature-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-heading-medium {
    font-size: 2.2rem;
}

/* Testimonials */
.testimonials-section {
    background-color: #0d1b2a;
    color: #ffffff;
}

.testimonial-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testimonial-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    background-color: #1a2c3e;
    padding: 40px;
    border-radius: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 700;
    color: #00d1ff;
}

.rating-stars {
    color: #FFB800;
    margin-top: 10px;
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d1b2a;
    padding: 10px 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #4a5568;
}

.faq-answer-text {
    color: #4a5568;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 15px;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* Cookies Popup */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: #ffffff;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    z-index: 5000;
    display: block;
    border: 1px solid #e2e8f0;
}

.cookie-modal-hidden {
    display: none;
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d1b2a;
}

.cookie-text {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 25px;
}

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

.cookie-btn-accept {
    background-color: #0d1b2a;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-reject {
    background-color: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: #f7fafc;
    padding: 80px 20px 40px;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0d1b2a;
}

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

.footer-list-item {
    margin-bottom: 15px;
}

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

.footer-link:hover {
    color: #00d1ff;
}

.contact-info-text-inline {
    color: #4a5568;
    display: inline;
}

.footer-advertisement-block {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    background-color: #edf2f7;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #718096;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .navigation-menu {
        display: none !important;
    }

    .hamburger-button {
        display: flex !important;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .section-title-center {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cookie-modal {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .hero-heading {
        font-size: 2rem;
    }
}

/* Utility Classes */
.bg-light {
    background-color: #f7fafc;
}

.bg-light-blue {
    background-color: #f0f4f8;
}

.bg-white {
    background-color: #ffffff;
}

.text-white {
    color: #ffffff;
}

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

.text-muted {
    color: #4a5568;
}

.text-muted-center {
    text-align: center;
    color: #a0aec0;
    margin-top: 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
}

.font-bold {
    font-weight: 600;
}

.mt-40 {
    margin-top: 40px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.display-block {
    display: block;
}

.border-thin {
    border: 1px solid #e2e8f0;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 6000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.modal-active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #ffffff;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.modal-active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f7fafc;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: #e2e8f0;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 25px;
    border-bottom: 2px solid #00d1ff;
    padding-bottom: 10px;
    display: inline-block;
}

.modal-body-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.modal-body-text p {
    margin-bottom: 15px;
}