:root {
    --kb: #29ABE2;
    --kn: #1B2A4A;
    --kg: #3AAA35;
    --kgo: #F7A800;
    --kw: #FFFFFF;
    --kt: #2D3748;
    --km: #64748B;
    --ab-dark: #7B241C;
    --ab-red: #C0392B;
    --ab-mid: #E74C3C;
}

.ab-hero *,
.ab-section *,
.ab-strip,
.ab-contact *,
.ab-form-card *,
.ab-about-card *,
.ab-benefits * {
    box-sizing: border-box;
}

/* ===== HERO ===== */
.ab-hero {
    background: linear-gradient(135deg, #7B241C 0%, #C0392B 55%, #E74C3C 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.ab-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.07);
    animation: ab-pulse 4s ease-in-out infinite;
}

.ab-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(247, 168, 0, 0.10);
    animation: ab-pulse 4s ease-in-out infinite 1.5s;
}

@keyframes ab-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.ab-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px 56px;
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ab-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 168, 0, 0.18);
    border: 1.5px solid rgba(247, 168, 0, 0.50);
    color: #F7A800;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.ab-hero-title {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 16px;
}

.ab-hero-title .t-gold {
    color: #F7A800;
}

.ab-hero-title .t-light {
    color: #ffd5d0;
}

.ab-hero-sub {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.78;
    max-width: 530px;
    margin-bottom: 30px;
}

.ab-hero-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.ab-btn-gold {
    background: linear-gradient(135deg, #F7A800, #e08900);
    color: #1B2A4A;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 6px 22px rgba(247, 168, 0, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ab-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(247, 168, 0, 0.55);
    color: #1B2A4A;
    text-decoration: none;
}

.ab-btn-ghost {
    background: rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.50);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.2s;
}

.ab-btn-ghost:hover {
    border-color: #F7A800;
    color: #F7A800;
    background: rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

/* Stat pills */
.ab-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ab-stat-pill {
    background: rgba(0, 0, 0, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    transition: background 0.2s, border-color 0.2s;
}

.ab-stat-pill:hover {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.50);
}

.ab-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.si-red {
    background: linear-gradient(135deg, #7B241C, #C0392B);
}

.si-green {
    background: linear-gradient(135deg, #3AAA35, #267a22);
}

.si-gold {
    background: linear-gradient(135deg, #F7A800, #c97f00);
}

.si-navy {
    background: linear-gradient(135deg, #1B2A4A, #2d4580);
}

.ab-stat-text .st-val {
    font-size: 17px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.ab-stat-text .st-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.70);
}

/* ===== BRAND STRIP ===== */
.ab-strip {
    height: 4px;
    background: linear-gradient(to right, #7B241C, #C0392B, #29ABE2, #F7A800);
}

/* ===== SECTION ===== */
.ab-section {
    padding: 56px 0 48px;
    font-family: 'Nunito', sans-serif;
}

.ab-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== MAIN 2-COL GRID ===== */
.ab-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

/* Image card */
.ab-img-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(192, 57, 43, 0.12);
    border: 1.5px solid #fdd;
    margin-bottom: 24px;
}

.ab-img-card img {
    width: 100%;
    display: block;
}

/* About card */
.ab-about-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(192, 57, 43, 0.10);
    border: 1.5px solid #fdd;
    background: var(--kw);
    margin-bottom: 24px;
}

.ab-about-sidebar {
    width: 90px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #7B241C 0%, #C0392B 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 10px;
    font-size: 38px;
    position: relative;
}

.ab-about-sidebar::after {
    content: 'PMJAY';
    position: absolute;
    bottom: 14px;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
}

.ab-about-body {
    flex: 1;
    padding: 26px 24px;
    position: relative;
}

.ab-about-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(to right, #C0392B, #F7A800, transparent);
    border-radius: 0 0 4px 4px;
}

.ab-about-body h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--kn);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1.5px dashed #fcc;
}

.ab-about-body p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.82;
}

/* Benefits */
.ab-benefits {
    background: var(--kw);
    border: 1.5px solid #fdd;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.07);
}

.ab-benefits h4 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--kn);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-benefits h4 .bicon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #C0392B, #E74C3C);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ab-ben-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ab-ben-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-size: 14.5px;
    color: var(--kt);
    font-weight: 600;
    border-bottom: 1px dashed #fdecea;
    line-height: 1.6;
}

.ab-ben-list li:last-child {
    border-bottom: none;
}

.ab-check {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--kg), #267a22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

/* ===== FORM CARD ===== */
.ab-form-card {
    background: var(--kw);
    border: 1.5px solid #fdd;
    border-radius: 20px;
    box-shadow: 0 8px 36px rgba(192, 57, 43, 0.10);
    overflow: hidden;
}

.ab-form-header {
    background: linear-gradient(135deg, #7B241C, #C0392B);
    padding: 22px 28px;
    position: relative;
    overflow: hidden;
}

.ab-form-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.ab-form-header h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.ab-form-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    position: relative;
    z-index: 1;
}

.ab-form-body {
    padding: 28px;
}

.ab-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.ab-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ab-field label {
    font-size: 11px;
    font-weight: 800;
    color: var(--kn);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ab-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    color: var(--kt);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: auto;
}

.ab-input:focus {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
    background: #fff;
}

.ab-textarea {
    resize: vertical;
    min-height: 82px;
}

.ab-mb {
    margin-bottom: 14px;
}

.ab-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #C0392B, #E74C3C);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 6px 22px rgba(192, 57, 43, 0.36);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 4px;
}

.ab-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(192, 57, 43, 0.46);
}

#msg {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

/* ===== CONTACT STRIP ===== */
.ab-contact {
    background: linear-gradient(135deg, #7B241C 0%, #C0392B 100%);
    padding: 44px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.ab-contact::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.ab-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ab-contact-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.ab-contact-text h3 span {
    color: #F7A800;
}

.ab-contact-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
}

.ab-contact-items {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.ab-citem {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 16px 22px;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}

.ab-citem:hover {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.50);
}

.ab-citem .ci-ico {
    font-size: 28px;
}

.ab-citem .ci-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.65;
    display: block;
    margin-bottom: 3px;
}

.ab-citem .ci-val {
    font-size: 15px;
    font-weight: 800;
}

.ab-citem a {
    color: #F7A800;
    text-decoration: none;
}

.ab-citem a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .ab-hero-inner {
        grid-template-columns: 1fr;
        padding: 44px 24px;
    }

    .ab-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ab-stat-pill {
        flex: 1 1 200px;
    }

    .ab-hero-title {
        font-size: 34px;
    }

    .ab-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ab-hero-title {
        font-size: 26px;
    }

    .ab-section {
        padding: 38px 0 30px;
    }

    .ab-hero-btns {
        flex-wrap: wrap;
    }

    .ab-field-row {
        grid-template-columns: 1fr;
    }

    .ab-about-card {
        flex-direction: column;
    }

    .ab-about-sidebar {
        width: 100%;
        padding: 18px 22px;
        font-size: 30px;
    }

    .ab-about-sidebar::after {
        position: static;
    }

    .ab-contact-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}