/* =======================================
   🎨 Theme Variables
======================================= */

:root {
    --brand-navy: #285c8c;
    --brand-mint: #A8E6CF;
    --brand-coral: #FF6B6B;
    --brand-offwhite: #F0F4F8;
}


/* =======================================
   🔤 Global Styles
======================================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--brand-offwhite);
    color: #333;
    line-height: 1.7;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-navy);
}


/* =======================================
   🔝 Navbar
======================================= */

.navbar {
    background-color: #fff;
}

.navbar .btn-coral {
    background-color: var(--brand-coral);
    border: none;
    transition: background-color 0.3s ease;
}

.navbar .btn-coral:hover {
    background-color: #ff4e4e;
}

.navbar-logo {
    height: clamp(40px, 8vw, 60px);
    width: auto;
    transition: height 0.3s ease;
}

.navbar-brand {
    margin-right: 1rem;
}

.nav-link {
    font-weight: 600;
    transition: color 0.2s ease;
    padding: 0.5rem 0.6rem;
}

.nav-link:hover {
    color: var(--brand-coral);
}

@media (max-width: 991.98px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar-nav {
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
    }
    .navbar .btn {
        width: fit-content;
    }
}


/* =======================================
   🦸 Hero Section
======================================= */

.hero {
    height: 90vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
    color: var(--brand-offwhite);
    background: linear-gradient(rgba(40, 92, 140, 0.99), rgba(40, 92, 140, 0.99)), url('./img/hero-bg.jpg') center/cover no-repeat;
    background-blend-mode: multiply;
}

.hero h1,
.hero p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


/* =======================================
   🔘 Buttons
======================================= */

.btn-danger {
    background-color: var(--brand-coral);
    border: none;
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}


/* =======================================
   📊 Table
======================================= */

.table-primary {
    background-color: var(--brand-mint) !important;
    color: var(--brand-navy);
}


/* =======================================
   🧾 Section Padding
======================================= */

section.bg-light,
section#contact,
section.pd-10 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


/* =======================================
   👥 Tabs Section (Who We Help)
======================================= */

.nav-tabs {
    border: none;
    padding-left: 1rem;
}

.nav-tabs .nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-navy);
    border-bottom: 0.5px solid var(--brand-coral);
    transition: all 0.3s ease-in-out;
}

.nav-tabs .nav-link.active {
    border-bottom: 4px solid var(--brand-coral);
    color: var(--brand-navy);
    background-color: transparent;
}

.nav-tabs .nav-link:hover {
    color: var(--brand-coral);
}

.tab-pane.active {
    font-size: 1.125rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: box-shadow 0.3s ease;
}

.image-wrapper {
    height: 100%;
    padding: 1rem;
}

.help-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 100%;
    opacity: 0.2;
    /* 👈 subtle background look */
    z-index: 1;
}

@media (min-width: 1200px) {
    .tab-content {
        min-height: 370px;
        /* Or however tall your content gets */
    }
}

.accordion-button {
    background-color: transparent;
    font-size: 1.2rem;
    font-weight: 600;
    /* Reduced from 700 */
    color: var(--brand-navy);
    padding: 0.75rem 1rem;
    /* Slightly reduced height */
    box-shadow: none;
    border: none;
    transition: background-color 0.3s ease;
    border-radius: 0.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(168, 230, 207, 0.15);
    /* soft mint tone */
    color: var(--brand-navy);
    box-shadow: inset 0 -2px 0 var(--brand-coral);
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button.active-clicked {
    box-shadow: inset 0 -2px 0 var(--brand-coral);
    background-color: rgba(168, 230, 207, 0.15);
    color: var(--brand-navy);
}


/* =======================================
   🌟 Why Choose Us (Shared Visual Motif)
======================================= */


/* Frosted Card Style */

.frosted-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    padding: 4rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Why Choose Us alignment fix */

.why-choose-us {
    padding-top: 0 !important;
    h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--brand-navy);
        margin-top: 1rem;
    }
}

.choose-card {
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background-color: #e6fbf3;
    /* soft mint bg */
    color: #0f766e;
    /* deep teal */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .choose-card {
        padding: 1.5rem;
    }
}


/* 🤝 Partner Logos */

.partner-logos-strip {
    background: linear-gradient(to right, var(--brand-mint), var(--brand-navy));
    padding: 5rem 1rem;
    /* Increased vertical padding */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo {
    height: auto;
    max-height: 5rem;
    /* slightly larger */
    width: auto;
    flex: 0 1 auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
    object-fit: contain;
}

.partner-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.scroll-strip {
    overflow: hidden;
    position: relative;
    /* your background */
    padding: 5rem 0;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* ensures visibility on gradient */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partner-logo {
        max-height: 50px;
    }
    .logo-row {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        max-height: 40px;
    }
    .logo-row {
        gap: 1rem;
    }
}


/* =======================================
   🎨 PRICING SECTION
======================================= */


/* === PRICING SECTION CLEAN === */


/* =======================================
   🎯 Pricing Section Layout
======================================= */

.pricing-section {
    padding: 5rem 1rem;
    min-height: 100vh;
    h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 0;
    }
    h4 {
        font-size: 1.3rem;
    }
}

.pricing-section .container {
    width: 100%;
}

.pricing-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}


/* =======================================
   🧊 Card Base Styling
======================================= */

.pricing-card {
    flex: 1;
    min-width: 240px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
    color: #1f2c3a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin: 0 0.2rem;
}

.pricing-card {
    /* make room for button */
}


/* Card Title */

.card-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    word-wrap: break-word;
}


/* Price Block */

.price-block {
    width: 100%;
    height: 80px;
    /* Keep this fixed */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    /* Ensure it doesn’t overlap the next section */
    flex-shrink: 0;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: inherit;
    text-align: center;
}


/* =======================================
   ✅ Plan Lists
======================================= */

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-card ul li {
    position: relative;
    padding-left: 1.8rem;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.check::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #00c2a8 url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 00-1.414 0L8 12.586 4.707 9.293a1 1 0 00-1.414 1.414l4 4a1 1 0 001.414 0l8-8a1 1 0 000-1.414z" clip-rule="evenodd"/></svg>') no-repeat center;
    background-size: 60% 60%;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.x::before {
    content: "✕";
    color: #ccc;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

@media (max-width: 1160px) and (min-width: 911px) {
    .pricing-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .pricing-card {
        flex: 1 1 45%;
        /* two per row */
        max-width: 500px;
    }
    .pricing-card.featured,
    .pricing-card.mint {
        flex: 1 1 45%;
    }
}

@media (max-width: 910px) {
    .pricing-row {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 500px;
        margin-bottom: 2rem;
    }
}


/* =======================================
   🔘 CTA Button
======================================= */

.cta-button {
    margin-top: auto;
    width: 100%;
    align-self: center;
}

.cta-button:hover {
    background-color: #019b87;
}


/* =======================================
   🌈 Card Themes
======================================= */

.pricing-card.orange {
    background-color: #FFE8DD;
    color: #1f2c3a;
}

.pricing-card.orange .price-block {
    background-color: rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background-color: var(--brand-navy);
    color: white;
}

.pricing-card.featured .price-block {
    background-color: rgba(255, 255, 255, 0.15);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}


/* Responsive fallback */

@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
        align-items: stretch;
    }
    .pricing-card {
        margin-bottom: 2rem;
        height: auto !important;
    }
}

.check::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #00c2a8 url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 00-1.414 0L8 12.586 4.707 9.293a1 1 0 00-1.414 1.414l4 4a1 1 0 001.414 0l8-8a1 1 0 000-1.414z" clip-rule="evenodd"/></svg>') no-repeat center;
    background-size: 60% 60%;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.x::before {
    content: "✕";
    color: #ccc;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--brand-navy);
}

.pricing-card.featured .card-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}


/* CTA Button */

.cta-button {
    display: inline-block;
    background-color: #00c2a8;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #019b87;
}


/* Tiers */

.pricing-card.mint {
    background-color: var(--brand-mint);
    .cta-button {
        background-color: var(--brand-coral);
    }
}

.pricing-card.featured {
    background-color: var(--brand-navy);
    color: white;
    height: 42rem;
}

.pricing-card.default-height,
.pricing-card.mint {
    height: 38rem;
}

@media (max-width: 768px) {
    .pricing-row {
        align-items: stretch;
        flex-direction: column;
    }
    .pricing-card {
        margin-bottom: 2rem;
        height: auto !important;
    }
}

.contact-section {
    padding: 5rem 1rem;
}

.frosted-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-section .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.contact-section textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-mint {
    background-color: #00c2a8;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-mint:hover {
    background-color: #019b87;
}


/* =======================================
   🎨 Bootstrap Icons Fix
======================================= */

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    font-weight: bolder !important;
}

.frosted-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    max-width: 1200px;
}


/* Table Styling */

.clean-table {
    border-collapse: collapse;
    width: 100%;
    background: transparent;
}

.clean-table th {
    background-color: var(--brand-mint);
    color: var(--brand-navy);
    font-weight: 600;
    padding: 0.75rem;
    text-align: center;
    border: none;
}

.clean-table td {
    padding: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}


/* Adjust icons for clarity */

.clean-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.bg-network {
    background: url('./img/bg.png') no-repeat center top;
    background-size: cover;
    background-color: var(--brand-offwhite);
    background-attachment: fixed;
}

@keyframes highlightBox {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 8px 4px rgba(255, 0, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.message-highlight {
    animation: highlightBox 1.2s ease;
}

.site-footer {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #285c8c;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
}

.site-footer a {
    color: #0f766e;
    text-decoration: underline;
}

.site-footer a:hover {
    text-decoration: none;
}

.site-footer .small-text {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #444;
}