/* ============================================================
   Disciplinary Rules Page — Disciplinary-Rule.css
   Extends: style.css (Satyadeo College Gouripur)
   ============================================================ */

/* ============================================================
   INNER PAGE BANNER  (same as Principal-Message)
   ============================================================ */
.inner-page-banner {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 60%, var(--primary-blue-light) 100%);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}
.inner-page-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(253,163,27,0.10);
    pointer-events: none;
}
.inner-page-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.inner-banner-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-orange-light);
    margin-bottom: 14px;
}
.inner-banner-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}
.inner-banner-title span { color: var(--primary-orange-light); }
.inner-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.70);
    margin-top: 10px;
    flex-wrap: wrap;
}
.inner-banner-breadcrumb a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}
.inner-banner-breadcrumb a:hover { color: var(--primary-orange-light); }
.inner-banner-breadcrumb .separator {
    color: var(--primary-orange);
    font-size: 0.7rem;
}
.banner-dots {
    position: absolute;
    right: 8%; top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
    opacity: 0.18;
}
.banner-dots span {
    display: block;
    width: 7px; height: 7px;
    background: var(--white);
    border-radius: 50%;
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.dr-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 14px;
}
.dr-pretitle::before {
    content: '';
    display: inline-block;
    width: 28px; height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}
.dr-pretitle-center {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 12px;
    justify-content: center;
}
.dr-pretitle-center::before,
.dr-pretitle-center::after {
    content: '';
    display: inline-block;
    width: 24px; height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}
.dr-heading {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}
.dr-heading span  { color: var(--primary-blue); }
.dr-heading-center {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
}
.dr-heading-center span { color: var(--primary-blue); }
.dr-sub-center {
    font-size: 0.93rem;
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 52px;
}
.dr-body-text {
    font-size: 0.96rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 18px;
}

/* ============================================================
   NOTICE STRIP
   ============================================================ */
.dr-notice-strip {
    background: linear-gradient(90deg, var(--primary-blue-dark), var(--primary-blue));
    padding: 13px 0;
    position: relative;
    overflow: hidden;
}
.dr-notice-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 10px,
        rgba(255,255,255,0.025) 10px,
        rgba(255,255,255,0.025) 20px
    );
}
.dr-notice-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.dr-notice-icon {
    width: 36px; height: 36px;
    background: rgba(253,163,27,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-orange-light);
    flex-shrink: 0;
    animation: dr-pulse 2.2s ease-in-out infinite;
}
@keyframes dr-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(253,163,27,0.5); }
    50%       { box-shadow: 0 0 0 8px rgba(253,163,27,0); }
}
.dr-notice-text {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.03em;
    text-align: center;
}
.dr-notice-text span { color: var(--primary-orange-light); font-weight: 900; }
.dr-notice-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(253,163,27,0.18);
    border: 1px solid rgba(253,163,27,0.35);
    color: var(--primary-orange-light);
    font-size: 0.80rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ============================================================
   SECTION 1 — INTRO  (image left + text right)
   ============================================================ */
.dr-intro-section {
    padding: 90px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.dr-intro-section::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17,110,99,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Image card */
.dr-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.dr-img-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(13,90,81,0.72) 100%);
    z-index: 1;
    border-radius: 24px;
}
.dr-img-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s ease;
}
.dr-img-card:hover img { transform: scale(1.04); }
.dr-img-tag {
    position: absolute;
    top: 20px; right: 20px;
    z-index: 2;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(253,163,27,0.4);
}
.dr-img-caption {
    position: absolute;
    bottom: 24px; left: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    padding: 12px 18px;
}
.dr-img-caption .cap-icon {
    width: 42px; height: 42px;
    background: var(--primary-blue);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.dr-img-caption .cap-text {
    color: #fff; font-size: 0.82rem; font-weight: 700; line-height: 1.4;
}
.dr-img-caption .cap-text strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }

/* Intro quote box */
.dr-quote-box {
    background: linear-gradient(135deg, rgba(17,110,99,0.07), rgba(253,163,27,0.04));
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 14px 14px 0;
    padding: 18px 22px;
    margin: 24px 0 26px;
    position: relative;
}
.dr-quote-box p {
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}
.dr-quote-mark {
    position: absolute;
    bottom: 6px; right: 16px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.18;
    line-height: 1;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.dr-stats-strip {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.dr-stats-strip::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.dr-stats-strip::after {
    content: '';
    position: absolute;
    bottom: -70px; right: -40px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(253,163,27,0.07);
}
.dr-stat-card {
    text-align: center;
    padding: 20px;
    position: relative;
}
.dr-stat-card + .dr-stat-card::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; height: 60%; width: 1px;
    background: rgba(255,255,255,0.15);
}
.dr-stat-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-orange-light);
    margin: 0 auto 14px;
    transition: var(--transition);
}
.dr-stat-card:hover .dr-stat-icon {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff;
    transform: scale(1.1);
}
.dr-stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.dr-stat-label {
    font-size: 0.80rem;
    font-weight: 700;
    color: rgba(255,255,255,0.70);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   SECTION 2 — CORE RULES (icon cards grid)
   ============================================================ */
.dr-rules-section {
    padding: 90px 0 80px;
    background: var(--light-bg);
    position: relative;
}

.dr-rule-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid var(--light-grey);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.dr-rule-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
    transition: var(--transition);
}
.dr-rule-card.orange::before {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-dark));
}
.dr-rule-card.teal::before {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-dark));
}
.dr-rule-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: transparent;
}
.dr-rule-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 18px;
    transition: var(--transition);
    flex-shrink: 0;
}
.dr-rule-card.orange .dr-rule-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    box-shadow: 0 6px 18px rgba(253,163,27,0.30);
}
.dr-rule-card.teal .dr-rule-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    box-shadow: 0 6px 18px rgba(17,110,99,0.25);
}
.dr-rule-card:hover .dr-rule-icon { transform: scale(1.1) rotate(6deg); }
.dr-rule-card h5 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.dr-rule-card p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin: 0;
}
.dr-rule-number {
    position: absolute;
    top: 18px; right: 20px;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    opacity: 0.06;
    color: var(--text-dark);
    line-height: 1;
}

/* ============================================================
   SECTION 3 — DETAILED RULES (accordion + side image)
   ============================================================ */
.dr-detail-section {
    padding: 90px 0 80px;
    background: var(--white);
}

/* Accordion */
.dr-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: var(--border-radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.dr-accordion .accordion-item:hover { box-shadow: var(--shadow-md); }
.dr-accordion .accordion-button {
    background: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-dark);
    padding: 20px 22px;
    gap: 14px;
    border: none;
    box-shadow: none !important;
}
.dr-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(17,110,99,0.06), rgba(17,110,99,0.01));
    color: var(--primary-blue);
}
.dr-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23116e63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    flex-shrink: 0;
}
.dr-acc-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #fff; flex-shrink: 0;
}
.dr-acc-icon.orange { background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark)); }
.dr-acc-icon.teal   { background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));     }
.dr-accordion .accordion-body {
    padding: 6px 22px 22px 76px;
    font-size: 0.91rem;
    color: var(--text-medium);
    line-height: 1.85;
}
.dr-accordion .accordion-body ul {
    padding-left: 18px;
    margin: 10px 0 0;
}
.dr-accordion .accordion-body ul li {
    margin-bottom: 8px;
    font-weight: 600;
}
.dr-accordion .accordion-body ul li::marker { color: var(--primary-orange); }

/* Side image */
.dr-side-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.dr-side-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(17,110,99,0.68) 100%);
    z-index: 1;
    border-radius: 22px;
}
.dr-side-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.dr-side-img-wrap:hover img { transform: scale(1.04); }
.dr-side-img-caption {
    position: absolute;
    bottom: 22px; left: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 14px;
    padding: 12px 18px;
}
.dr-side-img-caption .cap-icon {
    width: 40px; height: 40px;
    background: var(--primary-orange);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #fff; flex-shrink: 0;
}
.dr-side-img-caption .cap-text {
    color: #fff; font-size: 0.80rem; font-weight: 700; line-height: 1.4;
}
.dr-side-img-caption .cap-text strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }

/* ============================================================
   SECTION 4 — CONDUCT TABLE  (full-width tabulated rules)
   ============================================================ */
.dr-conduct-section {
    padding: 80px 0 90px;
    background: var(--light-bg);
}
.dr-conduct-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-grey);
}
.dr-conduct-card-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.dr-conduct-card-header .ch-icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--primary-orange-light);
}
.dr-conduct-card-header h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.dr-conduct-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.88rem;
}
.dr-conduct-table thead th {
    background: linear-gradient(135deg, rgba(17,110,99,0.08), rgba(253,163,27,0.05));
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 18px;
    border-bottom: 2px solid var(--light-grey);
}
.dr-conduct-table tbody tr { transition: var(--transition); }
.dr-conduct-table tbody tr:nth-child(even) { background: var(--light-bg); }
.dr-conduct-table tbody tr:hover { background: rgba(253,163,27,0.06); }
.dr-conduct-table tbody td {
    padding: 13px 18px;
    color: var(--text-medium);
    font-weight: 600;
    border-bottom: 1px solid var(--light-grey);
    vertical-align: top;
    line-height: 1.6;
}
.dr-conduct-table tbody tr:last-child td { border-bottom: none; }
.dr-conduct-table .sno {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--primary-blue);
    white-space: nowrap;
}
.dr-severity-badge {
    display: inline-block;
    font-size: 0.70rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.dr-severity-badge.minor {
    background: rgba(253,163,27,0.12);
    color: var(--primary-orange-dark);
}
.dr-severity-badge.major {
    background: rgba(192,57,43,0.10);
    color: #c0392b;
}
.dr-severity-badge.serious {
    background: rgba(17,110,99,0.10);
    color: var(--primary-blue-dark);
}

/* ============================================================
   SECTION 5 — PUNISHMENT SPECTRUM  (progress-style cards)
   ============================================================ */
.dr-punishment-section {
    padding: 80px 0 90px;
    background: var(--white);
}

.dr-punish-card {
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid var(--light-grey);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.dr-punish-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.dr-punish-level {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.dr-punish-level-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dr-punish-level-dot.l1 { background: #27ae60; }
.dr-punish-level-dot.l2 { background: var(--primary-orange); }
.dr-punish-level-dot.l3 { background: #e74c3c; }
.dr-punish-level span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.dr-punish-card.l1 .dr-punish-level span { color: #27ae60; }
.dr-punish-card.l2 .dr-punish-level span { color: var(--primary-orange-dark); }
.dr-punish-card.l3 .dr-punish-level span { color: #c0392b; }

.dr-punish-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
}
.dr-punish-card.l1::before { background: #27ae60; }
.dr-punish-card.l2::before { background: var(--primary-orange); }
.dr-punish-card.l3::before { background: #c0392b; }

.dr-punish-card h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}
.dr-punish-list {
    list-style: none;
    padding: 0; margin: 0;
}
.dr-punish-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px dashed var(--light-grey);
    line-height: 1.55;
}
.dr-punish-list li:last-child { border-bottom: none; }
.dr-punish-list li i {
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.dr-punish-card.l1 .dr-punish-list li i { color: #27ae60; }
.dr-punish-card.l2 .dr-punish-list li i { color: var(--primary-orange); }
.dr-punish-card.l3 .dr-punish-list li i { color: #c0392b; }

/* ============================================================
   SECTION 6 — IMAGE MOSAIC + STUDENT PLEDGE
   ============================================================ */
.dr-pledge-section {
    padding: 80px 0 90px;
    background: var(--light-bg);
}

/* Mosaic */
.dr-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
}
.dr-mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.dr-mosaic-item.tall { grid-row: span 2; }
.dr-mosaic-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.dr-mosaic-item:hover img { transform: scale(1.06); }
.dr-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,110,99,0.55), rgba(253,163,27,0.40));
    display: flex;
    align-items: flex-end;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 12px;
}
.dr-mosaic-item:hover .dr-mosaic-overlay { opacity: 1; }
.dr-mosaic-overlay span {
    font-size: 0.76rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Pledge card */
.dr-pledge-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 22px;
    padding: 38px 34px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}
.dr-pledge-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(253,163,27,0.09);
}
.dr-pledge-card::after {
    content: '';
    position: absolute;
    bottom: -70px; left: -40px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.dr-pledge-card .pledge-icon {
    width: 70px; height: 70px;
    background: rgba(253,163,27,0.18);
    border: 2px solid rgba(253,163,27,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-orange-light);
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.dr-pledge-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 18px;
    position: relative; z-index: 1;
}
.dr-pledge-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    line-height: 1.85;
    margin-bottom: 22px;
    position: relative; z-index: 1;
    font-style: italic;
}
.dr-pledge-points {
    list-style: none;
    padding: 0; margin: 0;
    position: relative; z-index: 1;
}
.dr-pledge-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    line-height: 1.55;
}
.dr-pledge-points li:last-child { border-bottom: none; }
.dr-pledge-points li i {
    color: var(--primary-orange-light);
    font-size: 0.82rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.dr-cta-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--primary-blue-light) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.dr-cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(253,163,27,0.07);
}
.dr-cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
}
.dr-cta-section .cta-glyph {
    width: 88px; height: 88px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.1rem;
    color: var(--primary-orange-light);
    margin: 0 auto 24px;
    position: relative; z-index: 1;
    animation: dr-pulse 2.5s ease-in-out infinite;
}
.dr-cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    position: relative; z-index: 1;
}
.dr-cta-section p {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.82);
    font-weight: 600;
    max-width: 560px;
    margin: 0 auto 32px;
    position: relative; z-index: 1;
    line-height: 1.75;
}
.dr-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(253,163,27,0.4);
    transition: var(--transition);
    position: relative; z-index: 1;
    letter-spacing: 0.03em;
}
.dr-cta-btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(253,163,27,0.5);
    color: #fff;
}
.dr-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.45);
    text-decoration: none;
    transition: var(--transition);
    position: relative; z-index: 1;
    letter-spacing: 0.03em;
}
.dr-cta-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .inner-banner-title   { font-size: 2.2rem; }
    .dr-heading,
    .dr-heading-center    { font-size: 2rem; }
    .dr-img-card img      { height: 360px; }
    .dr-side-img-wrap img { height: 400px; }
    .dr-accordion .accordion-body { padding-left: 22px; }
}

@media (max-width: 767px) {
    .inner-page-banner    { padding: 52px 0 44px; }
    .inner-banner-title   { font-size: 1.75rem; }
    .banner-dots          { display: none; }

    .dr-intro-section,
    .dr-rules-section,
    .dr-detail-section,
    .dr-conduct-section,
    .dr-punishment-section,
    .dr-pledge-section    { padding: 60px 0 68px; }

    .dr-img-card img      { height: 260px; }
    .dr-side-img-wrap img { height: 280px; }

    .dr-stats-strip       { padding: 40px 0; }
    .dr-stat-card + .dr-stat-card::before { display: none; }

    .dr-heading-center,
    .dr-heading           { font-size: 1.75rem; }

    .dr-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 150px 150px;
    }
    .dr-mosaic-item.tall { grid-row: span 2; }

    .dr-pledge-card       { padding: 28px 22px; margin-top: 28px; }
    .dr-cta-section h2    { font-size: 1.7rem; }
    .dr-notice-inner      { gap: 10px; }
}

@media (max-width: 480px) {
    .dr-cta-btn-primary,
    .dr-cta-btn-outline   { width: 100%; justify-content: center; }
    .dr-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 160px 160px 160px;
    }
    .dr-mosaic-item.tall  { grid-row: span 1; }
}
