*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #1a3a8f;
    --blue-dark: #0e296d;
    --green: #119b31;
    --green-dark: #094e19;
    --light-bg: #f5f7ff;
    --text: #222;
    --text-muted: #1e1d1d;
    --border: #e0e4ef;
    --white: #fff;
}

html,
body {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}



.icon-img {
    width: 30px;
}

.icon-img2 {
    width: 105px;
    height: auto;
}

.text-justify {
    text-align: justify;
}

.blink {
    animation: blink 2s linear infinite;
}


@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ── TOP BAR ── */
.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 0.8125rem;
    padding: 6px;
    text-align: center;
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    /* padding: 12px 0; */
}

.header-inner {
    /* max-width: 1200px; */
    /* margin: auto; */
    /* padding: 0 20px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ── NAVBAR ── */
.navbar {
    background: var(--white);
    padding: 12px 0;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color .2s;
}

.nav-link:hover {
    color: var(--blue);
}

.menu-toggle {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-box {
    max-width: 60px;
    font-size: 1.375rem;
    font-weight: 800;
}

.logo-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.logo-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.logo-text strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
}

.contact-item i {
    color: var(--blue);
    font-size: 1.125rem;
}

.contact-item a {
    font-weight: 600;
    color: var(--text);
}

.contact-item span {
    font-size: 0.6875rem;
    color: var(--text);
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-green {
    background: var(--green);
    color: #fff;
}

.btn-green:hover {
    background: var(--green-dark);
    color: #fff;
}

.btn-outline-green {
    background: #ffffff00;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline-green:hover {
    background: var(--green);
    color: #fff;
}

/* ── HERO ── */
.hero {
    background: url('../../images/bg/map1.png'), linear-gradient(135deg, #eef2ff 0%, #f5f7ff 60%, #e8f5e9 100%);
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px 0px 0px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 380px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-ball {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
    animation: rotateBall 15s linear infinite;
}

@keyframes rotateBall {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero h1 {
    font-size: 2.375rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero h1 span {
    color: var(--blue);
}

.hero-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-bottom: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat i {
    font-size: 1.375rem;
    color: var(--blue);
    display: block;
    margin-bottom: 4px;
}

.hero-stat strong {
    font-size: 1.125rem;
    font-weight: 700;
    display: block;
}

.hero-stat span {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-img {
    display: flex;
    align-items: flex-end;
}

.hero-img img {
    width: 260px;
    border-radius: 8px 8px 0 0;
}

/* ── FORM CARD ── */
.form-card {
    background: #fff;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
    padding: 28px 24px;
    border-top: 4px solid var(--blue);
}

.form-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-card h3 span {
    color: var(--green);
}

.form-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.form-group label span {
    color: red;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border .2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--blue);
}

.form-card .btn-green {
    width: 100%;
    justify-content: center;
    font-size: 0.9375rem;
    padding: 10px;
}

.form-secure {
    text-align: center;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.form-secure i {
    color: var(--green);
    margin-right: 4px;
}

/* ── SECTION HELPERS ── */
.section {
    padding: 40px 0;
    background: url('../../images/bg/map.png');
    background-repeat: no-repeat;
    background-position: center;
}

.section-alt {
    background: url('../../images/bg/map1.png'), linear-gradient(135deg, #eef2ff 0%, #f5f7ff 60%, #e8f5e9 100%);
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */
}



.section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-title span {
    color: var(--blue);
}

.section-sub {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.underline-blue {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--blue);
    margin: 6px auto 30px;
}

/* ── PROBLEMS ── */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.problem-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 26px 20px;
    text-align: center;
    transition: box-shadow .2s;
}

.problem-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transform: translateY(-5px);
    border-color: var(--blue);
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f0;
    border: 2px solid #ffcccc;
}

.problem-icon i {
    font-size: 1.375rem;
    color: #e74c3c;
}

.problem-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.problems-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* ── PLAN TABS ── */
.plan-tabs-wrapper .nav-pills {
    gap: 15px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.plan-tabs-wrapper .nav-link {
    background: #fff;
    color: var(--text);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-tabs-wrapper .nav-link i {
    font-size: 1.2rem;
    opacity: 0.7;
}

.plan-tabs-wrapper .nav-link.active {
    background: var(--blue) !important;
    color: #fff !important;
    border-color: var(--blue) !important;
    box-shadow: 0 8px 20px rgba(26, 58, 143, 0.2);
}

.plan-tabs-wrapper .nav-link.active i {
    opacity: 1;
}

.plan-tabs-wrapper .nav-link:hover:not(.active) {
    background: #f8f9fa;
    border-color: var(--blue);
    color: var(--blue);
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(26, 58, 143, .18);
    transform: translateY(-8px);
    border-color: var(--blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--light-bg);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--blue);
}

.service-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ── LOCATION CARDS ── */
.location-card {
    background:var(--blue);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    color: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}



/* ── STEPS ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 38px;
    right: -64%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #b0bec5;
}

.step-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--blue);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26, 58, 143, .12);
}

.step-circle i {
    font-size: 1.75rem;
    color: var(--blue);
}

.step h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
}

.step h5 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── RESULTS ── */
.results-section {
    background: var(--blue);
    color: #fff;
    padding: 60px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.results-left h2 {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.results-divider {
    width: 40px;
    height: 3px;
    background: #fff;
    margin: 10px 0 28px;
}

.results-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.result-stat {
    text-align: center;
}

.result-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.result-stat-icon i {
    font-size: 1.375rem;
    color: #fff;
}

.result-stat strong {
    font-size: 1.375rem;
    font-weight: 800;
    display: block;
}

.result-stat span {
    font-size: 0.75rem;
    opacity: .8;
}

.results-right {
    min-width: 0;
}

.results-right h2 {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.testimonials-swiper {
    margin-top: 20px;
    padding-bottom: 40px;
    /* space for pagination */
    padding-top: 15px;
    /* space for quote icon offset */
}

/* Override swiper pagination color to match theme */
.testimonials-swiper .swiper-pagination-bullet-active {
    background: #f0c040;
}

.testimonial {
    background: rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: scale(1.02);
}

.testimonial .quote-icon {
    position: absolute;
    top: -12px;
    left: 14px;
    background: #f0c040;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #fff;
    font-weight: 900;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 6px;
}

.testimonial-user img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .3);
}

.testimonial-user span {
    font-size: 0.8125rem;
    font-weight: 600;
}

.testimonial p {
    font-size: 0.75rem;
    opacity: .85;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

.stars {
    color: #f0c040;
    font-size: 0.8125rem;
}

/* ── WHY CHOOSE ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.why-card {
    text-align: center;
    padding: 20px 12px;
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover .why-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--blue);
    border-color: var(--blue);
}

.why-card:hover .why-icon i {
    color: #fff;
}



.why-icon i {
    font-size: 1.375rem;
    color: var(--blue);
    transition: .2s;
}

.why-card span {
    font-size: 0.8125rem;
    font-weight: 600;
}

/* ── CTA ── */
.cta-section {
    padding: 0;
    background: transparent;
    margin-bottom: -80px;
    position: relative;
    z-index: 10;
}

.cta-inner {
    background: url('../../images/bg/map1.png'),linear-gradient(135deg, var(--blue) 0%, #0d2266 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.cta-left h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-left p {
    font-size: 0.875rem;
    opacity: .85;
    margin-bottom: 20px;
}

.cta-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
}

.cta-check i {
    color: #4ade80;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.cta-right .btn {
    min-width: 260px;
    justify-content: center;
    font-size: 0.875rem;
}

.btn-white {
    background: #fff;
    color: var(--blue);
}

.btn-white:hover {
    background: #f0f4ff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
}

.btn-wa {
    background: #25d366;
    color: #fff;
}

.btn-wa:hover {
    background: #1ebe5d;
}

.cta-img {
    width: 220px;
    margin-left: auto;
}

.cta-img img {
    width: 100%;
    border-radius: 12px;
}

/* ── FOOTER ── */
footer {
    background: url('../../images/bg/pattern_h.png'),linear-gradient(135deg, var(--blue-dark) 0%, #0d2266 100%);
    background-position: center;
    color: rgba(255, 255, 255, .8);
    padding: 130px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo-box {
    background: var(--white);
    border-radius: 4px;
}

.footer-logo-box img {
    width: 40px;
    object-fit: cover;
}

.footer-brand p {
    font-size: 0.8125rem;
    margin-bottom: 10px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    transition: .2s;
}

.social-link:hover {
    background: var(--blue);
    color: #fff;
}

footer h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    opacity: .95;
    transition: .2s;
}

.footer-links a:hover {
    opacity: 1;
    color: #fff;
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
}

.footer-contact-item i {
    font-size: 1rem;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    opacity: .8;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ── WA FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, .8), 0 0 0 10px rgba(37, 211, 102, .1);
    }
}

/* ── PRICING SECTION ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border: 2px solid var(--blue);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6f00;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.basic .plan-icon { background: #e8f5e9; color: #2e7d32; }
.standard .plan-icon { background: #e3f2fd; color: #1565c0; }
.premium .plan-icon { background: #f3e5f5; color: #7b1fa2; }

.pricing-header h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.basic h3 { color: #2e7d32; }
.standard h3 { color: #1565c0; }
.premium h3 { color: #7b1fa2; }

.pricing-header p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 5px;
    display: inline-block;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-price .duration {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    margin-bottom: 12px;
    color: var(--text);
}

.pricing-features li i {
    font-size: 1.125rem;
}

.basic .pricing-features li i { color: #2e7d32; }
.standard .pricing-features li i { color: #1565c0; }
.premium .pricing-features li i { color: #7b1fa2; }

.best-for {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.basic .best-for { background: #f1f8e9; }
.standard .best-for { background: #e3f2fd; }
.premium .best-for { background: #f3e5f5; }

.best-for-icon {
    font-size: 1.25rem;
    margin-top: 2px;
}

.basic .best-for-icon { color: #2e7d32; }
.standard .best-for-icon { color: #1565c0; }
.premium .best-for-icon { color: #7b1fa2; }

.best-for strong {
    display: block;
    font-size: 0.8125rem;
    margin-bottom: 2px;
}

.best-for p {
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
    color: var(--text-muted);
}

.btn-purple {
    background: #7b1fa2;
    color: #fff;
}

.btn-purple:hover {
    background: #6a1b9a;
    color: #fff;
}

.pricing-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.pricing-footer a {
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.pricing-footer .sep { color: var(--border); }

.pricing-footer a:hover { color: var(--blue); }

/* ── TRUST BADGES ── */
.trust-badges-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border);
    margin: 40px 0 0px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: #f5f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--blue);
}

.trust-badge strong {
    display: block;
    font-size: 0.875rem;
}

.trust-badge p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--text-muted);
}

/* ── FAQ PREVIEW ── */
.faq-preview-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    background: #e3f2fd55;
    padding: 30px;
    border-radius: 15px;
}

.faq-intro {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.faq-intro strong {
    font-size: 1rem;
    line-height: 1.2;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item-icon {
    font-size: 1.5rem;
    color: var(--blue);
    margin-top: -2px;
}

.faq-item strong {
    display: block;
    font-size: 0.8125rem;
    margin-bottom: 4px;
}

.faq-item p {
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.5;
    color: var(--text-muted);
}

/* ── DETAILED PLANS MODERN ── */
.plan-section{
     background: url('../../images/bg/map1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px 0px;
}

.plan-detail-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.plan-detail-row:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.plan-detail-row.highlighted {
    border: 2px solid var(--blue);
}

.plan-side-info {
    padding: 40px;
    background: #f8faff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.basic-row .plan-side-info { background: #f1f8e9; }
.standard-row .plan-side-info { background: #e3f2fd; }
.premium-row .plan-side-info { background: #f3e5f5; }

.plan-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.plan-side-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.basic-row h3 { color: #2e7d32; }
.standard-row h3 { color: #1565c0; }
.premium-row h3 { color: #7b1fa2; }

.plan-price-recap {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-price-recap span {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-side-info p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.plan-main-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.content-box h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-box h5 i { color: var(--blue); }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-grid span {
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f7ff;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.feature-grid span::before {
    content: '\eb7a'; /* RemixIcon checkbox-circle */
    font-family: 'remixicon';
    color: var(--blue);
}

.benefit-strip {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid var(--blue);
}

.basic-row .benefit-strip { border-color: #2e7d32; }
.standard-row .benefit-strip { border-color: #1565c0; }
.premium-row .benefit-strip { border-color: #7b1fa2; }

.benefit-strip strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.benefit-strip p {
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

.suited-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.suited-note i { font-size: 1rem; color: var(--blue); }

/* ── BLOG CARD ── */
.blog-card {
    background: #fff;
    transition: all 0.3s ease;
    border-color: var(--border) !important;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(26, 58, 143, 0.15) !important;
    border-color: var(--blue) !important;
}

.blog-content {
    background: #fafbff;
}

/* ── PLAN TABS (SIMPLE) ── */
.plan-tabs-wrapper {
    display: flex;
    justify-content: center;
}

.plan-tabs-wrapper .nav-pills {
    background: #f1f4f9;
    padding: 6px;
    border-radius: 12px;
    gap: 0;
    border: none;
}

.plan-tabs-wrapper .nav-link {
    background: transparent;
    color: var(--text-muted);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.plan-tabs-wrapper .nav-link.active {
    background: #fff !important;
    color: var(--blue) !important;
    box-shadow: 0 4px 12px rgba(26, 58, 143, 0.08) !important;
    font-weight: 700;
}

.plan-tabs-wrapper .nav-link:hover:not(.active) {
    color: var(--blue);
    background: rgba(26, 58, 143, 0.05);
}

.blog-content p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}


