:root {
    --primary: #0b6b4f;
    --primary-dark: #064936;
    --dark: #101828;
    --text: #667085;
    --light: #f8fafc;
    --border: #e5e7eb;
    --white: #ffffff;

        --secondary: #dff1e8;
        --accent: #d8f36d;
        --dark-2: #0d2823;
}
 
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

/* ==============================
           NAVBAR
        ============================== */

.navbar {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary) !important;
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-nav .nav-link {
    color: #344054;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 15px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.btn-primary-custom {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 7px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 7px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

/* ==============================
           HERO
        ============================== */

.plans-hero {
    min-height: 420px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(rgba(5, 53, 39, .90),
            rgba(5, 53, 39, .90)),
        url('https://images.unsplash.com/photo-1559526324-593bc073d938?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
}

.hero-content {
    max-width: 760px;
    color: #fff;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, .75);
}

.breadcrumb-item.active {
    color: #fff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
}

/* ==============================
           GENERAL
        ============================== */

.section-padding {
    padding: 90px 0;
}

.section-title {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 50px;
}

.small-title {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text);
}

/* ==============================
           PLAN SECTION
        ============================== */

.plans-section {
    background: var(--light);
}

.plan-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px 30px;
    transition: .3s;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(16, 24, 40, .10);
}

.plan-card.popular {
    border: 2px solid var(--primary);
}

.popular-label {
    position: absolute;
    top: 0;
    right: 0;

    background: var(--primary);
    color: #fff;

    padding: 8px 20px;

    border-bottom-left-radius: 10px;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(11, 107, 79, .1);
    color: var(--primary);

    border-radius: 12px;

    font-size: 28px;

    margin-bottom: 22px;
}

.plan-name {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 8px;
}

.plan-description {
    color: var(--text);
    font-size: 14px;
    min-height: 50px;
}

.plan-price {
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 25px 0;
}

.plan-price small {
    color: var(--text);
    display: block;
    margin-bottom: 5px;
}

.plan-price strong {
    font-size: 35px;
    font-weight: 800;
    color: var(--primary);
}

.plan-duration {
    color: var(--text);
    font-size: 14px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #344054;
}

.plan-features i {
    color: var(--primary);
    font-size: 17px;
}

.plan-button {
    display: block;
    width: 100%;
    text-align: center;

    background: var(--primary);
    color: #fff;

    padding: 13px 20px;

    border-radius: 7px;

    font-weight: 700;

    transition: .3s;
}

.plan-button:hover {
    background: var(--primary-dark);
    color: #fff;
}

.plan-button-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.plan-button-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ==============================
           CALCULATOR
        ============================== */

.calculator-wrapper {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(16, 24, 40, .06);
}

.calculator-wrapper h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.calculator-wrapper>p {
    color: var(--text);
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: #344054;
}

.form-control,
.form-select {
    min-height: 50px;
    border: 1px solid #d0d5dd;
    border-radius: 7px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(11, 107, 79, .10);
}

.calculator-result {
    height: 100%;
    background: var(--primary);
    border-radius: 15px;
    padding: 40px;
    color: #fff;
}

.calculator-result h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

.result-item {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.result-item:last-child {
    border-bottom: 0;
}

.result-item span {
    display: block;
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
    margin-bottom: 4px;
}

.result-item strong {
    font-size: 25px;
}

/* ==============================
           HOW IT WORKS
        ============================== */

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: rgba(11, 107, 79, .1);
    color: var(--primary);

    font-size: 23px;
    font-weight: 800;

    position: relative;
}

.step-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text);
    font-size: 14px;
}

/* ==============================
           COMPARISON
        ============================== */

.comparison-table {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table table {
    margin-bottom: 0;
}

.comparison-table th {
    background: var(--primary);
    color: #fff;
    padding: 18px;
    font-size: 14px;
}

.comparison-table td {
    padding: 18px;
    vertical-align: middle;
    color: #475467;
    border-color: var(--border);
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.check {
    color: var(--primary);
    font-size: 19px;
}

.cross {
    color: #98a2b3;
    font-size: 19px;
}

/* ==============================
           CTA
        ============================== */

.cta-section {
    padding: 85px 0;

    background:
        linear-gradient(100deg,
            rgba(5, 53, 39, .96),
            rgba(11, 107, 79, .90)),
        url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
}

.cta-content {
    text-align: center;
    color: #fff;
    max-width: 750px;
    margin: auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
}

.cta-content p {
    color: rgba(255, 255, 255, .80);
    margin-bottom: 30px;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    padding: 13px 28px;
    border-radius: 7px;
    font-weight: 700;
    display: inline-block;
}

.btn-white:hover {
    background: var(--secondary);
    color: #fff;
}

/* ==============================
           FAQ
        ============================== */

.accordion-item {
    border: 1px solid var(--border);
    margin-bottom: 12px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(11, 107, 79, .05);
}

.accordion-body {
    color: var(--text);
}

/* ==============================
           FOOTER
        ============================== */

footer {
    background: #0b1720;
    color: #fff;
    padding-top: 70px;
}

.footer-brand {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

.footer-brand span {
    color: var(--secondary);
}

.footer-description {
    color: #98a2b3;
    max-width: 350px;
    margin-top: 18px;
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #98a2b3;
    transition: .3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact {
    color: #98a2b3;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 8px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 50%;
    margin-right: 5px;
    transition: .3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    margin-top: 50px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #98a2b3;
    font-size: 14px;
}

/* ==============================
           RESPONSIVE
        ============================== */

@media(max-width: 991px) {

    .hero-content h1 {
        font-size: 44px;
    }

    .section-title h2 {
        font-size: 35px;
    }

}

@media(max-width: 767px) {

    .plans-hero {
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-padding {
        padding: 65px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .calculator-wrapper {
        padding: 25px;
    }

    .calculator-result {
        margin-top: 25px;
        padding: 30px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .comparison-table {
        overflow-x: auto;
    }

}










/* ==========================================
   HERO CAROUSEL
========================================== */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 720px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(5, 20, 45, 0.92) 0%,
            rgba(5, 20, 45, 0.75) 45%,
            rgba(5, 20, 45, 0.25) 100%);
}

.min-vh-75 {
    min-height: 720px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(5px);
}

.hero-title {
    color: #ffffff;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-title span {
    color: #075F4F;
    display: block;
}

.hero-description {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
}

.hero-buttons .btn-primary {
    background: #075F4F;
    border-color: #075F4F;
    color: #07152d;
}

.hero-buttons .btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #07152d;
}

.hero-buttons .btn-outline-light:hover {
    background: #ffffff;
    color: #07152d;
}


/* Trust items */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.trust-item i {
    color: #075F4F;
    font-size: 18px;
}


/* Carousel controls */

.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    margin: 0 25px;
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #075F4F;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}


/* Indicators */

.carousel-indicators {
    bottom: 35px;
    z-index: 10;
}

.carousel-indicators button {
    width: 35px;
    height: 4px;
    border: 0;
    border-radius: 5px;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: #075F4F;
}


/* Animation */

.carousel-item {
    transition: transform 0.8s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .hero-slide,
    .min-vh-75 {
        min-height: 650px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }
}


@media (max-width: 767px) {

    .hero-slide,
    .min-vh-75 {
        min-height: 650px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(5, 20, 45, 0.92),
                rgba(5, 20, 45, 0.75));
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        gap: 12px;
        flex-direction: column;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}


@media (max-width: 480px) {

    .hero-slide,
    .min-vh-75 {
        min-height: 680px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
    }
}