/* ==========================================================================
   PM Fuel Relief Portal - Professional CSS Stylesheet
   Color Scheme & Theme modeled after Official Govt Portal (https://pmfuelrelief.pk/)
   ========================================================================== */

/* Google Fonts loaded via preconnect in HTML <head> for maximum speed */

:root {
    --primary-green: #005a3a;
    --dark-green: #00482e;
    --deep-green: #003e28;
    --light-green: #e9f9f2;
    --mint-green: #d9f8eb;
    --border-green: #bfeeda;

    --orange-accent: #d97706;
    --orange-light: #fff8f0;
    --orange-border: #fcd34d;

    --text-dark: #182033;
    --text-muted: #526077;
    --bg-page: #f4f6f8;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;

    --shadow-sm: 0 2px 8px rgba(0, 90, 58, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 90, 58, 0.10);
    --shadow-lg: 0 15px 35px rgba(0, 48, 28, 0.15);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVBAR (Standard LTR Layout)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    direction: ltr;
    text-align: left;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    direction: ltr;
}

/* Brand & Logo with White Background for Favicon/Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: ltr;
    text-align: left;
}

.nav-logo {
    height: 52px;
    width: 52px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    direction: ltr;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Helpline CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
}

.btn-helpline {
    background: var(--mint-green);
    color: var(--primary-green);
    border: 1px solid var(--border-green);
    padding: 9px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-helpline:hover {
    background: var(--primary-green);
    color: #ffffff;
}

/* Mobile Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn.is-active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Menu Drawer (Standard LTR Slide-in) */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 290px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    padding: 80px 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left 0.4s ease;
    direction: ltr;
    text-align: left;
}

.mobile-drawer.is-open {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    direction: ltr;
    text-align: left;
}

.mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

.mobile-nav-link:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

/* Top Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    direction: ltr;
    font-family: 'Poppins', sans-serif;
}

.announcement-badge {
    background: #ffeb3b;
    color: #000000;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

/* ==========================================================================
   HERO SECTION & FORM (Urdu RTL Layout)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 15px 0 45px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 246, 248, 0.88) 100%),
        url('../assets/images/background.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    direction: rtl;
    text-align: right;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge-pill {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--mint-green);
    color: var(--primary-green);
    border: 1px solid var(--border-green);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.9;
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-green);
    line-height: 1.35;
}

.hero-heading span {
    color: var(--orange-accent);
}

.hero-subheading {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.pm-portrait-wrap {
    position: relative;
    text-align: center;
}

.pm-portrait {
    max-height: 480px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.12));
}

/* Interactive Hero Apply Form */
.hero-form-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-green);
    padding: 28px 24px;
    position: relative;
    direction: rtl;
    text-align: right;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--orange-accent));
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h3 {
    font-size: 1.4rem;
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.95rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background: #ffffff;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 90, 58, 0.12);
}

select.form-control {
    cursor: pointer;
}

/* SMS Live Preview Box */
.sms-preview-box {
    background: var(--light-green);
    border: 1px dashed var(--primary-green);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    margin-top: 14px;
}

.sms-preview-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.sms-preview-code {
    font-family: 'Poppins', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--deep-green);
    direction: ltr;
    letter-spacing: 0.5px;
}

.btn-submit-form {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0, 90, 58, 0.25);
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--deep-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 90, 58, 0.35);
}

.redirect-notice {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* ==========================================================================
   RELIEF HIGHLIGHT BANNER & CARDS
   ========================================================================== */
.section-padding {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.site-promo-banner {
    width: 100%;
    margin-bottom: 35px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-green);
    background: #ffffff;
    transition: transform 0.3s ease;
}

.site-promo-banner:hover {
    transform: translateY(-3px);
}

.site-promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.section-title h2 {
    font-size: 2.1rem;
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

.relief-banner-card {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--primary-green) 100%);
    border-radius: var(--radius-lg);
    color: #ffffff;
    padding: 35px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.relief-banner-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.relief-banner-info p {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 650px;
    font-family: 'Poppins', sans-serif;
}

.relief-price-tag {
    background: #ffffff;
    color: var(--primary-green);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    min-width: 180px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.price-unit {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.scheme-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scheme-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.card-badge-green {
    background: var(--mint-green);
    color: var(--primary-green);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.card-badge-orange {
    background: var(--orange-light);
    color: var(--orange-accent);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.scheme-card h3 {
    font-size: 1.4rem;
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.quota-box {
    background: var(--bg-page);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin: 18px 0;
    border-left: 4px solid var(--primary-green);
}

.quota-box.orange {
    border-left-color: var(--orange-accent);
}

.quota-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.quota-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
}

.card-illu {
    max-height: 110px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* ==========================================================================
   REQUIREMENTS & 3-STEP PROCESS
   ========================================================================== */
.requirements-bg {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.req-box {
    background: var(--light-green);
    border: 1.5px solid var(--border-green);
    border-radius: var(--radius-md);
    padding: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.req-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 15px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.req-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.shortcode-card {
    background: var(--dark-green);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.shortcode-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffeb3b;
    line-height: 1;
    margin: 8px 0;
}

/* 3 Steps Process */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.step-badge {
    display: inline-block;
    background: var(--primary-green);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-code-box {
    background: var(--bg-page);
    border: 1px dashed var(--primary-green);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', monospace;
    font-weight: 700;
    color: var(--deep-green);
    direction: ltr;
    display: inline-block;
    margin: 10px 0;
    font-size: 1.05rem;
}

/* Province Code Table */
.province-table-wrap {
    margin-top: 15px;
    overflow-x: auto;
}

.province-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.province-table th,
.province-table td {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.province-table th {
    background: var(--light-green);
    color: var(--primary-green);
    font-weight: 700;
}

.p-code-badge {
    background: var(--dark-green);
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* ==========================================================================
   FAQ SECTION ACCORDION (Urdu RTL)
   ========================================================================== */
.faq-wrap {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    direction: rtl;
    text-align: right;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 24px;
    text-align: right;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-icon-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
    background: var(--light-green);
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
    border-top: 1px solid var(--bg-page);
}

/* ==========================================================================
   HELPLINE BANNER & FOOTER (English LTR)
   ========================================================================== */
.support-banner {
    background: linear-gradient(135deg, var(--deep-green), var(--dark-green));
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    font-family: 'Poppins', sans-serif;
}

.support-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-call {
    background: #ffffff;
    color: var(--primary-green);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    font-family: 'Poppins', sans-serif;
}

.btn-call:hover {
    background: #ffeb3b;
    color: #000000;
    transform: translateY(-2px);
}

.site-footer {
    background: var(--deep-green);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 20px;
    font-size: 0.9rem;
    border-top: 4px solid var(--orange-accent);
    direction: ltr;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;
    margin-bottom: 15px;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE SPECIFIC RULES
   ========================================================================== */

/* Requirement: Mobile Header Should NOT Be Sticky */
@media (max-width: 992px) {
    .site-header {
        position: relative !important;
        top: auto !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-heading {
        font-size: 2rem;
    }

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

    .req-box {
        grid-template-columns: 1fr;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .relief-banner-card {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        flex-direction: column;
        gap: 6px;
        padding: 8px 12px;
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.4;
    }

    .announcement-badge {
        font-size: 0.72rem;
        padding: 2px 10px;
    }

    .hero-badge-pill {
        font-size: 0.78rem;
        line-height: 2.0;
        padding: 8px 14px;
        border-radius: 16px;
        max-width: 100%;
        text-align: center;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
        white-space: normal;
        word-break: break-word;
    }

    .pm-portrait {
        max-height: 320px;
    }

    .sms-preview-code,
    .step-code-box {
        font-size: 0.88rem;
        word-break: break-all;
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .hero-badge-pill {
        font-size: 0.74rem;
        line-height: 2.1;
        padding: 6px 12px;
        border-radius: 14px;
        gap: 4px;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        height: 65px;
    }

    .nav-logo {
        height: 42px;
        width: 42px;
    }

    .brand-title {
        font-size: 0.92rem;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }

    .hero-heading {
        font-size: 1.55rem;
    }

    .hero-form-card {
        padding: 20px 16px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .scheme-card {
        padding: 20px 16px;
    }

    .card-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .card-illu {
        max-height: 80px;
        align-self: center;
    }

    .req-box {
        padding: 20px 16px;
    }

    .req-list {
        grid-template-columns: 1fr;
    }

    .shortcode-number {
        font-size: 2.2rem;
    }

    .support-banner {
        padding: 25px 18px;
    }

    .support-buttons {
        flex-direction: column;
        width: 100%;
    }

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

/* ==========================================================================
   WHATSAPP CHANNEL HERO BANNER & FLOATING WIDGET STYLES
   ========================================================================== */
.whatsapp-hero-banner {
    margin: 25px 0 10px 0;
    background: linear-gradient(135deg, #075E54 0%, #128C7E 50%, #25D366 100%);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.whatsapp-banner-text {
    flex: 1;
    min-width: 260px;
}

.whatsapp-badge {
    display: inline-block;
    background: #25D366;
    color: #003e28;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.whatsapp-banner-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    font-family: 'Poppins', 'Noto Nastaliq Urdu', sans-serif;
}

.whatsapp-banner-text p {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

.btn-whatsapp-join {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #075E54;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.btn-whatsapp-join:hover {
    background: #25D366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Floating WhatsApp Sticky Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.6);
    z-index: -1;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.floating-wa-tooltip {
    position: absolute;
    right: 70px;
    background: #182033;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
}

.floating-whatsapp-btn:hover .floating-wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}
