/** Forever Homes — Shree Buildcon layout + plum/gold theme */
/**
 * Pin for Life â€” green theme + Shree Buildcon layout (self-contained)
 */
:root {
    --pfl-ink: #2A1132;
    --pfl-green: #3F1D46;
    --pfl-forest: #2A1132;
    --pfl-accent: #B89768;
    --pfl-cream: #faf8fb;
    --pfl-base: #ffffff;
    --pfl-surface: #F4F4F4;
    --pfl-beige: #f0ebe3;
    --pfl-muted: #1a1a1a;
    --pfl-label: #9a7b5e;
    --pfl-border: #e8e4d4;
    --pfl-error: #ff003d;

    --header-top: 32px;
    --header-inner-h: 44px;
    --header-height: calc(var(--header-top) + var(--header-inner-h));
    --max: max(0px, calc((100vw - 2426px) / 2));
    --side-gap: clamp(16px, max(2.7vw, var(--max)), max(64px, var(--max)));
    --gutter: 40px;
    --burger-w: clamp(40px, 2.7vw, 64px);
    /* Aliases used across components */
    --c-black: var(--pfl-ink);
    --c-primary: var(--pfl-green);
    --c-accent: var(--pfl-accent);
    --c-ciel: var(--pfl-beige);
    --c-light-ciel: var(--pfl-cream);
    --c-extra-light-ciel: var(--pfl-base);
    --c-brown: var(--pfl-muted);
    --c-gblue: var(--pfl-label);
    --c-border: var(--pfl-border);
    --font: "Inter", system-ui, sans-serif;
    --font-wide: "Montserrat", system-ui, sans-serif;
}

/* â€”â€”â€” Site base (scoped) â€”â€”â€” */
.fh-shree {
    font-family: var(--font);
    background-color: var(--c-extra-light-ciel);
    color: var(--c-black);
}

.fh-shree .page-curtain {
    background-color: var(--c-extra-light-ciel);
}

.fh-shree .font-serif,
.fh-shree .nav-brand-text__main,
.fh-shree .pin-for-life-hero-title,
.fh-shree h1,
.fh-shree h2,
.fh-shree h3 {
    font-family: var(--font-wide);
}

.fh-shree .selection\:bg-brand-primary::selection,
.fh-shree ::selection {
    background-color: var(--c-accent);
    color: var(--c-black);
}

/* Tailwind brand token overrides */
.fh-shree .bg-brand-primary { background-color: var(--c-black) !important; }
.fh-shree .bg-brand-primaryDeep,
.fh-shree .bg-brand-primaryDark,
.fh-shree .bg-brand-forest,
.fh-shree .hover\:bg-brand-primaryDeep:hover,
.fh-shree .hover\:bg-brand-primary:hover { background-color: var(--c-black) !important; }
.fh-shree .text-brand-primary,
.fh-shree .hover\:text-brand-primary:hover { color: var(--c-black) !important; }
.fh-shree .text-brand-primaryDeep,
.fh-shree .hover\:text-brand-primaryDeep:hover { color: var(--c-brown) !important; }

/* Form submit buttons — keep label visible on hover/disabled (theme overrides) */
.fh-shree .inq-submit-btn,
.fh-shree .contact-form button[type="submit"],
.fh-shree #modal-panel button[type="submit"],
.fh-shree #download-form button[type="submit"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}
.fh-shree .inq-submit-btn:hover:not(:disabled),
.fh-shree .contact-form button[type="submit"]:hover:not(:disabled),
.fh-shree #modal-panel button[type="submit"]:hover:not(:disabled),
.fh-shree #download-form button[type="submit"]:hover:not(:disabled) {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}
.fh-shree .inq-submit-btn:disabled,
.fh-shree .contact-form button[type="submit"]:disabled,
.fh-shree #modal-panel button[type="submit"]:disabled,
.fh-shree #download-form button[type="submit"]:disabled {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}
.fh-shree .bg-brand-accent,
.fh-shree .text-brand-accent { color: var(--c-gblue); }
.fh-shree .bg-brand-accent { background-color: var(--c-accent) !important; }
.fh-shree .text-brand-accent { color: var(--c-gblue) !important; }
.fh-shree .border-brand-primary { border-color: var(--c-black) !important; }
.fh-shree .border-brand-accent { border-color: var(--c-accent) !important; }
.fh-shree .bg-brand-creamBg,
.fh-shree .bg-white { background-color: #fff; }
.fh-shree .bg-brand-cream,
.fh-shree .bg-brand-greyLight { background-color: var(--c-light-ciel) !important; }
.fh-shree .bg-brand-charcoal,
.fh-shree #footer { background-color: var(--c-black) !important; }
.fh-shree .text-brand-charcoal { color: var(--c-black) !important; }
.fh-shree .text-brand-cream,
.fh-shree .text-brand-beige { color: var(--c-light-ciel) !important; }
.fh-shree .border-brand-greyBorder { border-color: var(--c-border) !important; }
.fh-shree .ring-brand-accent,
.fh-shree .focus\:ring-brand-accent\/35:focus { --tw-ring-color: rgba(184, 151, 104, 0.45); }
.fh-shree .focus\:border-brand-accent:focus { border-color: var(--c-accent) !important; }

/* â€”â€”â€” Header (Shree Buildcon) â€”â€”â€” */
.pfl-header-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: #fff;
    z-index: 120;
    transform-origin: top left;
    transition: box-shadow 0.4s ease, background 0.4s ease;
}

#navbar.nav-scrolled .pfl-header-bg,
#navbar.pfl-header--hero .pfl-header-bg {
    box-shadow: 0 4px 24px rgba(63, 29, 70, 0.08);
}

#navbar.pfl-header--hero .pfl-header-bg {
    background: transparent;
    box-shadow: none;
}

.pfl-logo {
    position: fixed;
    top: var(--header-top);
    left: var(--side-gap);
    z-index: 480;
    height: var(--header-inner-h);
    max-width: min(240px, 58vw);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.pfl-logo__brand {
    display: block;
    font-family: var(--font-wide);
    font-size: clamp(0.78rem, 2.8vw, 0.95rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pfl-ink);
    white-space: nowrap;
    transition: color 0.35s ease;
}

/* Light hero â€” dark chrome (readable on cream background) */
#navbar.pfl-header--hero .pfl-logo__brand {
    color: var(--pfl-ink);
    text-shadow: 0 1px 12px rgba(255, 250, 247, 0.85);
}

#navbar.nav-scrolled .pfl-logo__brand {
    color: var(--pfl-ink);
}

.pfl-burger {
    position: fixed;
    top: var(--header-top);
    right: var(--side-gap);
    width: var(--burger-w);
    height: var(--header-inner-h);
    z-index: 700;
    margin-top: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--c-black);
    -webkit-tap-highlight-color: transparent;
}

#navbar.pfl-header--hero .pfl-burger {
    color: var(--pfl-ink);
}

body.pfl-menu-open .pfl-burger {
    z-index: 10050;
    color: var(--pfl-ink) !important;
}

body.pfl-menu-open .pfl-logo__brand {
    color: var(--pfl-ink) !important;
}

.pfl-burger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.3px;
    top: 50%;
    background: currentColor;
    overflow: hidden;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.pfl-burger__line--top {
    transform: translateY(calc(-50% - 4px));
}

.pfl-burger__line--bottom {
    transform: translateY(calc(-50% + 4px));
}

.pfl-burger.is-open .pfl-burger__line--top {
    transform: translateY(-50%) rotate(45deg);
}

.pfl-burger.is-open .pfl-burger__line--bottom {
    transform: translateY(-50%) rotate(-45deg);
}

.pfl-header-right {
    position: fixed;
    top: var(--header-top);
    right: calc(var(--side-gap) + var(--burger-w) + var(--gutter));
    z-index: 200;
    height: var(--header-inner-h);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-wide);
    font-size: clamp(0.65rem, 1.1vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.pfl-header-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--font-wide);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--c-black);
    border: 1px solid var(--c-black);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

#navbar.pfl-header--hero .pfl-header-enquire {
    background: #fff;
    color: var(--c-black);
    border-color: rgba(255, 255, 255, 0.35);
}

.pfl-header-enquire:hover {
    transform: translateY(-2px);
    background: var(--c-primary);
    border-color: var(--c-primary);
}

.pfl-header-link {
    color: var(--c-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: color 0.3s ease;
}

#navbar.pfl-header--hero .pfl-header-link {
    color: var(--pfl-ink);
}

.pfl-header-link:hover {
    color: var(--c-gblue);
}

.pfl-header-link__dot {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: currentColor;
}

@media (max-width: 767px) {
    .pfl-header-link--corp {
        display: none;
    }
}

/* â€”â€”â€” Full-screen burger menu â€”â€”â€” */
.pfl-menu-bg {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: var(--pfl-surface);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.pfl-menu-bg.is-open {
    opacity: 1;
    visibility: visible;
}

.pfl-menu {
    position: fixed;
    inset: 0;
    z-index: 910;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--header-height) var(--side-gap) 2.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.pfl-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pfl-menu__nav {
    font-family: var(--font-wide);
    font-size: clamp(2.5rem, 10vw, 5rem);
    line-height: 1.05;
    text-transform: uppercase;
    list-style: none;
    margin: 0 0 3rem;
    padding: 0;
}

.pfl-menu__nav li {
    margin-bottom: 0.2em;
}

.pfl-menu__nav a {
    color: var(--c-black);
    text-decoration: none;
    transition: color 0.25s ease;
}

.pfl-menu__nav a:hover {
    color: #fff;
}

.pfl-menu__aside {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .pfl-menu {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: var(--gutter);
    }
    .pfl-menu__nav {
        flex: 1 1 50%;
        margin-bottom: 4rem;
    }
    .pfl-menu__aside {
        flex: 1 1 280px;
    }
}

.pfl-menu__label {
    font-family: var(--font-wide);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-gblue);
    margin-bottom: 0.75rem;
}

.pfl-menu__text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.35;
    margin-bottom: 1rem;
    max-width: 17em;
}

.pfl-arrow-link {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-wide);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-black);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.pfl-arrow-link:hover {
    color: var(--c-brown);
}

.pfl-arrow-link svg {
    width: 0.85rem;
    transition: transform 0.3s ease;
}

.pfl-arrow-link:hover svg {
    transform: translateX(4px);
}

.pfl-menu__social a {
    display: block;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--c-black);
    text-decoration: none;
    margin-bottom: 0.35rem;
}

.pfl-menu__social a:hover {
    text-decoration: underline;
}

.pfl-menu__copy {
    width: 100%;
    margin-top: auto;
    padding-top: 2rem;
    font-family: var(--font-wide);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-brown);
}

body.pfl-menu-open {
    overflow: hidden;
}

#navbar.navbar-scroll-hidden .pfl-header-bg,
#navbar.navbar-scroll-hidden .pfl-logo,
#navbar.navbar-scroll-hidden .pfl-burger,
#navbar.navbar-scroll-hidden .pfl-header-right {
    transform: translateY(calc(-1 * var(--header-height) - 16px));
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide legacy nav chrome */
.fh-shree #navbar > .relative.w-full {
    display: none !important;
}

/* â€”â€”â€” Hero (light Shree background) â€”â€”â€” */
.fh-shree .section_hero_video {
    background: var(--c-extra-light-ciel);
    min-height: 100svh;
    min-height: 100dvh;
}

.fh-shree .section_hero_video::before {
    background: linear-gradient(
        180deg,
        rgba(255, 250, 247, 0.55) 0%,
        transparent 38%,
        transparent 62%,
        rgba(255, 250, 231, 0.96) 100%
    );
    z-index: 2;
}

.fh-shree .hero-text-bg__word {
    color: rgba(63, 29, 70, 0.05);
}

.fh-shree .hero-chips__list {
    font-family: var(--font-wide);
    color: var(--c-gblue);
}

.fh-shree .hero-chip {
    color: var(--pfl-ink);
}

.fh-shree .pin-for-life-hero-title,
.fh-shree .section_hero_video .hero_heading-wrap--pin-for-life .pin-for-life-hero-title.heading-h1 {
    color: var(--c-black);
    font-family: var(--font-wide);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.fh-shree .hero-pre-rera-badge {
    color: var(--c-gblue);
    background: none;
    border: none;
    font-family: var(--font-wide);
}

.fh-shree .hero-title-accent {
    background: linear-gradient(90deg, var(--c-black) 0%, var(--c-accent) 100%);
}

.fh-shree .pin-for-life-hero-tagline,
.fh-shree .section_hero_video [data-hero-desc],
.fh-shree .section_hero_video .hero_heading-wrap--pin-for-life > p {
    color: var(--c-brown);
    font-family: var(--font);
}

.fh-shree .hero-cta-mobile {
    background: var(--c-black);
    color: #fff;
    border-color: var(--c-black);
    font-family: var(--font-wide);
}

.fh-shree .hero-cta-mobile:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
}

.fh-shree .hero-scroll-hint {
    color: var(--c-gblue);
    font-family: var(--font-wide);
}

/* Section rhythm */
.fh-shree .grid-p-section {
    padding-left: var(--side-gap);
    padding-right: var(--side-gap);
}

.fh-shree #about {
    background: #fff;
}

.fh-shree #amenities {
    background: var(--c-black);
}

.fh-shree #gallery {
    background: var(--c-black);
}

/* Section headings â€” corporate uppercase */
.fh-shree .font-serif.text-4xl,
.fh-shree .font-serif.text-5xl,
.fh-shree h2.font-serif {
    font-family: var(--font-wide) !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.fh-shree .text-brand-primary.font-semibold.tracking-\[0\.2em\] {
    font-family: var(--font-wide);
    color: var(--pfl-green) !important;
}

/* CTA strip before footer */
.fh-shree .pin-for-life-amenity-card {
    background: linear-gradient(180deg, #fff 0%, var(--c-light-ciel) 100%);
    border-color: var(--c-border);
}

.fh-shree .pin-for-life-amenity-card:hover {
    border-color: var(--c-accent);
}

.fh-shree .modal-backdrop-pin-for-life {
    background: rgba(63, 29, 70, 0.72);
}

.fh-shree .pin-for-life-modal-forest {
    background-color: var(--c-black);
}

/* â€”â€”â€” Global Tailwind utility grading â€”â€”â€” */
.fh-shree .bg-brand-cream\/40,
.fh-shree .border-brand-cream\/40,
.fh-shree .border-brand-cream\/70 {
    border-color: rgba(214, 214, 215, 0.7) !important;
}

.fh-shree .bg-brand-cream\/40 {
    background-color: rgba(255, 250, 231, 0.7) !important;
}

.fh-shree .text-brand-charcoal\/80,
.fh-shree .text-brand-charcoal\/70,
.fh-shree .text-brand-charcoal\/60 {
    color: var(--c-brown) !important;
}

.fh-shree .hover\:text-brand-accent:hover,
.fh-shree .text-brand-accent {
    color: var(--c-accent) !important;
}

.fh-shree .text-brand-beige,
.fh-shree .text-brand-beige\/90,
.fh-shree .text-brand-beige\/80,
.fh-shree .text-brand-beige\/70,
.fh-shree .text-brand-beige\/60,
.fh-shree .text-brand-beige\/95 {
    color: var(--c-light-ciel) !important;
}

.fh-shree .bg-brand-primary\/10 {
    background-color: rgba(63, 29, 70, 0.1) !important;
}

.fh-shree .ring-brand-primary,
.fh-shree .focus\:ring-brand-primary:focus {
    --tw-ring-color: rgba(63, 29, 70, 0.25) !important;
}

.fh-shree .focus\:border-brand-primary:focus,
.fh-shree .focus\:border-transparent:focus {
    border-color: var(--c-accent) !important;
}

.fh-shree section.bg-white {
    background-color: #fff !important;
}

.fh-shree #specifications,
.fh-shree #layout,
.fh-shree #brochure,
.fh-shree #contact {
    background-color: var(--c-extra-light-ciel);
}

/* Floating actions (main site) */
.btn-whatsapp-pulse {
    background: #25d366;
    color: #fff;
    position: fixed;
    bottom: 30px;
    right: 24px;
    font-size: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    text-decoration: none;
    border-radius: 50%;
    animation: pfl-pulse 1.5s ease-out infinite;
    z-index: 99999;
}

.btn-call {
    background: #f00;
    border: 2px solid #f00;
    border-radius: 50%;
    box-shadow: 0 8px 10px rgba(255, 0, 0, 0.35);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 24px;
    bottom: 110px;
    z-index: 99999;
    text-decoration: none;
    animation: pfl-hover-wave 1s linear infinite;
}

.btn-call i {
    color: #fff;
    font-size: 24px;
}

@keyframes pfl-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    80% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

@keyframes pfl-hover-wave {
    0% { box-shadow: 0 8px 10px rgba(255, 0, 0, 0.3), 0 0 0 0 rgba(255, 0, 0, 0.2); }
    40% { box-shadow: 0 8px 10px rgba(255, 0, 0, 0.3), 0 0 0 15px rgba(255, 0, 0, 0.15); }
    80% { box-shadow: 0 8px 10px rgba(255, 0, 0, 0.3), 0 0 0 26px rgba(255, 0, 0, 0); }
}

@media (max-width: 767px) {
    .btn-call {
        height: 40px;
        width: 40px;
        bottom: 94px;
    }
    .btn-call i { font-size: 16px; }
    .btn-whatsapp-pulse {
        font-size: 26px;
        bottom: 37px;
        padding: 20px;
    }
}

.fh-shree .bg-brand-plum { background-color: #3F1D46 !important; }
.fh-shree .bg-brand-plumDark { background-color: #2A1132 !important; }
.fh-shree .text-brand-plum { color: #3F1D46 !important; }
.fh-shree .text-brand-gold { color: #B89768 !important; }
.fh-shree .bg-brand-gold { background-color: #B89768 !important; }
.fh-shree .border-brand-plum { border-color: #3F1D46 !important; }
.fh-shree .hover\:bg-brand-plum:hover { background-color: #3F1D46 !important; }
.fh-shree .hover\:text-brand-plum:hover { color: #3F1D46 !important; }
.fh-shree .hover\:text-brand-gold:hover { color: #B89768 !important; }
.fh-shree .hover\:border-brand-plum:hover { border-color: #3F1D46 !important; }
.fh-shree .from-brand-plum { --tw-gradient-from: #3F1D46 var(--tw-gradient-from-position); }
.fh-shree .via-brand-plum { --tw-gradient-via: #3F1D46 var(--tw-gradient-via-position); }
.fh-shree .to-brand-plumDark { --tw-gradient-to: #2A1132 var(--tw-gradient-to-position); }
.fh-shree #gallery { background: linear-gradient(180deg, #3F1D46 0%, #2A1132 100%) !important; }
.fh-shree #amenities { background-color: #2A1132 !important; }
