@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #15316f;
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
}
header .logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
    border-radius: 5px;
}
nav a:hover {
    background-color: #0d2146;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
}
.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
    header .logo-text {
        font-size: 2rem;
    }
    nav ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background-color: #15316f;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
        margin: 0;
        padding: 0;
    }
    nav ul.active {
        height: 200px;
        padding: 1rem 0;
    }
    nav li {
        width: 100%;
    }
    nav a {
        display: block;
        width: 100%;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
}

/* Main Content Containers */
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
h1, h2 {
    color: #15316f;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
h3 {
    color: #15316f;
    font-size: 1.5rem;
    text-align: center;
}
p {
    text-align: left;
    color: #555555;
}

/* Specific Section Styles */
.hero {
    text-align: center;
}
.hero p {
    font-size: 1.1rem;
    text-align: center;
}
.blue-bold {
    color: #15316f;
    font-weight: 700;
}
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #FF8C00;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #CC7000;
}
.services-list ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.services-list li {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.path-to-mind ol {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.path-to-mind ol li {
    background: #f0f4f8;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 700;
    color: #15316f;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Service Filter Buttons */
.filter-buttons {
    text-align: center;
    margin-bottom: 2rem;
}
.filter-buttons a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #e9e9e9;
    color: #15316f;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    margin: 0 5px;
    transition: background-color 0.3s;
}
.filter-buttons a:hover {
    background-color: #d1d1d1;
}
.filter-buttons a.active {
    background-color: #15316f;
    color: white;
}

/* Footer */
footer {
    background-color: #15316f;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}
.footer-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}
.footer-link:hover {
    color: #d1d1d1;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}
.contact-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #15316f;
    font-weight: 700;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-form .submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #FF8C00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact-form .submit-button:hover {
    background-color: #CC7000;
}

/* Intro List */
.intro-list {
    list-style-type: disc;
    text-align: left;
    margin-bottom: 2rem;
}
.intro-list li {
    background: none;
    box-shadow: none;
    padding-left: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}
.intro-list li .blue-bold {
    display: inline;
}

/* Section Intro Sentence */
.intro-sentence {
    display: block;
    font-weight: 700;
    color: #15316f;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.testimonial-card {
    background-color: #f0f4f8;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #15316f;
}
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 1rem;
}
.testimonial-card h4 {
    text-align: right;
    font-size: 1rem;
    color: #15316f;
    margin: 0;
}

/* Homepage specific styles */
.services-summary .cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.secondary-cta {
    background-color: #e9e9e9;
    color: #15316f;
    transition: background-color 0.3s;
}
.secondary-cta:hover {
    background-color: #d1d1d1;
}
.slogan-text {
    color: #333333;
    font-weight: normal;
}
.blue-spark {
    color: #15316f;
    font-weight: 700;
}

/* Credentials Section */
.trust-signals {
    text-align: center;
}
.credential-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.credential-logo {
    height: 70px;
    width: auto;
    max-width: 150px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.credential-logo:hover {
    opacity: 1;
}

/* Logo Break Section */
.logo-break-section {
    background-color: #f0f0f0;
    padding: 2rem;
    text-align: center;
}

/* Terms & Conditions */
.terms-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.terms-container h2 {
    font-size: 1.8rem;
    color: #15316f;
    margin-top: 2rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}
.terms-container h3 {
    font-size: 1.4rem;
    color: #15316f;
    margin-top: 1.5rem;
}
.terms-container p {
    font-size: 0.8em;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.logo-group {
    text-align: center;
    padding: 1rem 0 2rem;
    margin-bottom: -3rem;
}
.logo-group img {
    max-width: 250px;
    height: auto;
}
.napit-logo-container {
    text-align: center;
    padding: 2rem 0 1rem;
}
.napit-logo-container img {
    max-width: 150px;
    height: auto;
}

/* Review & Rules Page */
.review-funnel-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    text-align: center;
    margin: 2rem auto;
}
.review-funnel-logo, .rules-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}
.review-funnel-heading, .rules-heading {
    color: #15316f;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
.funnel-step {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}
.funnel-step.active {
    display: block;
}
.review-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    max-width: 300px;
    padding: 0.8rem 1rem;
    background-color: #15316f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.review-links a:hover {
    background-color: #0d2146;
    transform: translateY(-2px);
}
.review-links a.google {
    background-color: #4285F4;
    color: white;
}
.review-links a.google:hover {
    background-color: #3b76d6;
}
.review-links a.facebook {
    background-color: #1877F2;
    color: white;
}
.review-links a.facebook:hover {
    background-color: #1461c6;
}
.review-links a.email {
    background-color: #FF8C00;
    color: white;
}
.review-links a.email:hover {
    background-color: #CC7000;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
}
.modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.5s ease-in-out;
}
.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.close-button:hover, .close-button:focus {
    color: #333;
}
.modal-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.modal-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #FF8C00;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
    font-weight: 700;
}
.modal-button:hover {
    background-color: #CC7000;
}

/* Rules Page */
.rules-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
    text-align: left;
}
.rules-logo {
    display: block;
    margin: 0 auto 1.5rem;
    max-width: 150px;
}
.rules-heading {
    text-align: center;
    font-size: 2rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.rules-content h2 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    color: #15316f;
    border-bottom: none;
    padding-bottom: 0;
}

/* Referral Box */
.referral-box {
    background-color: #15316f;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}
.referral-box p {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.social-link.facebook {
    background-color: #1877F2;
}
.social-link.instagram {
    background-color: #C13584;
}
.social-link.linkedin {
    background-color: #0077B5;
}

/* New Packages Styles */
.packages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.package-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1 1 300px;
    border: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s, color 0.3s;
}

.package-card.bronze {
    border-color: #CD7F32;
}
.package-card.silver {
    border-color: #C0C0C0;
}
.package-card.gold {
    border-color: #FFD700;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: #FF8C00;
    color: white;
}
.package-card:hover * {
    color: white !important;
}
.package-card h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #15316f;
}

.package-card p {
    text-align: center; /* This is the new, corrected rule */
}
.package-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #15316f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}
.package-cta:hover {
    background-color: #0d2146;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); }
}

/* Hover effect: all text containers and list items */
.services-list li:hover,
.path-to-mind ol li:hover,
.testimonial-card:hover,
.trust-signals:hover,
.rules-container:hover,
.terms-container:hover,
.referral-box:hover {
    background-color: #FF8C00; /* Orange background */
    color: white; /* Text turns white */
    transition: background-color 0.3s, color 0.3s;
}
/* Ensure child text also changes to white on hover */
.services-list li:hover *,
.path-to-mind ol li:hover *,
.testimonial-card:hover *,
.trust-signals:hover *,
.rules-container:hover *,
.terms-container:hover *,
.referral-box:hover * {
    color: white !important;
}
/* Optional: smooth transition for lists inside containers */
.services-list li,
.path-to-mind ol li,
.testimonial-card,
.trust-signals,
.rules-container,
.terms-container,
.referral-box {
    transition: background-color 0.3s, color 0.3s;
}
/* LEAD MAGNET SECTION */
.lead-magnet-section {
    background-color: #15316f; /* Brand Blue */
    color: white;
    padding: 3rem 1rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.magnet-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Left Side: Text */
.magnet-content {
    flex: 1 1 400px; /* Takes up half space on desktop */
}

.magnet-content h2 {
    color: #FF8C00; /* Orange Headline */
    text-align: left;
    margin-top: 0;
}

.stake-questions {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.stake-questions li {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 4px solid #FF8C00;
}

.magnet-hook {
    font-size: 1.1rem;
    background-color: rgba(255, 140, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
}

/* Right Side: Form */
.magnet-form-box {
    flex: 1 1 350px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    color: #333; /* Dark text inside the white box */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.magnet-form-box h3 {
    color: #15316f;
    margin-top: 0;
    text-align: center;
}

.magnet-form-box p {
    text-align: center;
    margin-bottom: 1rem;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .magnet-container {
        flex-direction: column;
    }
    .magnet-content h2 {
        text-align: center;
    }
}
/* --- LEAD MAGNET SECTION (High Stakes) --- */
.lead-magnet-section {
    background-color: #15316f; /* Brand Blue */
    padding: 3rem 1rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.magnet-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* --- LEFT SIDE: The Questions (Blue Background) --- */
.magnet-content {
    flex: 1 1 400px; 
}

/* 1. Force the Header to be Orange */
.magnet-content h2 {
    color: #FF8C00 !important; 
    text-align: left;
    margin-top: 0;
}

/* 2. Force ALL text on the blue background to be WHITE */
.magnet-content p, 
.magnet-content li, 
.magnet-content strong,
.magnet-content span {
    color: #ffffff !important; /* Overrides global grey */
}

.stake-questions {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.stake-questions li {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 4px solid #FF8C00;
}

.magnet-hook {
    font-size: 1.1rem;
    background-color: rgba(255, 140, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
}

/* --- RIGHT SIDE: The Form (White Box) --- */
.magnet-form-box {
    flex: 1 1 350px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* 3. Text INSIDE the white box must be DARK (or it disappears) */
.magnet-form-box h3 {
    color: #15316f !important;
    margin-top: 0;
    text-align: center;
}

.magnet-form-box p {
    color: #333333 !important; /* Dark Grey for readability on white */
    text-align: center;
    margin-bottom: 1rem;
}

.privacy-text {
    font-size: 0.8rem;
    margin-top: 10px;
    color: #666666 !important;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .magnet-container {
        flex-direction: column;
    }
    .magnet-content h2 {
        text-align: center;
    }
}
