:root {
    --primary: #0d6efd;
    --dark: #071b3a;
    --soft: #f4f8ff;
    --text: #24324b;
    --muted: #52627a;
    --border: #e5ecf8;
    --success: #168a4a;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #ffffff;
}

main {
    flex: 1;
}

/* NAVBAR */
.navbar {
    backdrop-filter: blur(12px);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
}

/* BUTTONS */
.btn {
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: 0.25s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.18);
}

/* HERO */
.hero-section,
.service-detail-hero {
    background: linear-gradient(135deg, #eef5ff, #ffffff);
    padding: 85px 0 75px;
}

.hero-title,
.service-page-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.hero-text,
.service-page-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
}

/* SECTIONS */
.section-padding {
    padding: 70px 0;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 40px;
}

/* TRUST SECTION */
.trust-section {
    padding: 35px 0 25px;
    background: #ffffff;
}

.trust-card {
    height: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 20px;
    padding: 18px 12px;
    text-align: center;
}

    .trust-card:hover {
        transform: none;
        box-shadow: none;
        border-color: transparent;
    }

.trust-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #eef5ff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.trust-card h5 {
    font-weight: 700;
    color: var(--dark);
}

.trust-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

/* SERVICE CARDS */
.service-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    background: #ffffff;
    transition: 0.25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        border-color: var(--primary);
    }

    .service-card h5 {
        font-size: 21px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1.4;
    }

    .service-card p {
        color: var(--muted);
        margin-top: 12px;
        line-height: 1.7;
    }

.home-service-card {
    min-height: 170px;
    transition: 0.25s ease;
}

    .home-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }

/* SERVICE DETAIL PAGE */
.service-badge {
    display: inline-block;
    background: #e8f1ff;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 18px;
}

.service-pricing-card {
    max-width: 470px;
    margin-left: auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

    .service-pricing-card h3 {
        font-size: 26px;
        font-weight: 700;
        color: var(--dark);
    }

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #075985;
    margin-top: 12px;
}

.money-back-box {
    border: 1px solid #7dd3fc;
    color: #075985;
    border-radius: 50px;
    padding: 13px 18px;
    text-align: center;
    font-weight: 600;
    background: #f0fdfa;
    font-size: 15px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .highlight-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 18px;
        margin-bottom: 18px;
        color: #064e5f;
    }

    .highlight-list span {
        background: #065f66;
        color: #ffffff;
        border-radius: 50%;
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

/* FAQ */
.faq-section {
    background: #f8fafc;
    padding: 65px 0 80px;
}

.faq-box {
    max-width: 850px;
}

.accordion-item {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.accordion-button {
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
    padding: 20px 24px;
}

    .accordion-button:not(.collapsed) {
        background: #eef5ff;
        color: var(--primary);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    background: #ffffff;
    padding: 24px;
    border-top: 1px solid #eef2f7;
}

/* FORMS */
.lead-form-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* MODALS */
.modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.know-more-modal .modal-header {
    padding: 24px 28px;
    border-bottom: 1px solid #eef2f7;
}

.know-more-modal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.modal-section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
}

.modal-divider {
    margin: 28px 0;
    border-color: var(--border);
}

.info-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px 18px;
    margin-bottom: 12px;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.info-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* THANK YOU PAGE */
.thankyou-section {
    min-height: 65vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #eef5ff, #ffffff);
}

.thankyou-card {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 55px 35px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: #16a34a;
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* EXPLORE BUTTON ANIMATION */
.explore-btn {
    position: relative;
    overflow: hidden;
    animation: softPulse 2.2s infinite;
}

    .explore-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(13, 110, 253, 0.22), transparent );
        transform: skewX(-20deg);
        animation: shineMove 2.8s infinite;
    }

@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.35);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

@keyframes shineMove {
    0% {
        left: -80%;
    }

    55% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

/* FOOTER */
.footer-section {
    background: var(--dark);
    color: #ffffff;
    margin-top: auto;
}

.footer-link {
    display: block;
    color: #dbe7ff;
    text-decoration: none;
    margin-bottom: 8px;
}

    .footer-link:hover {
        color: #ffffff;
    }

.text-decoration-none {
    text-decoration: none !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section,
    .service-detail-hero {
        padding: 45px 0;
        text-align: center;
    }

    .hero-title,
    .service-page-title {
        font-size: 36px;
    }

    .hero-text,
    .service-page-text {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-padding {
        padding: 45px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .service-pricing-card {
        margin: 30px auto 0;
        padding: 26px;
    }

    .highlight-list li {
        text-align: left;
        font-size: 16px;
    }

    .thankyou-card {
        padding: 40px 25px;
    }
}
.lead-form .form-control {
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid #dbe4f0;
    font-size: 15px;
}

    .lead-form .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
    }

    .lead-form .form-control:invalid:not(:placeholder-shown) {
        border-color: #dc3545;
    }

.lead-submit-btn {
    min-height: 48px;
}
/* FINAL SERVICE PAGE POLISH */

.service-detail-hero {
    padding-top: 95px;
    padding-bottom: 85px;
}

.service-page-text {
    margin-top: 18px;
    margin-bottom: 24px;
}

.faq-section {
    padding-top: 75px;
    padding-bottom: 90px;
}

.faq-box {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .faq-section {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}