/* PropertyBhadra – professional navy / teal / soft blue theme */

:root {
    --ps-blue: #1877F2;
    --ps-blue-dark: #166FE5;
    --ps-blue-light: #E7F3FF;
    --ps-blue-soft: #F0F7FF;
    --ps-navy: #0D3B66;
    --ps-navy-deep: #082844;
    --ps-teal: #0F766E;
    --ps-teal-soft: #E6F5F3;
    --ps-brand-green: #2D9B4F;
    --ps-text: #1C1E21;
    --ps-muted: #5B6570;
    --ps-border: #D8E0EA;
    --ps-bg: #EEF3F8;
    --ps-bg-page: #E8EEF5;
    --ps-white: #FFFFFF;
    --ps-success: #31A24C;
    --ps-radius: 10px;
    --ps-shadow: 0 1px 2px rgba(8, 40, 68, 0.06), 0 8px 24px rgba(8, 40, 68, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    font-size: 17px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ps-text);
    background-color: var(--ps-bg-page);
    background-image:
        radial-gradient(ellipse 90% 60% at 0% 0%, rgba(15, 118, 110, 0.07), transparent 55%),
        radial-gradient(ellipse 80% 50% at 100% 10%, rgba(24, 119, 242, 0.08), transparent 50%),
        linear-gradient(180deg, #F4F7FB 0%, var(--ps-bg-page) 40%, #EAF1F8 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 1.05rem;
    line-height: 1.65;
}

main {
    flex: 1;
}

a {
    color: var(--ps-blue);
    text-decoration: none;
}

a:hover {
    color: var(--ps-blue-dark);
    text-decoration: underline;
}

/* Top notice */
.top-notice {
    background: linear-gradient(90deg, var(--ps-navy-deep), var(--ps-navy) 45%, var(--ps-teal));
    color: rgba(255, 255, 255, 0.92);
    border-bottom: none;
    font-size: 0.875rem;
}

/* Brand logo */
.site-logo {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
}

.site-logo-nav {
    height: 58px;
    width: auto;
    max-width: min(320px, 72vw);
    object-fit: contain;
    object-position: left center;
}

.site-logo-footer {
    height: 88px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    object-position: left center;
}

.site-logo-success {
    height: 96px;
    width: auto;
    max-width: 380px;
    margin: 0 auto 1.25rem;
    object-fit: contain;
}

.navbar-brand {
    margin-right: 1rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--ps-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
}

.brand-name {
    color: var(--ps-text);
    font-size: 1.15rem;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--ps-muted);
    margin-left: 4px;
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .site-logo-nav {
        height: 48px;
        max-width: min(240px, 68vw);
    }

    .site-logo-footer {
        height: 70px;
        max-width: 280px;
    }

    .site-logo-success {
        height: 72px;
        max-width: 280px;
    }
}

.navbar {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--ps-border), 0 4px 18px rgba(8, 40, 68, 0.04);
    z-index: 1030;
}

.navbar .nav-link {
    color: var(--ps-muted);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.55rem 0.8rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--ps-blue);
    text-decoration: none;
}

.btn-primary {
    background: var(--ps-blue);
    border-color: var(--ps-blue);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-size: 1.05rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--ps-blue-dark);
    border-color: var(--ps-blue-dark);
}

.btn-outline-primary {
    color: var(--ps-blue);
    border-color: var(--ps-blue);
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.05rem;
}

.btn-outline-primary:hover {
    background: var(--ps-blue);
    border-color: var(--ps-blue);
    color: #fff;
}

.btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1.15rem;
}

/* Hero */
.hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(15, 118, 110, 0.12), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(24, 119, 242, 0.12), transparent 42%),
        linear-gradient(165deg, #E8F4FF 0%, #F2F8FC 45%, #EEF7F5 100%);
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}

.hero-brand-block {
    margin-bottom: 1.35rem;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(13, 59, 102, 0.1);
    box-shadow: var(--ps-shadow);
}

.hero-brand-media {
    width: 100%;
    line-height: 0;
    background: #f4f7fb;
}

.hero-brand-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    object-position: center center;
}

.hero-brand-text {
    width: 100%;
    padding: 1.15rem 1.25rem 1.35rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
}

.hero-brand-name {
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 0.65rem;
}

.brand-property {
    color: var(--ps-navy);
}

.brand-bhadra {
    color: var(--ps-brand-green);
}

.hero-brand-tagline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.65rem;
}

.hero-brand-tagline .tag-line {
    flex: 1;
    height: 2px;
    background: var(--ps-navy);
    max-width: 3.5rem;
    opacity: 0.85;
}

.hero-brand-tagline .tag-text {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ps-navy);
    white-space: nowrap;
}

.hero-brand-services {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 600;
    color: var(--ps-navy);
}

.hero-brand-services .svc-sep {
    color: var(--ps-brand-green);
    font-weight: 700;
    margin: 0 0.15rem;
}

.hero-title {
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    font-weight: 700;
    color: var(--ps-text);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--ps-muted);
    max-width: 36rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    border: 1px solid var(--ps-border);
    color: var(--ps-navy);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hero-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
    border: 1px solid rgba(13, 59, 102, 0.1);
    border-radius: 14px;
    box-shadow: var(--ps-shadow);
    padding: 1.5rem;
}

@media (max-width: 991.98px) {
    .hero-brand-block {
        margin-bottom: 1.25rem;
    }

    .hero-brand-img {
        max-height: 220px;
    }

    .hero-brand-text {
        text-align: center;
        padding: 1rem 1rem 1.2rem;
    }

    .hero-brand-tagline {
        justify-content: center;
    }

    .hero-brand-tagline .tag-line {
        max-width: 2.5rem;
    }

    .hero-brand-services {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 16px;
    }

    .hero-brand-img {
        max-height: 180px;
    }

    .hero-brand-name {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .hero-brand-services {
        font-size: 0.9rem;
        gap: 0.25rem 0.35rem;
    }

    .hero-brand-tagline .tag-text {
        letter-spacing: 0.08em;
        font-size: 0.9rem;
    }
}

.score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--ps-blue) 0% 78%, var(--ps-border) 78% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.score-ring-inner {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-ring-inner strong {
    font-size: 1.75rem;
    color: var(--ps-blue);
    line-height: 1;
}

.score-ring-inner span {
    font-size: 0.85rem;
    color: var(--ps-muted);
}

/* Sections */
.section {
    padding: 3rem 0;
    background: transparent;
}

.section-alt {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35)),
        linear-gradient(135deg, #EAF3FB 0%, #E8F6F3 100%);
    border-top: 1px solid rgba(13, 59, 102, 0.06);
    border-bottom: 1px solid rgba(13, 59, 102, 0.06);
}

.section-soft {
    background: linear-gradient(180deg, #F7FAFD 0%, #F0F5FA 100%);
}

.section-teal {
    background: linear-gradient(135deg, var(--ps-teal-soft) 0%, #EDF6FF 100%);
    border-top: 1px solid rgba(15, 118, 110, 0.1);
    border-bottom: 1px solid rgba(15, 118, 110, 0.1);
}

.section-cta {
    background:
        radial-gradient(circle at 20% 30%, rgba(45, 155, 79, 0.12), transparent 40%),
        linear-gradient(135deg, var(--ps-navy-deep) 0%, var(--ps-navy) 55%, #0F5F6B 100%);
    color: #fff;
}

.section-cta .section-title,
.section-cta h2,
.section-cta .text-muted,
.section-cta p {
    color: rgba(255, 255, 255, 0.92) !important;
}

.section-cta .ps-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: #fff;
}

.section-cta .ps-card .text-muted,
.section-cta .ps-card p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.trust-strip {
    background: linear-gradient(90deg, #FFFFFF 0%, #F3F8FC 50%, #FFFFFF 100%);
    border-bottom: 1px solid var(--ps-border);
}

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ps-navy);
}

.section-sub {
    color: var(--ps-muted);
    max-width: 36rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Cards */
.ps-card {
    background: #fff;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-shadow);
    height: 100%;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ps-card:hover {
    border-color: #c5d9f5;
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.1);
}

.ps-card .card-body {
    padding: 1.25rem;
}

.doc-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ps-text);
}

.doc-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ps-muted);
}

.badge-soft {
    background: var(--ps-blue-light);
    color: var(--ps-blue);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
}

.badge-popular {
    background: var(--ps-blue);
    color: #fff;
}

.trust-item {
    text-align: center;
    padding: 1rem 0.5rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--ps-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.trust-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ps-text);
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ps-blue);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

/* Plans */
.plan-card {
    position: relative;
    padding: 1.75rem 1.5rem;
}

.plan-card.featured {
    border-color: var(--ps-blue);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.15);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ps-blue);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-price {
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--ps-text);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.plan-features li {
    padding: 0.45rem 0;
    font-size: 1.05rem;
    color: var(--ps-muted);
    display: flex;
    gap: 0.5rem;
}

.plan-features li i {
    color: var(--ps-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Order wizard */
.wizard-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.wizard-step {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.7rem 0.55rem;
    border-radius: 8px;
    background: var(--ps-bg);
    color: var(--ps-muted);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.wizard-step.active {
    background: var(--ps-blue-light);
    color: var(--ps-blue);
    border-color: #c5d9f5;
}

.wizard-step.done {
    background: #e8f5e9;
    color: var(--ps-success);
}

.doc-check {
    border: 1px solid var(--ps-border);
    border-radius: 8px;
    padding: 0.95rem 1.1rem;
    margin-bottom: 0.65rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-size: 1.05rem;
}

.doc-check:hover {
    background: var(--ps-blue-soft);
}

.doc-check.selected {
    border-color: var(--ps-blue);
    background: var(--ps-blue-light);
}

.doc-check input {
    margin-top: 0.2rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ps-blue);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15);
}

.form-label {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ps-text);
}

.form-control,
.form-select {
    font-size: 1.05rem;
    padding: 0.6rem 0.85rem;
}

/* Page header band */
.page-band {
    background:
        radial-gradient(circle at 90% 20%, rgba(15, 118, 110, 0.25), transparent 40%),
        linear-gradient(120deg, var(--ps-navy-deep) 0%, var(--ps-navy) 50%, #114B6B 100%);
    border-bottom: none;
    padding: 2.25rem 0;
    color: #fff;
}

.page-band h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #fff;
}

.page-band p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.page-band .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.page-band .btn-outline-primary:hover {
    background: #fff;
    color: var(--ps-navy);
    border-color: #fff;
}

.page-band .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--ps-navy);
}

.page-band .btn-primary:hover {
    background: var(--ps-teal-soft);
    border-color: var(--ps-teal-soft);
    color: var(--ps-navy);
}

/* FAQ */
.accordion-button {
    font-size: 1.1rem;
}

.accordion-body {
    font-size: 1.05rem;
}

.accordion-item {
    background: #fff;
    border-color: var(--ps-border);
}

.accordion-button:not(.collapsed) {
    background: var(--ps-teal-soft);
    color: var(--ps-navy);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

/* Footer */
.site-footer {
    background:
        linear-gradient(180deg, #0B2F4F 0%, var(--ps-navy-deep) 100%);
    border-top: none;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer .text-muted,
.site-footer .small {
    color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer strong {
    color: #fff;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.site-footer .site-logo-footer {
    background: #fff;
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
}

.site-footer .text-muted a {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.85rem 1rem;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    z-index: 1040;
    text-decoration: none !important;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    color: #fff !important;
}

/* Alert / success */
.alert-ps {
    background: var(--ps-blue-light);
    border: 1px solid #c5d9f5;
    color: var(--ps-text);
    border-radius: 10px;
}

.success-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 1px solid var(--ps-border);
    border-radius: 12px;
    box-shadow: var(--ps-shadow);
}

.success-box .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e8f5e9;
    color: var(--ps-success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Loading */
.btn.loading {
    pointer-events: none;
    opacity: 0.75;
}

.btn.loading .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Blog */
.blog-meta {
    font-size: 0.95rem;
    color: var(--ps-muted);
}

/* Utilities */
.text-muted-ps {
    color: var(--ps-muted) !important;
}

.small,
small {
    font-size: 0.95rem !important;
}

.bg-soft {
    background: var(--ps-blue-soft) !important;
}

.bg-page {
    background: transparent;
}

@media (max-width: 575.98px) {
    .hero {
        padding: 1.75rem 0 2rem;
    }

    .section {
        padding: 2.25rem 0;
    }

    .wizard-step {
        min-width: calc(50% - 0.25rem);
        flex: 0 0 calc(50% - 0.25rem);
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}
