/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #495057;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f0f2f5;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    background-color: transparent;
}

.site-header.scrolled {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header.scrolled .main-nav ul li a {
    color: #333;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header.scrolled .main-nav ul li a:hover {
    color: #8A2BE2;
    background-color: #f7f7f7;
    border-color: #ddd;
}

.logo img {
    height: 50px;
    transition: height 0.4s ease;
}

.site-header.scrolled .logo img {
    height: 40px;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
}

.main-nav ul li a i {
    margin-right: 6px;
}

.main-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.header-actions .btn i {
    margin-right: 8px;
}

.header-actions .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-actions .btn-primary {
    background: linear-gradient(90deg, #2A3658 0%, #202C4E 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(42, 54, 88, 0.3);
}

.site-header.scrolled .header-actions .btn-secondary {
    color: #333;
    background: transparent;
    border: 1px solid #ddd;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.site-header.scrolled .header-actions .btn-secondary:hover {
    background-color: #f7f7ff7;
    border-color: #ccc;
}

.mobile-only-button {
    display: none;
}

/*--------------------------------------------------------------
# Mobile Menu
--------------------------------------------------------------*/
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled .mobile-menu-toggle .line {
    background-color: #333;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    /* The sticky header is now 70px high (50px logo + 20px padding). Adjust hero padding-top. */
    padding-top: 180px;
    padding-bottom: 120px;
    background-color: #f8f9fa;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('https://benimavukat.com/wp-content/uploads/2025/06/AdobeStock_305904515-scaled-1.jpeg') no-repeat center center/cover;
}

.hero:yp-onscreen {
    animation-name: none;
    animation-duration: 1s;
    animation-delay: 0s;
}

.hero .container {
    width: 100%;
}

.hero h1 {
    font-size: 56px;
    font-weight: 300;
    color: #050505;
    margin: 0 0 20px 0;
    line-height: 1.2;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.hero h1::before,
.hero h1::after {
    display: none !important;
    content: '' !important;
}

.hero .hero-subtitle {
    font-family: 'inter';
    font-size: 20px;
    font-weight: 400;
    color: #050404 !important;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.5em !important;
    letter-spacing: 0px;
    transform: translatex(0px) translatey(0px);
}

.hero .hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero .badge-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #050505 !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.hero .badge-item svg {
    width: 16px !important;
    height: 16px !important;
    stroke-width: 2.5 !important;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero .hero-buttons .btn-primary {
    font-family: 'inter';
}

.hero .hero-buttons .btn-secondary {
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: #8A2BE2;
    color: #fff;
}

.btn-primary:hover {
    background-color: #7b25c9;
}

.btn-secondary {
    background-color: #263354;
    color: #fff;
}
.btn-secondary:hover {
    background-color: #23272b;
}

.hero-subtext {
    margin-top: 30px;
    font-size: 14px;
    color: #6c757d;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 42px;
    color: #212529;
    margin-bottom: 10px;
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 400;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

#features .section-subtitle {
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: 300;
}

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

.feature-item {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 20px;
    color: #212529;
    margin: 20px 0 10px;
    font-family: 'Inter', sans-serif;
}

.feature-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    filter: invert(55%) sepia(59%) saturate(543%) hue-rotate(95deg) brightness(93%) contrast(89%);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .pill {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #e9ecef;
    color: #495057;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    color: #212529;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.pricing-toggle {
    text-align: center;
    margin-bottom: 40px;
    flex-direction: column;
}

.toggle-btn {
    background: #e9ecef;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #8A2BE2;
    color: white;
}
.save-badge {
    background: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    width: 320px;
    display: flex;
    flex-direction: column;
}

.plan.popular {
    border-color: #8A2BE2;
    position: relative;
    border-width: 2px;
    font-size: 14px;
    font-weight: 700;
}
.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #8A2BE2;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}
.plan h3 {
    font-size: 24px;
    margin-top: 0;
    font-family: 'inter' !important;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
}

.btn-plan, .btn-plan-popular {
    width: 100%;
    padding: 15px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.btn-plan {
    background: #fff;
    border: 1px solid #dee2e6;
    color: #333;
}
.btn-plan:hover {
    background: #e9ecef;
}

.btn-plan-popular {
    background: #343a40;
    color: #fff;
}
.btn-plan-popular:hover {
    background: #23272b;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.pricing-plans .popular ul {
    font-size: 20px;
    font-weight: 400;
}

.plan-features li::before {
    content: '✓';
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}
.pricing-footer {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    padding: 12px 20px;
    background-color: #f0f2f5;
    border: 1px solid #e9ecef;
    border-radius: 12px;
}

.pricing-footer svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #495057;
}

.pricing-footer span {
    color: #495057;
    font-size: 13px;
    font-weight: 300;
}

.pricing-section .container {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    font-family: 'Inter', sans-serif !important;
}

#faq .section-header h2 {
    font-family: 'Inter', sans-serif;
}

#faq .section-header p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

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

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #28A745;
}

.faq-question {
    padding: 20px 30px;
    font-size: 17px;
    font-weight: 600 !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #495057;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 30px;
}
.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    font-size: 15px;
}

.faq-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #8A2BE2;
    border-radius: 50px;
}

.faq-intro-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #495057;
}

.faq-intro-badge span {
    color: #495057;
    font-size: 14px;
    font-weight: 300;
}


/* Footer */
.site-footer-main {
    background-color: #3D4E85;
    color: #ffffff;
    padding: 80px 0 60px;
    transform: translatex(0px) translatey(0px);
    font-family: 'Open Sans', sans-serif !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    align-items: start;
}

.footer-widget .footer-logo img {
    max-height: 40px;
    margin-bottom: 20px;
}

.footer-widget p {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif !important;
}

.footer-grid .footer-widget:not(:last-child) {
    border-right: 1px solid rgba(228, 11, 255, 0.5) !important;
    padding-right: 30px !important;
}

.footer-grid .footer-widget:first-child p {
    font-size: 17px !important;
}

#ba-landing-footer .footer-widget h3 {
    text-transform: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #253254 !important;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #253254;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-section .cta-buttons .btn-primary {
    background: linear-gradient(90deg, #8A2BE2 0%, #4A00E0 100%);
    color: #fff;
    border: none;
    margin: 0 10px;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(74, 0, 224, 0.3);
}

.cta-section .cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 0, 224, 0.4);
}

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

.footer-widget ul li {
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 13px !important;
    line-height: 1.5em !important;
}

.footer-widget ul a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
    font-family: 'Open Sans', sans-serif !important;
}

.footer-widget ul a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    display: inline-block;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ccc;
    font-size: 15px;
}

.contact-info svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #3D4E85;
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom p {
    margin: 0;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 300 !important;
}


/* Responsive */
@media (max-width: 992px) {
    .main-nav, .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: #2A3658;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
        box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
    }

    .main-nav ul li {
        width: 100%;
        margin: 0; /* Reset li margin */
    }

    .main-nav ul li a {
        color: #fff;
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        font-size: 18px;
        font-weight: 500;

        /* Reset desktop styles forcefully */
        background: none;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: background-color 0.3s ease;
    }

    /* Apply new frame to non-button items */
    .main-nav ul li:not(.mobile-only-button) {
        margin-bottom: 8px; /* Space out the items */
    }

    .main-nav ul li:not(.mobile-only-button) a {
        padding: 14px 20px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .main-nav ul li:not(.mobile-only-button) a:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

    /* Keep mobile menu link color white on scroll AND maintain new style */
    .site-header.scrolled .main-nav ul li:not(.mobile-only-button) a {
        padding: 14px 20px; /* Add this to fix padding issue on scroll */
        color: #fff;
        background-color: rgba(255, 255, 255, 0.05); /* Re-apply background for scrolled state */
        border-radius: 10px; /* Re-apply radius for scrolled state */
    }
    .site-header.scrolled .main-nav ul li:not(.mobile-only-button) a:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

    /* Mobile Menu Buttons */
    .main-nav ul li:not(.mobile-only-button) + li.mobile-only-button {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav ul li.mobile-only-button {
        display: block;
        padding: 0;
    }

    .main-nav ul li.mobile-only-button a {
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 14px;
        justify-content: center;
        border-bottom: none;
        display: flex;
        align-items: center;
    }

    .main-nav ul li.mobile-only-button a.btn-secondary {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }
    .main-nav ul li.mobile-only-button a.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .main-nav ul li.mobile-only-button a.btn-primary {
        background: linear-gradient(90deg, #2A3658 0%, #202C4E 100%);
        color: #fff;
        border: none;
    }
    .main-nav ul li.mobile-only-button a.btn-primary:hover {
        background: linear-gradient(90deg, #2A3658 0%, #202C4E 100%);
    }

    .mobile-menu-active .mobile-menu-toggle .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-active .mobile-menu-toggle .line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-active .mobile-menu-toggle .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Fix mobile menu close icon color on scroll */
    body.mobile-menu-active .site-header.scrolled .mobile-menu-toggle .line {
        background-color: #fff;
    }

    .site-header .container {
        flex-direction: row;
    }

    .hero {
        padding-top: 150px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    
    .hero {
        padding-top: 150px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
    .hero h1 {
        font-size: 40px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
} 