/* ==========================================================================
   BUSINESS REGISTRATION STYLESHEET - JGSS
   Cream Background, Maroon/Dark Green/Gold Accents
   ========================================================================== */

/* Global Variables & Fonts */
:root {
    --cream: #fff4dc;
    --maroon: #7b1414;
    --maroon-hover: #5d0f0f;
    --maroon-light: rgba(123, 20, 20, 0.08);
    --dark-green: #073f25;
    --dark-green-hover: #042717;
    --dark-green-light: rgba(7, 63, 37, 0.08);
    --gold: #c8962f;
    --gold-dark: #b08123;
    --light-gold: #f8df9d;
    --text-dark: #2b1b12;
    --text-muted: #5c4b40;
    --bg-white: #ffffff;
    --border-color: #ebdcb9;
    --shadow-sm: 0 2px 4px rgba(43, 27, 18, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(123, 20, 20, 0.08);
    --shadow-lg: 0 20px 35px -10px rgba(123, 20, 20, 0.15);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Lang toggling visibility */
body.lang-gu [data-lang="en"] { display: none !important; }
body.lang-en [data-lang="gu"] { display: none !important; }

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

/* ==========================================================================
   1. NAVIGATION HEADER (Unified Website Style)
   ========================================================================== */
.main-header {
    background-color: rgba(255, 244, 220, 0.95);
    border-bottom: 2px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 244, 220, 0.98);
}

.header-container {
    max-width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.header-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

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

.org-slogan {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.org-name {
    font-family: 'Outfit', 'Noto Sans Gujarati', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--maroon);
    margin-top: 2px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    padding: 8px 4px;
    position: relative;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--maroon);
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    background-color: var(--border-color);
    border-radius: 30px;
    padding: 3px;
}

.lang-btn {
    border: none;
    background: none;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.lang-btn.active {
    background-color: var(--maroon);
    color: var(--bg-white);
}

.btn-header-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: var(--bg-white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    transition: var(--transition-smooth);
}

.btn-header-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--maroon);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Drawer overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--cream);
    box-shadow: 5px 0 25px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 120px 30px 40px;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-menu ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 700;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   2. HERO BANNER SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 90px;
    background: linear-gradient(135deg, rgba(123, 20, 20, 0.04) 0%, rgba(7, 63, 37, 0.04) 100%);
    border-bottom: 1.5px solid var(--border-color);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.badge-reg-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--dark-green);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(7, 63, 37, 0.15);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero-content h2 {
    font-family: 'Outfit', 'Noto Sans Gujarati', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--maroon);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--maroon);
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(123, 20, 20, 0.2);
}

.btn-primary:hover {
    background-color: var(--maroon-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(123, 20, 20, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--maroon);
    color: var(--maroon);
}

.btn-secondary:hover {
    background-color: var(--maroon-light);
    transform: translateY(-2px);
}

/* Visual Collage Wrapper */
.hero-visual-collage {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-canvas {
    position: relative;
    width: 320px;
    height: 320px;
    background-color: #fff;
    border-radius: 50%;
    border: 5px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateSlow 40s linear infinite;
}

.visual-center-emblem {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
    z-index: 5;
    background: #fff;
    animation: counterRotate 40s linear infinite;
}

.visual-center-emblem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-icon-node {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--cream);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--maroon);
    z-index: 10;
    animation: counterRotate 40s linear infinite;
}

.visual-icon-node svg {
    width: 28px;
    height: 28px;
}

.visual-icon-node.node-1 { top: -20px; left: 130px; } /* Chart */
.visual-icon-node.node-2 { top: 110px; right: -20px; } /* Handshake */
.visual-icon-node.node-3 { bottom: -20px; left: 130px; } /* Shop */
.visual-icon-node.node-4 { top: 110px; left: -20px; } /* Network */

/* ==========================================================================
   3. WHY JOIN SECTION
   ========================================================================== */
.why-join-section {
    background-color: #fffaf0;
    border-bottom: 1.5px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Outfit', 'Noto Sans Gujarati', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--maroon);
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background-color: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.why-icon {
    width: 65px;
    height: 65px;
    background-color: var(--maroon-light);
    color: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--maroon);
    color: var(--bg-white);
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   4. FORM REGISTRATION AREA (Maroon Top Accent Grid Cards)
   ========================================================================== */
.reg-section {
    background-color: var(--cream);
}

.form-desc-card {
    background-color: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-left: 5px solid var(--gold);
    border-radius: var(--border-radius-sm);
    padding: 20px 24px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.form-desc-card p {
    font-size: 1.02rem;
    color: var(--text-dark);
    font-weight: 600;
}

.registration-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section-card {
    background-color: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-top: 5px solid var(--maroon);
    border-radius: var(--border-radius-md);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.form-section-card h3 {
    font-size: 1.35rem;
    color: var(--maroon);
    font-weight: 800;
    margin-bottom: 25px;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-card h3 span.sec-num {
    background-color: var(--maroon-light);
    color: var(--maroon);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
}

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

.form-group {
    margin-bottom: 22px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label span.required {
    color: #EF4444;
    margin-left: 3px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--maroon);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(123, 20, 20, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b1414' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
}

/* Custom Checkbox/Radio Grid layout */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 5px;
}

.option-choice-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

.option-choice-wrap input[type="checkbox"],
.option-choice-wrap input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--maroon);
    cursor: pointer;
}

.radio-choices-row {
    display: flex;
    gap: 30px;
    padding-top: 5px;
}

/* Consent Block styles */
.consent-card {
    background-color: var(--maroon-light);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 20px 24px;
    margin-bottom: 40px;
}

.consent-choice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.5;
}

.consent-choice input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--maroon);
    cursor: pointer;
    flex-shrink: 0;
}

.form-submit-row {
    text-align: center;
}

.btn-submit {
    background-color: var(--dark-green);
    color: var(--bg-white);
    font-size: 1.1rem;
    padding: 18px 45px;
    border-radius: var(--border-radius-sm);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 20px rgba(7, 63, 37, 0.2);
}

.btn-submit:hover {
    background-color: var(--dark-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(7, 63, 37, 0.3);
}

/* ==========================================================================
   5. CONTACT INFO FOOTER
   ========================================================================== */
.contact-section {
    background-color: #fffaf0;
    border-top: 1.5px solid var(--border-color);
    text-align: center;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
}

.contact-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--maroon);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 50px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(123, 20, 20, 0.15);
    transition: var(--transition-smooth);
}

.contact-phone-btn:hover {
    background-color: var(--maroon-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 20, 20, 0.25);
}

.contact-phone-btn svg {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   6. SITE FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--maroon);
    color: var(--bg-white);
    padding: 40px 0;
    text-align: center;
    border-top: 4px solid var(--gold);
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-bottom: 15px;
}

.footer-name {
    font-family: 'Outfit', 'Noto Sans Gujarati', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.footer-slogan {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--light-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* ==========================================================================
   7. THANK YOU SUCCESS OVERLAY MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 27, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.4s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--cream);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    padding: 45px 35px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-icon-wrap {
    width: 70px;
    height: 70px;
    background-color: var(--dark-green-light);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(7, 63, 37, 0.1);
}

.modal-icon-wrap svg {
    width: 35px;
    height: 35px;
}

.modal-card h3 {
    font-size: 1.6rem;
    color: var(--maroon);
    font-weight: 800;
    margin-bottom: 15px;
}

.modal-main-msg {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-modal-close {
    background-color: var(--maroon);
    color: var(--bg-white);
    padding: 12px 30px;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: none;
}

.btn-modal-close:hover {
    background-color: var(--maroon-hover);
}

/* ==========================================================================
   8. ADMIN EXCEL CSV EXPORTER DASHBOARD
   ========================================================================== */
.admin-card {
    background: var(--bg-white);
    border-top: 5px solid var(--gold) !important;
    text-align: left;
}

.admin-stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.admin-stat-box {
    background-color: var(--cream);
    border: 1.5px solid var(--border-color);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    flex: 1;
}

.admin-stat-box h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.admin-stat-box span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--maroon);
    display: block;
    margin-top: 5px;
}

.admin-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-admin-dl {
    background-color: var(--dark-green);
    color: var(--bg-white);
    font-size: 0.95rem;
}

.btn-admin-dl:hover {
    background-color: var(--dark-green-hover);
}

.btn-admin-clear {
    background-color: #EF4444;
    color: var(--bg-white);
    font-size: 0.95rem;
}

.btn-admin-clear:hover {
    background-color: #DC2626;
}

/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 70px;
    }
    
    .hero-content h2 {
        font-size: 2.3rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-header {
        background-color: var(--cream);
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .badge-reg-open {
        margin: 0 auto 20px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual-collage {
        height: 320px;
    }
    
    .visual-canvas {
        width: 250px;
        height: 250px;
    }
    
    .visual-center-emblem {
        width: 110px;
        height: 110px;
    }
    
    .visual-icon-node {
        width: 50px;
        height: 50px;
    }
    
    .visual-icon-node svg {
        width: 22px;
        height: 22px;
    }
    
    .visual-icon-node.node-1 { top: -15px; left: 100px; }
    .visual-icon-node.node-2 { top: 85px; right: -15px; }
    .visual-icon-node.node-3 { bottom: -15px; left: 100px; }
    .visual-icon-node.node-4 { top: 85px; left: -15px; }
    
    .form-section-card {
        padding: 30px 20px;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-choices-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .admin-actions {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   10. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counterRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
