/* Munnuru Kapu Foundation - Light Theme */

:root {
    --black: #1a1a1a;
    --red: #e00000;
    --red-dark: #b80000;
    --green: #008000;
    --green-light: #e8f5e9;
    --lime: #b8c800;
    --gold: #c99700;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-alt: #f4f7f4;
    --footer-bg: #0a0a0a;
    --footer-border: #1f1f1f;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --border: #dde5dd;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --section-py: 6rem;
    --section-py-mobile: 4rem;
    --container-px: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.text-accent {
    color: var(--red) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.container {
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

/* ---- Navigation ---- */
#mainNav {
    background: transparent;
    padding: 0.85rem 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--green);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text) !important;
    text-decoration: none;
}

.navbar-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    max-width: 160px;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem .6rem !important;
    transition: color 0.25s;
    opacity: 0.85;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red) !important;
    opacity: 1;
}

.btn-nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.45rem 1.25rem !important;
    font-weight: 700 !important;
    margin-left: 0.5rem;
    opacity: 1 !important;
}

.btn-nav-cta:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
}

.navbar-toggler {
    border-color: var(--green);
    padding: 0.4rem 0.65rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(224, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Hero ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--bg-alt);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.55) 32%,
            rgba(255, 255, 255, 0.2) 58%,
            rgba(255, 255, 255, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-eyebrow {
    margin-bottom: 1rem;
    color: var(--green) !important;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.hero-lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 660px;
    margin-bottom: 2rem;
    line-height: 1.75;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ---- Site Sections ---- */
.site-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.site-section-alt {
    background: var(--bg-alt);
}

.site-section-cta {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--bg-alt) 100%);
    border-top: 3px solid var(--red);
}

.section-header {
    max-width: 980px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-heading {
    color: var(--text);
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.content-block {
    padding: 0.5rem 0;
}

.content-title {
    color: var(--green);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* ---- Lists ---- */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.4rem;
    font-size: 0.975rem;
    line-height: 1.65;
    color: var(--text);
}

.custom-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 1.2rem;
    line-height: 1.3;
}

.compact-list li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    font-size: 0.9rem;
}

/* ---- Images ---- */
.img-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.img-frame img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* ---- Facilities ---- */
.facilities-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.facility-item {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: border-color 0.3s, box-shadow 0.3s;
    height: 100%;
}

.facility-item:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}

.facility-item i {
    font-size: 1.5rem;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.facility-item h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
    margin-top: 10px;
}

.facility-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---- Donation Cards ---- */
.donation-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.donation-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
}

.donation-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, #fffef5 0%, var(--white) 100%);
}

.donation-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.donation-tier {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.donation-amount {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--red);
    white-space: nowrap;
}

.donation-card-img {
    margin-top: auto;
    padding-top: 1.25rem;
    border-radius: 10px;
    overflow: hidden;
}

.donation-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.legacy-benefits {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legacy-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legacy-item i {
    color: var(--green);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---- Donor Books ---- */
.donor-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
}

.donor-books-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--red);
    border: 1px solid var(--border);
    border-top: 4px solid var(--red);
}

.books-title {
    color: var(--text);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.books-subtitle {
    color: var(--green);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.book-item {
    padding: 1.25rem 0.5rem;
    border-radius: 10px;
    text-align: center;
}

.book-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.book-tier {
    display: block;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.book-amount {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
}

.book-platinum {
    background: #fce4ec;
    color: var(--red);
}

.book-platinum .book-icon {
    color: var(--red);
}

.book-diamond {
    background: #e8f5e9;
    color: var(--green);
}

.book-diamond .book-icon {
    color: var(--green);
}

.book-golden {
    background: #fffde7;
    color: #b8860b;
}

.book-golden .book-icon {
    color: var(--gold);
}

.book-silver {
    background: #f5f5f5;
    color: #555;
}

.book-silver .book-icon {
    color: #888;
}

.books-tagline {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.875rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* ---- Financial Summary ---- */
.slots-list li strong {
    color: var(--red);
}

.slots-summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.stat-row strong {
    color: var(--red);
    font-weight: 700;
}

.stat-row-total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
}

.stat-row-total span {
    color: var(--text);
    font-weight: 800;
}

.stat-row-total strong {
    color: var(--red);
    font-size: 1.25rem;
}

.cost-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.cost-text strong {
    color: var(--green);
}

.summary-table-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
    border: 1px solid var(--border);
    border-top: 4px solid var(--green);
}

.summary-table {
    color: var(--text);
    font-size: 0.875rem;
}

.summary-table thead th {
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    border: none;
    padding: 0.85rem 1rem;
    font-size: 0.8rem;
}

.summary-table tbody td {
    padding: 0.75rem 1rem;
    border-color: var(--border);
    vertical-align: middle;
}

.summary-totals {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.summary-stat {
    flex: 1;
    min-width: 120px;
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border);
}

.summary-stat-main {
    background: var(--red);
    border-color: var(--red);
}

.summary-stat-main .sc-label {
    color: rgba(255, 255, 255, 0.85);
}

.summary-stat-main .sc-value {
    color: var(--white);
}

.sc-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.sc-value, .sc-value2  {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}

/* ---- Vision ---- */
.vision-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
}

.vision-highlight {
    color: var(--red);
    font-weight: 700;
}

/* ---- Buttons ---- */
.btn-yellow {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.25s;
    font-size: 0.9rem;
}

.btn-yellow:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 0, 0, 0.25);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-width: 2px;
    border-color: var(--green);
    color: var(--green);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ---- Footer ---- */
.footer-section {
    background: var(--footer-bg);
    border-top: 4px solid var(--red);
}

.footer-logo {
    width: 90px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-brand {
    color: var(--red);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-heading {
    color: var(--lime);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: var(--red);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(224, 0, 0, 0.2);
    color: var(--white);
}

.footer-hr {
    border-color: var(--footer-border);
    margin: 0;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    padding-top: 1.5rem;
}

/* ---- Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (min-width: 1200px) {
    :root {
        --container-px: 2rem;
    }
}

@media (max-width: 991px) {
    :root {
        --section-py: 4.5rem;
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-card {
        padding: 1.5rem;
    }

    .brand-text {
        font-size: 0.85rem;
        max-width: 140px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-py: var(--section-py-mobile);
        --container-px: 1.25rem;
    }

    .navbar-logo {
        height: 44px;
    }

    .brand-text {
        display: none;
    }

    .hero-logo {
        width: 110px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .btn-nav-cta {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        display: inline-block;
    }

    .summary-totals {
        flex-direction: column;
    }

    .summary-stat {
        min-width: 100%;
    }

    .floor-plan-card {
        flex: 0 0 min(300px, 82vw);
        width: min(300px, 82vw);
    }
}

@media (max-width: 575px) {
    .donation-card-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .books-grid {
        grid-template-columns: 1fr 1fr;
    }

    .founder-amount {
        font-size: 1.75rem;
    }
}

/* ---- Membership ---- */
.founder-club-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-light) 100%);
    border: 2px solid var(--green);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.founder-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.founder-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.founder-desc strong {
    color: var(--green);
}

.founder-eligible {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.founder-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    margin: 0;
}

.membership-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #ccc;
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.membership-silver {
    border-top-color: #90a4ae;
}

.membership-golden {
    border-top-color: var(--gold);
}

.membership-diamond {
    border-top-color: var(--green);
}

.membership-platinum {
    border-top-color: var(--red);
}

.featured-membership {
    background: linear-gradient(180deg, #fff8f8 0%, var(--white) 100%);
}

.membership-card-top {
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.membership-card-top i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.membership-silver .membership-card-top i {
    color: #90a4ae;
}

.membership-golden .membership-card-top i {
    color: var(--gold);
}

.membership-diamond .membership-card-top i {
    color: var(--green);
}

.membership-platinum .membership-card-top i {
    color: var(--red);
}

.membership-card-top h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.membership-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--red);
}

.membership-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.membership-list li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.membership-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 0.8rem;
}

.membership-cta {
    display: block;
    text-align: center;
    padding: 0.65rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    background: var(--green);
    transition: background 0.25s;
}

.membership-cta:hover {
    background: #006600;
    color: var(--white);
}

.membership-platinum .membership-cta {
    background: var(--red);
}

.membership-platinum .membership-cta:hover {
    background: var(--red-dark);
}

.perk-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    height: 100%;
    box-shadow: var(--shadow);
}

.perk-item i {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.perk-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.perk-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ---- Floor Plans ---- */
.floor-plan-scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-alt);
    padding-bottom: 0.75rem;
    margin: 0 calc(var(--container-px) * -1);
}

.floor-plan-scroll-wrap::-webkit-scrollbar {
    height: 8px;
}

.floor-plan-scroll-wrap::-webkit-scrollbar-track {
    background: var(--bg-alt);
    border-radius: 4px;
}

.floor-plan-scroll-wrap::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.floor-plan-scroll {
    display: flex;
    gap: 1.25rem;
    padding: 0.5rem var(--container-px) 1rem;
    width: max-content;
}

.floor-plan-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    flex: 0 0 320px;
    width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floor-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.floor-plan-preview {
    position: relative;
    height: 220px;
    background: #f0f0f0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.floor-plan-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.floor-plan-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.floor-plan-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.floor-plan-meta i {
    font-size: 1.25rem;
    color: var(--gold);
}

.floor-plan-meta h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.floor-plan-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.floor-plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
    padding: 0.55rem 1.25rem;
    background: var(--gold);
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
}

.floor-plan-btn i {
    color: var(--red);
    font-size: 1rem;
}

.floor-plan-btn:hover {
    background: #e6b800;
    color: var(--text);
    transform: translateY(-1px);
}

/* ---- Print / PDF ---- */
@media print {

    *,
    *::before,
    *::after {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    html,
    body {
        background: var(--bg) !important;
        font-size: 11pt;
    }

    #mainNav,
    .scroll-indicator,
    .hero-actions,
    .btn-nav-cta,
    .membership-cta,
    #contactForm,
    .navbar-toggler {
        display: none !important;
    }

    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-section {
        min-height: auto !important;
        padding: 2rem 0 !important;
        page-break-after: always;
    }

    .hero-overlay {
        background: linear-gradient(to right,
                rgba(255, 255, 255, 0.88) 0%,
                rgba(255, 255, 255, 0.55) 32%,
                rgba(255, 255, 255, 0.2) 58%,
                rgba(255, 255, 255, 0.05) 100%) !important;
    }

    .site-section,
    .site-section-alt,
    .site-section-cta {
        padding: 2rem 0 !important;
        page-break-inside: avoid;
    }

    .site-section {
        background: var(--bg) !important;
    }

    .site-section-alt {
        background: var(--bg-alt) !important;
    }

    .site-section-cta {
        background: linear-gradient(135deg, var(--green-light) 0%, var(--bg-alt) 100%) !important;
        border-top: 3px solid var(--red) !important;
    }

    .footer-section {
        background: var(--footer-bg) !important;
        border-top: 4px solid var(--red) !important;
        page-break-inside: avoid;
    }

    .footer-text,
    .footer-links a,
    .footer-copy {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .footer-heading {
        color: var(--lime) !important;
    }

    .footer-brand {
        color: var(--red) !important;
    }

    .donation-card,
    .facility-item,
    .membership-card,
    .donor-books-card,
    .summary-table-card,
    .founder-club-card,
    .perk-item,
    .img-frame {
        box-shadow: none !important;
        border: 1px solid var(--border) !important;
        page-break-inside: avoid;
    }

    .donation-card.featured,
    .featured-membership {
        background: #fffef5 !important;
        border-color: var(--gold) !important;
    }

    .founder-club-card {
        background: linear-gradient(135deg, var(--white) 0%, var(--green-light) 100%) !important;
        border: 2px solid var(--green) !important;
    }

    .founder-badge {
        background: var(--red) !important;
        color: var(--white) !important;
    }

    .summary-table thead th {
        background: var(--green) !important;
        color: var(--white) !important;
    }

    .summary-stat-main {
        background: var(--red) !important;
        border-color: var(--red) !important;
    }

    .summary-stat-main .sc-value {
        color: var(--white) !important;
    }

    .btn-yellow {
        background: var(--red) !important;
        color: var(--white) !important;
    }

    .book-platinum {
        background: #fce4ec !important;
    }

    .book-diamond {
        background: #e8f5e9 !important;
    }

    .book-golden {
        background: #fffde7 !important;
    }

    .book-silver {
        background: #f5f5f5 !important;
    }

    .row {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    [class*="col-"] {
        flex-shrink: 0;
    }

    a[href]::after {
        content: none !important;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}




/* Responsive */
@media(max-width:1399px) {
    .nav-link {
        padding: 0.5rem .4rem !important;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.4rem);
    }
}


/* Inside Banner */
.page-banner {
    padding: 90px 0 70px;
    background: url("../assets/images/about-banner.jpg") center center/cover no-repeat;
    position: relative;
    padding-top: 9em;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.breadcrumb {
    background: none;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ddd;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}


.page-banner.contact-page {
    background: url(../assets/images/contact-banner.jpg) center center / cover no-repeat;
    background-position: bottom;
}

.about-section {
    background: #fff;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}

.about-section img {
    border-radius: 15px;
}

.mission-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    height: 100%;
    transition: .3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #e00000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}

.section-heading {
    font-size: 34px;
    font-weight: 700;
}

.objective-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    height: 100%;
    transition: .3s;
}

.objective-box:hover {
    transform: translateY(-5px);
}

.objective-box i {
    font-size: 34px;
    color: #008000;
    margin-bottom: 15px;
}

.objective-box h4 {
    font-size: 20px;
    font-weight: 600;
}

.objective-box p {
    font-size: 15px;
    color: #666;
}


.counter-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.counter-box h2 {
    font-size: 36px;
    color: #e00000;
    font-weight: 700;
}

.counter-box p {
    margin: 0;
    color: #666;
}

.cta-box {
    background: #e00000;
    color: #fff;
    padding: 60px 30px;
    text-align: center;
    border-radius: 15px;
}

.cta-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-box .btn {
    background: #fff;
    color: #e00000;
    border: none;
    font-weight: 600;
}

.cta-box .btn:hover {
    background: #f1f1f1;
}

/* Contact */
.contact-section {
    background: #fff;
}

.contact-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 25px;

}

.contact-box i {

    width: 55px;

    height: 55px;

    background: #e00000;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 20px;

    flex-shrink: 0;

}

.contact-box h5 {

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 5px;

}

.contact-box p {

    margin: 0;

    font-size: 15px;

    color: #666;

    line-height: 26px;

}

.contact-box p a {

    color: #666;
    text-decoration: none;

}

.contact-box p a:hover {

    color: var(--red);

}

.contact-form-box {

    background: #fff;

    padding: 35px;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);

}

.contact-form-box .form-control {

    height: 50px;

    border-radius: 10px;

    font-size: 15px;

}

.contact-form-box textarea {

    height: auto !important;

}

.contact-form-box .form-control:focus {

    border-color: #e00000;

    box-shadow: none;

}

.contact-form-box .btn {

    height: 48px;

    font-size: 15px;

    font-weight: 600;

}

.map-box {

    overflow: hidden;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);

}

.map-box iframe {

    width: 100%;

    height: 450px;

    border: 0;

}

@media(max-width:768px) {

    .contact-form-box {

        padding: 25px;

    }

    .map-box iframe {

        height: 300px;

    }

}

a.nav-link.btn-nav-cta {
    padding: 10px 20px !important;
    margin: 0;
    font-size: 12px;
}

/*==============================
 Impact Counter
==============================*/

.impact-counter {
    padding: 70px 0;
    background: #fff;
}

.counter-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 22px 15px;
    text-align: center;
    transition: .3s;
    height: 100%;
}

.counter-box:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.counter-box i {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    background: #e000000f;
    color: var(--red);
    font-size: 22px;
    margin-bottom: 15px;
}

.counter-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.counter-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.highlight-box {
    background: var(--red);
    border: none;
}

.highlight-box i {
    background: rgb(255 255 255 / 25%);
    color: #fff;
}

.highlight-box h3,
.highlight-box p {
    color: #fff;
}

@media(max-width:991px) {

    .counter-box {
        padding: 18px 12px;
    }

    .counter-box h3 {
        font-size: 22px;
    }

}

@media(max-width:576px) {

    .counter-box {
        padding: 18px 10px;
    }

    .counter-box i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }

    .counter-box h3 {
        font-size: 20px;
    }

    .counter-box p {
        font-size: 13px;
    }

}

/* Floating Support */

.support-widget {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
}

.support-toggle {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    transition: .3s;
}

.support-toggle:hover {
    transform: scale(1.08);
}

.support-box {
    position: absolute;
    right: 0;
    bottom: 75px;
    width: 290px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    overflow: hidden;
    display: none;
}

.support-header {
    background: var(--red);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.support-header span {
    cursor: pointer;
    font-size: 24px;
}

.support-box p {
    padding: 15px 20px 5px;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: #333;
    text-decoration: none;
    border-top: 1px solid #eee;
    transition: .3s;
    font-size: 14px;
}

.support-link i {
    width: 22px;
    text-align: center;
    font-size: 18px;
}

.support-link:hover {
    background: #f8f8f8;
    color: var(--red);
}

.whatsapp i {
    color: #25D366;
}

.phone i {
    color: #007bff;
}

.email i {
    color: #dc3545;
}

.enquiry i {
    color: var(--red);
}

@media(max-width:576px) {

    .support-widget {
        right: 15px;
        bottom: 15px;
    }

    .support-box {
        width: 270px;
    }

    .support-toggle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

}


/*==============================
 Membership Hero
==============================*/

.membership-hero {
    position: relative;
    background: url('../assets/images/membership-banner.jpg') center center/cover no-repeat;
    padding: 130px 0 90px;
    overflow: hidden;
}

.membership-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.membership-hero .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    padding: 6px 18px;
    background: #f3f3f326;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.membership-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media(max-width:991px) {

    .membership-hero {
        padding: 100px 0 70px;
    }

    .membership-hero h1 {
        font-size: 38px;
    }

}

@media(max-width:576px) {

    .membership-hero {
        padding: 80px 0 60px;
    }

    .membership-hero h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

}

.member-intro {
    background: #fff;
}

.member-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.section-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.section-title span {
    font-weight: 300;
}

.section-text {
    color: #666;
    font-size: 15px;
    line-height: 28px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}

.benefit-item i {
    color: #198754;
    margin-right: 10px;
    font-size: 18px;
}

.btn-maroon {
    background: var(--red);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
}

.btn-maroon:hover {
    background: #6e0000;
    color: #fff;
}

/* Membership Plans */

.membership-plans {
    background: #fafafa;
}

.plan-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #ececec;
    transition: .35s;
    position: relative;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    border-color: var(--red);
}

.plan-img img {
    height: 130px;
    object-fit: contain;
    margin-bottom: 20px;
}

.plan-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.price {
    font-size: 30px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.plan-card ul li {
    padding: 8px 0;
    font-size: 14px;
}

.plan-card ul li i {
    color: #198754;
    margin-right: 8px;
}

.apply-btn {
    display: inline-block;
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.apply-btn:hover {
    background: #650000;
    color: #fff;
}

.plan-badge {
    position: absolute;
    top: 18px;
    right: -10px;
    background: #f4b400;
    color: #fff;
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.gold {
    border: 2px solid #f4b400;
}

/* Founder Section */

.founder-section {
    background: #fff;
}

.founder-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: .35s;
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.founder-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.founder-card h3 {
    color: var(--red);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.founder-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.founder-card ul li {
    padding: 8px 0;
    font-size: 14px;
}

.founder-card ul i {
    color: #198754;
    margin-right: 8px;
}

.featured {
    border: 2px solid #D4AF37;
}

.founder-badge {
    position: absolute;
    top: 15px;
    right: -10px;
    background: #D4AF37;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Membership Benefits */

.membership-benefits {
    background: #fafafa;
}

.benefit-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: .35s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #fff5f5;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 28px;
    color: var(--red);
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 26px;
    margin: 0;
}

/* How Membership Works */

.how-it-works {
    background: #fff;
}

.step-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: .35s;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.step-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--red);
    font-size: 34px;
    font-weight: 700;
    opacity: .15;
}

.step-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon i {
    font-size: 30px;
    color: var(--red);
}

.step-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 26px;
    margin: 0;
}

/* FAQ */

.membership-faq {
    background: #fafafa;
}

.custom-faq {
    max-width: 900px;
    margin: auto;
}

.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.custom-faq .accordion-button {
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 22px;
    color: #222;
    box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: var(--red);
    color: #fff;
}

.custom-faq .accordion-body {
    font-size: 15px;
    color: #666;
    line-height: 28px;
    padding: 20px 22px;
}

/*==============================
 Registration
==============================*/

.registration-section {

    background: #f8f9fa;
    margin-top: 4em;
}

.registration-card {

    background: #fff;

    border-radius: 18px;

    padding: 45px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.registration-header {

    text-align: center;

    margin-bottom: 35px;

}

.registration-header h2 {

    font-size: 30px;

    font-weight: 700;

}

.registration-header p {

    color: #666;

}

.progress-wrapper {

    margin-bottom: 40px;

}

.registration-card form input,
.registration-card form select,
.registration-card form textarea {
    font-size: 14px;
}

.step-text {

    font-size: 14px;

    color: #666;

}

.form-title {

    font-size: 22px;

    margin-bottom: 25px;

    font-weight: 600;

}

.registration-card label {

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 8px;

}

.registration-card label span {

    color: red;

}

.registration-card .form-control,

.registration-card .form-select {

    height: 50px;

    border-radius: 10px;

    border: 1px solid #ddd;

}

.registration-card input[type=file] {

    padding: 11px;

}

.btn-next {

    border: none;

    background: var(--red);

    color: #fff;

    padding: 12px 35px;

    border-radius: 30px;

    font-weight: 600;

    transition: .3s;
    font-size: 14px;
}

.btn-next:hover {

    background: var(--red-dark);

}

.btn-back {
    border: none;
    background: var(--bs-gray);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
    font-size: 14px;
}

.btn-back:hover {
    background: var(--bs-gray-700);
}

@media(max-width:768px) {

    .registration-card {

        padding: 25px;

    }

    .registration-header h2 {

        font-size: 26px;

    }

}

.registration-card textarea.form-control {
    border-radius: 10px;
    resize: none;
    padding: 12px;
}

.form-title i {
    color: var(--red);
}

.declaration-box {

    background: #fafafa;

    border: 1px solid #eee;

    border-radius: 12px;

    padding: 25px;

}

.form-check-label {

    font-size: 14px;

    color: #555;

}

.registration-card .step {
    display: none;
}

.registration-card .step.active {
    display: block;
}

header.main-header.inner-header nav#mainNav {
    background: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

/* Dropdown Menu */
.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 8px;
    min-width: 230px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .35s ease;
    display: block;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    transition: all .3s ease;
    font-size: 0.9rem;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(90deg, #ff3d3d, #ff6b6b);
    color: #fff;
    padding-left: 15px;
}

/* Founder Donation */

.founder-donation {
    background: #fff;
}

.founder-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.founder-table thead {
    background: var(--red);
    color: #fff;
}

.founder-table th,
.founder-table td {
    padding: 18px;
    vertical-align: middle;
}

.founder-table tbody tr:hover {
    background: #fff8f8;
}

.btn-founder {
    background: var(--red);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.btn-founder:hover {
    background: #660000;
    color: #fff;
}

/* Payment Methods */

.payment-methods {
    background: #f8f9fa;
}

.payment-card {

    background: #fff;

    border: 1px solid #eee;

    border-radius: 16px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    transition: .3s;

}

.payment-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

    border-color: var(--red);

}

.payment-icon {

    width: 75px;

    height: 75px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #fff5f5;

    display: flex;

    align-items: center;

    justify-content: center;

}

.payment-icon i {

    font-size: 30px;

    color: var(--red);

}

.payment-card h4 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;

}

.payment-card p {

    color: #666;

    font-size: 15px;

    line-height: 28px;

}

/* Bank Details */

.bank-details {

    background: #fff;

}

.bank-card {

    background: #fafafa;

    border: 1px solid #eee;

    border-radius: 15px;

    padding: 30px;

}

.bank-card th {

    width: 180px;

    color: #8b0000;

    font-weight: 600;

}

.bank-card td {

    color: #444;

}

.qr-card {

    text-align: center;

    background: #fafafa;

    border: 1px solid #eee;

    border-radius: 15px;

    padding: 30px;

}

.qr-card img {

    width: 220px;

}

.btn-download {

    display: inline-block;

    margin-top: 15px;

    padding: 10px 28px;

    background: var(--red);

    color: #fff;

    border-radius: 30px;

    text-decoration: none;

}

.btn-download:hover {

    background: #650000;

    color: #fff;

}

/*==============================
 Donate CTA
==============================*/

.donate-cta {
    background: linear-gradient(135deg, #8b0000, #b31217);
    padding: 80px 0;
}

.donate-cta h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.donate-cta p {
    color: #f8f8f8;
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 30px;
}

.donate-cta .btn-donate {
    display: inline-block;
    background: #fff;
    color: var(--red);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.donate-cta .btn-donate:hover {
    background: #f4b400;
    color: #fff;
}

@media (max-width:991px) {

    .donate-cta {
        padding: 60px 0;
    }

    .donate-cta h2 {
        font-size: 32px;
    }

}

@media (max-width:576px) {

    .donate-cta h2 {
        font-size: 26px;
    }

    .donate-cta p {
        font-size: 15px;
        line-height: 26px;
    }

    .donate-cta .btn-donate {
        width: 100%;
        max-width: 260px;
    }

}

/*==============================
 Donation Categories
==============================*/

.donation-categories {
    background: #f8f9fa;
}

.donation-card-page {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
    padding: 30px 20px;
    transition: .3s;
    height: 100%;
}

.donation-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.donation-card-page img {
    width: 120px;
    margin-bottom: 20px;
}

.donation-card-page h4 {
    font-size: 22px;
    font-weight: 700;
}

.amount {
    color: var(--red);
    font-size: 30px;
    font-weight: 700;
    margin: 15px 0;
}

.donation-card-page ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.donation-card-page ul li {
    padding: 6px 0;
    color: #666;
}

.btn-donate {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
}

.btn-donate:hover {
    background: var(--red);
    color: #fff;
}

/*==============================
AUTH MODAL
==============================*/

.auth-modal {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
}

.auth-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 99;
}

.auth-left {
    background: linear-gradient(135deg, #7b1113, #b71c1c);
    color: #fff;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-left-content {
    text-align: center;
}

.auth-logo {
    width: 90px;
    margin-bottom: 25px;
}

.auth-left h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.auth-left p {
    font-size: 15px;
    line-height: 28px;
    opacity: .95;
}

.auth-right {
    padding: 45px;
    background: #fff;
}

.auth-tabs {
    background: #f4f4f4;
    border-radius: 50px;
    padding: 5px;
}

.auth-tabs .nav-link {
    border-radius: 50px;
    color: #555;
    font-weight: 600;
    padding: 12px;
}

.auth-tabs .nav-link.active {
    background: var(--red);
    color: #fff !important;
}

.auth-right label {
    font-weight: bold;
    margin-bottom: 2px;
    font-size: 14px;
}

.auth-right .form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.auth-right .form-control:focus {
    border-color: #8b0000;
    box-shadow: none;
}

.auth-right .input-group .btn {
    border-radius: 0 10px 10px 0;
}

.btn-auth {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.btn-auth:hover {
    background: var(--red-dark);
}

.forgot-link,
.switch-auth {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.forgot-link:hover,
.switch-auth:hover {
    color: var(--red-dark);
}

.form-check-label {
    font-size: 14px;
}

@media(max-width:991px) {

    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 30px;
    }
a.nav-link.btn-nav-cta {
    width: 200px;
}
}

@media(max-width:576px) {

    .auth-right {
        padding: 25px 20px;
    }

    .auth-tabs .nav-link {
        font-size: 15px;
    }
a.nav-link.btn-nav-cta {
    width: 100%;
}
}

@media(max-width:1399px) {
a.navbar-brand span span {
    display: block;
}
}
/* mobile header */
/* ===========================
Mobile Menu
=========================== */

@media (max-width:1199px) {

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 15px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 14px 0;
        color: #222;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #f1f1f1;
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        padding: 8px 0;
        margin: 0;
        border-radius: 10px;
    }

    .dropdown-item {
        padding: 10px 20px;
        font-size: 15px;
        color: #555;
    }

    .dropdown-item:hover {
        background: #f1f1f1;
        color: #c40000;
    }

    .nav-item.ms-lg-2 {
        margin: 10px 0 0 !important;
        width: 100%;
    }

    .btn-nav-cta {
        width: 100%;
        justify-content: center;
    }

    li.nav-item.ms-lg-2 {
        margin-bottom: 10px;
    }

    .navbar .dropdown-menu {
        position: static;
        border: 0;
        box-shadow: none;
        padding: 0;
        margin: 0;
        display: none;
        background: #f8f9fa;
    }

    .navbar .dropdown-menu.show {
        display: block;
        padding: 10px 0;
        margin: 8px 0;
        border-radius: 10px;
    }

    .navbar .dropdown-item {
        padding: 10px 20px;
    }

}

/* ===========================
   E-Hundi Form Fields
=========================== */

.content-block form .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

.content-block form .form-control,
.content-block form .input-group-text {
    min-height: 52px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
}

.content-block form .form-control {
    padding: 12px 15px;
    background: #fff;
    color: #333;
}

.content-block form .form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.10);
}

.content-block form .form-control::placeholder {
    color: #999;
}

.content-block form .input-group-text {
    padding: 0 18px;
    background: #f5f5f5;
    color: #198754;
    font-weight: 600;
    border-radius: 8px 0 0 8px;
}

.content-block form .input-group .form-control {
    border-radius: 0 8px 8px 0;
}

.content-block form textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.content-block form small.text-muted {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

/* Mobile */

@media (max-width: 576px) {

    .content-block form .form-control,
    .content-block form .input-group-text {
        min-height: 48px;
    }

    .content-block form .form-label {
        font-size: 14px;
    }

}

/* ===========================
   E-Hundi Quick Donation
=========================== */

.e-hundi-box {
    align-items: center;
    background: #f1f9f2;
    border: 1px solid #d8ead9;
    border-left: 5px solid #198754;
    border-radius: 12px;
    padding: 60px 28px;
}

/* Icon */

.e-hundi-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 47px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Heading */

.e-hundi-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Description */

.e-hundi-box p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Button */

.e-hundi-box .btn {
    white-space: nowrap;
}

/* Reduce section height */

.e-hundi-section {
    padding: 35px 0 !important;
}

/* ===========================
   E-Hundi Responsive
=========================== */

@media (max-width: 991px) {

    .e-hundi-box {
        padding: 45px 25px;
    }

    .e-hundi-icon {
        width: 85px;
        height: 85px;
        font-size: 38px;
    }

    .e-hundi-box h3 {
        font-size: 24px;
    }

    .e-hundi-box p {
        font-size: 14px;
    }

}


/* ===========================
   Tablet
=========================== */

@media (max-width: 767px) {

    .e-hundi-section {
        padding: 30px 0 !important;
    }

    .e-hundi-box {
        padding: 35px 20px;
        text-align: center;
    }

    .e-hundi-icon {
        width: 80px;
        height: 80px;
        font-size: 35px;
        margin-bottom: 20px;
    }

    .e-hundi-box h3 {
        font-size: 22px;
        line-height: 1.3;
    }

    .e-hundi-box p {
        font-size: 14px;
        line-height: 1.6;
    }

    .e-hundi-box .btn {
        margin-top: 20px;
    }

}


/* ===========================
   Mobile
=========================== */

@media (max-width: 480px) {

    .e-hundi-section {
        padding: 25px 0 !important;
    }

    .e-hundi-box {
        padding: 30px 15px;
        border-left-width: 4px;
    }

    .e-hundi-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 15px;
    }

    .e-hundi-box h3 {
        font-size: 20px;
    }

    .e-hundi-box p {
        font-size: 13px;
    }

    .e-hundi-box .btn {
        width: 100%;
        padding: 11px 20px;
    }

}

.launch-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
}

.launch-popup-box {
    position: relative;
    z-index: 2;
    width: calc(100% - 30px);
    max-width: 720px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border-top: 5px solid #198754;
}

.launch-popup-content {
    padding: 55px 50px 50px;
    text-align: center;
}

.launch-popup-content .section-eyebrow {
    margin-bottom: 8px;
}

.launch-popup-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.launch-popup-text {
    color: #666;
    margin-bottom: 30px;
}

#countdown {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #f1f9f2;
    border: 4px solid #198754;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}
.launch-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e60000;
    color: #fff;
    padding: 14px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.launch-button:hover {
    background: #c90000;
    color: #fff;
    transform: translateY(-2px);
}

.launch-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

.launch-close:hover {
    background: #e60000;
    color: #fff;
}

@media (max-width: 767px) {

    .launch-popup-content {
        padding: 45px 20px 35px;
    }

    .launch-popup-content h2 {
        font-size: 27px;
    }
}