/* ================================================================
   site-extra.css
   Supplementary component styles for the multi-page Kurukshetra
   portal (Home / Developer / Project pages). Uses the SAME color
   variables and font ("Outfit") as assets/css/style.css so it stays
   visually consistent. Only adds layouts that style.css does not
   already provide (developer grid, why-invest cards, location grid,
   testimonials, CTA bands) so nothing here overrides the original
   template's own components.
   ================================================================ */

/* ----------------------------------------------------------------
   GLOBAL FIXES
   The original template only styled .elementor-button and .pricebtn
   INSIDE specific parent wrappers (.cost_sheetd, .masterPlanoi),
   so any button used elsewhere renders as an unstyled default
   browser button. These base rules make every button/link across
   all pages look consistent everywhere they're used.
   ---------------------------------------------------------------- */
a.elementor-button,
button.elementor-button,
button.pricebtn {
    background-color: var(--theme-main);
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    border-radius: 7px;
    padding: 12px 24px;
    text-decoration: none;
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: .3s;
    min-width: 150px;
    text-align: center;
}
a.elementor-button:hover,
button.elementor-button:hover,
button.pricebtn:hover {
    background-color: #000;
    color: #fff !important;
}
/* Outline variant, used for secondary actions next to a primary button */
a.elementor-button.outline-btn,
button.elementor-button.outline-btn {
    background: transparent;
    border: 2px solid var(--theme-main);
    color: var(--theme-main) !important;
    padding: 10px 22px;
}
a.elementor-button.outline-btn:hover,
button.elementor-button.outline-btn:hover {
    background: var(--theme-main);
    color: #fff !important;
}
.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}
/* Buttons row inside price/plan cards should center nicely */
.info-card .btn-row,
.info-card .elementor-button { margin-top: auto; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 20px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
    .card-grid,
    .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .card-grid,
    .card-grid.cols-2,
    .card-grid.cols-4 { grid-template-columns: 1fr; }
}

/* Generic white content card used for developer tiles, why-invest
   points, location-guide points, resource links, etc. */
.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border: 1px solid #eee;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.info-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #202020;
    margin-bottom: 10px;
}
.info-card p {
    font-size: 15px;
    margin-bottom: 14px;
    flex-grow: 1;
}
.info-card .badge-pill {
    align-self: flex-start;
    margin-bottom: 12px;
}
.info-card .info-card-link {
    margin-top: auto;
    display: inline-block;
    color: var(--theme-main);
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    min-width: 0;
}
.info-card .info-card-link:hover { text-decoration: underline; }

/* Small status pill, e.g. "Profile Live", "RERA Approved" */
.badge-pill {
    display: inline-block;
    background: #F4F8FF;
    color: var(--theme-main2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}
.badge-pill.muted { background: #f0f0f0; color: #777; }

/* On the dark amenities/price-style background sections, cards need
   a lighter treatment so text stays readable */
.on-dark .info-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: none;
}
.on-dark .info-card h4,
.on-dark .info-card p { color: #ffffff; }
.on-dark .info-card p { opacity: .85; }

/* Stat blocks (numbers row) */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 10px;
}
@media (max-width: 767px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-grid .stat-item .stat-num {
    font-size: 34px;
    font-weight: 700;
    color: var(--theme-main);
    display: block;
    margin-bottom: 4px;
}
.stat-grid .stat-item .stat-label {
    font-size: 14px;
    color: #545454;
}
.on-dark .stat-grid .stat-item .stat-label { color: #e6e6e6; }

/* Full-width call-to-action band (used instead of forcing the
   2-column Developer_boxp grid into a 1-column CTA) */
.cta-band {
    background: var(--theme-main2);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band h2 span.fw-light { color: #ffffffcc; }
.cta-band p {
    color: #f1f1f1;
    max-width: 640px;
    margin: 0 auto 25px;
}
.cta-band .cta-meta {
    font-size: 15px;
    margin-bottom: 25px;
    color: #ffffffdd;
}
.cta-band .elementor-button {
    background: #fff;
    color: var(--theme-main2);
}
.cta-band .elementor-button:hover { background: #000; color: #fff; }

/* Simple testimonial card */
.testimonial-card {
    background: #F4F8FF;
    border-left: 4px solid var(--theme-main);
    border-radius: 8px;
    padding: 24px;
    height: 100%;
}
.testimonial-card p.quote {
    font-style: italic;
    color: #333;
    margin-bottom: 14px;
}
.testimonial-card p.author {
    margin: 0;
    font-weight: 600;
    color: var(--theme-main2);
    font-size: 14px;
}

/* Two-column developer summary strip (logo-style box + text) reused
   correctly with a fixed-width first column, unlike the single-use
   Developer_boxp grid */
.developer-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.developer-strip .dev-mark {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--theme-main2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
}
.developer-strip .dev-body { flex: 1; }
.developer-strip h4 { margin-bottom: 4px; }
.developer-strip p { margin-bottom: 8px; }

/* Section intro paragraph on light backgrounds (mirrors .max_para
   which is only styled for use on dark sections) */
.section-lead {
    font-size: 17px;
    font-weight: 300;
    color: #545454;
    margin: 10px auto 40px;
    max-width: 760px;
    text-align: center;
}

/* Simple two-column FAQ-style accordion spacing tweak so it matches
   card sections nicely on light backgrounds */
.faq_warpper.bg-cyan { background: #F4F8FF; }

/* Small utility classes the original stylesheet didn't define */
.text-end { text-align: right; }
.d-none { display: none; }
.mb-30 { margin-bottom: 30px; }

/* ================================================================
   PROFESSIONAL POLISH PASS
   ================================================================ */

/* Hero: dark gradient over the slider so headline text always
   reads clearly regardless of the photo underneath */
.bannerhomeSlider { position: relative; }
.bannerhomeSlider:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
    z-index: 1;
    pointer-events: none;
}
.banner_content { z-index: 2; }

/* Sticky header gets a subtle shadow + blur once scrolled (JS already
   toggles .fixed on scroll via custom.js) */
.header_warrper.fixed {
    background: rgba(255,255,255,.97) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,.08) !important;
}
.header_warrper.fixed .menuList ul li a { color: #202020 !important; }
.header_warrper.fixed .menuList ul li a:hover { color: var(--theme-main) !important; }
.header_warrper.fixed .logo_main span { color: #202020 !important; mix-blend-mode: normal !important; }

/* Icon accent circle at the top of info-cards for a premium feel */
.info-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F4F8FF;
    color: var(--theme-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.on-dark .info-card .card-icon { background: rgba(255,255,255,.12); color: #fff; }
.info-card { border-top: 3px solid transparent; }
.info-card:hover { border-top-color: var(--theme-main); }

/* Section eyebrow label above headings, e.g. "WHY INVEST" */
.section-eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    font-weight: 700;
    color: var(--theme-main);
    margin-bottom: 8px;
}
.on-dark-text .section-eyebrow,
.text-white + .section-eyebrow { color: #ffb35c; }

/* Buttons: small arrow motion on hover for a livelier feel */
a.elementor-button, button.elementor-button, button.pricebtn {
    letter-spacing: .01em;
    box-shadow: 0 6px 16px rgba(217,137,8,.25);
}
a.elementor-button.outline-btn, button.elementor-button.outline-btn { box-shadow: none; }
.cta-band .elementor-button { box-shadow: 0 6px 16px rgba(0,0,0,.2); }

/* Testimonial cards get a large quotation mark for polish */
.testimonial-card { position: relative; padding-top: 34px; }
.testimonial-card:before {
    content: "\201C";
    position: absolute;
    top: 2px;
    left: 18px;
    font-size: 46px;
    line-height: 1;
    color: var(--theme-main);
    font-family: Georgia, serif;
    opacity: .5;
}

/* Developer strip gets a touch more presence */
.developer-strip { transition: box-shadow .3s, transform .3s; }
.developer-strip:hover { box-shadow: 0 14px 30px rgba(0,0,0,.1); transform: translateY(-3px); }

/* CTA band: subtle gradient instead of flat colour */
.cta-band {
    background: linear-gradient(135deg, var(--theme-main2) 0%, #3d1035 100%);
}

/* Professional dark footer, replacing the flat grey footer background */
footer.footerwarp {
    background: #17151b;
    padding: 60px 0 0;
}
footer.footerwarp h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}
footer.footerwarp p,
footer.footerwarp p a {
    color: #b7b3bd !important;
    font-size: 14px;
    text-decoration: none;
}
footer.footerwarp p a:hover { color: #fff !important; }
footer.footerwarp .inner-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 30px;
    padding: 20px 0;
}
footer.footerwarp .inner-footer-bottom p { color: #7c7885 !important; font-size: 13px; }

/* Modal popup: slightly more refined card */
.modal_formPoup .contact_usWith {
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.modal_formPoup .heading-style-h4 { font-weight: 700; }

/* FAQ accordion items feel more like cards on light sections */
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 12px; border: 1px solid #eee !important; }
.faq_warpper.bg-cyan .faq-item { background: #fff; }

/* ================================================================
   ENQUIRE NOW SPLIT SECTION (image left / dark form right)
   Used near the bottom of every page instead of a plain CTA band,
   for a more professional, higher-converting layout.
   ================================================================ */
.enquire-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}
@media (max-width: 900px) {
    .enquire-split { grid-template-columns: 1fr; min-height: auto; }
}
.enquire-split-img {
    background-size: cover;
    background-position: center;
    min-height: 320px;
}
.enquire-split-form {
    background: linear-gradient(160deg, var(--theme-main2) 0%, #241026 100%);
    display: flex;
    align-items: center;
    padding: 50px 8%;
}
.enquire-split-form .esf-inner { width: 100%; max-width: 460px; margin: 0 auto; }
.enquire-split-form h2 { margin-bottom: 6px; }
.enquire-split-form .badge-pill { background: rgba(255,255,255,.15); color: #fff; margin-bottom: 14px; }
.enquire-split-form form { margin-top: 20px; }
.enquire-split-form .form-group { margin-bottom: 14px; }
.enquire-split-form .cta-meta { color: #d9d3db; font-size: 14px; margin: 18px 0 0; text-align: center; }
.enquire-split-form .send_btn.btn {
    background: var(--theme-main);
    font-weight: 600;
    padding: 13px;
}
.enquire-split-form .send_btn.btn:hover { background: #fff; color: var(--theme-main2); }

/* ================================================================
   STICKY SIDEBAR ENQUIRE TAB
   A permanently-visible tab on the edge of the screen that slides
   out a compact enquiry form -- an extra always-available lead path
   in addition to the popup and the inline Enquire Now sections.
   ================================================================ */
.sidebar-contact {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9998;
    display: flex;
    align-items: flex-start;
}
.sidebar-contact .sc-toggle {
    background: var(--theme-main);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    letter-spacing: .04em;
}
.sidebar-contact .sc-panel {
    width: 300px;
    max-width: 80vw;
    max-height: 80vh;
    overflow-y: auto;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
    border-radius: 10px 0 0 10px;
    padding: 22px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}
.sidebar-contact.open .sc-panel { transform: translateX(0); opacity: 1; }
.sidebar-contact .sc-panel h4 { margin-bottom: 4px; }
.sidebar-contact .sc-panel .sc-sub { font-size: 13px; color: #777; margin-bottom: 14px; }
.sidebar-contact .sc-panel .form-group { margin-bottom: 10px; }
@media (max-width: 767px) {
    .sidebar-contact { top: auto; bottom: 70px; }
}

