/* ==========================================================================
   PUNJAB COLLEGE & AI CHATBOT SYSTEM - MODERN STYLING
   ========================================================================== */

:root {
    --bg-dark: #0b0f19;
    --bg-card: rgba(18, 26, 44, 0.75);
    --bg-card-border: rgba(255, 255, 255, 0.08);
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-glow: rgba(79, 70, 229, 0.35);
    --accent-teal: #06b6d4;
    --accent-green: #10b981;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #075E54;
    --instagram-grad: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-sub: #cbd5e1;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-glow: 0 10px 30px -10px rgba(79, 70, 229, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.12) 0px, transparent 50%);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bg-card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-badge {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: var(--shadow-glow);
}

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

.college-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.college-sub {
    font-size: 0.7rem;
    color: var(--accent-teal);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn.active {
    color: #fff;
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.2);
}

.nav-btn.highlight {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

/* MAIN CONTENT LAYOUT */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 6rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.35s ease-in-out forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HERO CARD */
.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent-teal);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 720px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

/* BUTTONS */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid var(--bg-card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-teal);
    border: 1px solid var(--accent-teal);
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

/* STATS ROW */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.4);
}

.stat-card .icon {
    font-size: 1.8rem;
    color: var(--accent-teal);
    margin-bottom: 0.75rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* SECTION HEADERS */
.section-container {
    margin-top: 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* PROGRAM CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-badge {
    align-self: flex-start;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.card-badge.med { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.card-badge.eng { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.card-badge.ics { background: rgba(6, 182, 212, 0.15); color: var(--accent-teal); border: 1px solid rgba(6, 182, 212, 0.3); }
.card-badge.bs { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.card-badge.bba { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.card-badge.scholarship { background: rgba(236, 72, 153, 0.15); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.3); }

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-info {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-sub);
}

.card-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--bg-card-border);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.card-btn.highlight {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
}

/* MULTI-CHANNEL SIMULATOR TAB */
.simulator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.simulator-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.simulator-header p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.channel-selector {
    display: inline-flex;
    background: var(--bg-card);
    padding: 0.4rem;
    border-radius: 40px;
    border: 1px solid var(--bg-card-border);
    gap: 0.5rem;
}

.channel-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.channel-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.simulator-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

/* PHONE MOCKUPS */
.phone-mockup {
    width: 380px;
    height: 640px;
    border-radius: 36px;
    border: 8px solid #1e293b;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    display: none;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.phone-mockup.active {
    display: flex;
    animation: zoomIn 0.3s ease-out;
}

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

/* WHATSAPP THEME */
.phone-header.wa-header {
    background: var(--whatsapp-dark);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-left .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #128C7E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.header-title {
    display: flex;
    flex-direction: column;
}

.header-title .name {
    font-weight: 700;
    font-size: 0.9rem;
}

.header-title .status {
    font-size: 0.7rem;
    color: #a7f3d0;
}

.online { color: #10b981; font-size: 0.6rem; }

.phone-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wa-body {
    background-color: #0b141a;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
}

.date-divider {
    align-self: center;
    background: #182229;
    color: #8696a0;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.7rem;
    margin: 0.5rem 0;
}

/* CHAT BUBBLES */
.chat-bubble {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.45;
    position: relative;
    word-break: break-word;
}

.bot-bubble {
    align-self: flex-start;
    background: #202c33;
    color: #e9edef;
    border-top-left-radius: 2px;
}

.sender-name {
    font-size: 0.72rem;
    color: var(--whatsapp-green);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.user-bubble {
    align-self: flex-end;
    background: #005c4b;
    color: #e9edef;
    border-top-right-radius: 2px;
}

.timestamp {
    font-size: 0.65rem;
    color: #8696a0;
    text-align: right;
    margin-top: 0.3rem;
}

/* FOOTER INPUTS */
.phone-footer {
    padding: 0.75rem;
    background: #202c33;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.phone-footer input {
    flex: 1;
    background: #2a3942;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 20px;
    color: #fff;
    font-size: 0.88rem;
    outline: none;
}

.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.send-btn.wa-btn { background: var(--whatsapp-green); }

/* INSTAGRAM THEME */
.phone-header.ig-header {
    background: #000;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #262626;
}

.ig-avatar {
    background: var(--instagram-grad);
}

.ig-body {
    background: #000;
}

.ig-bot {
    background: #262626;
    color: #fff;
    border-radius: 18px;
}

.ig-user {
    background: #3797f0;
    color: #fff;
    border-radius: 18px;
    align-self: flex-end;
}

.ig-footer {
    background: #000;
    border-top: 1px solid #262626;
}

.ig-footer input {
    background: #121212;
    border: 1px solid #262626;
}

.send-btn.ig-btn {
    background: #3797f0;
}

/* WEB WIDGET THEME */
.web-header {
    background: linear-gradient(135deg, var(--primary), var(--accent-teal));
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.web-avatar {
    background: rgba(255, 255, 255, 0.2);
}

.web-body {
    background: #0f172a;
}

.web-footer {
    background: #1e293b;
}

.send-btn.web-btn {
    background: var(--primary);
}

/* ADMIN LEADS TABLE TAB */
.leads-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.table-container {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    overflow-x: auto;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.leads-table th {
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
    color: var(--text-sub);
    font-family: var(--font-heading);
    font-weight: 700;
    border-bottom: 1px solid var(--bg-card-border);
}

.leads-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--bg-card-border);
    color: var(--text-main);
}

.leads-table tr:last-child td {
    border-bottom: none;
}

.channel-pill {
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.channel-pill.web { background: rgba(79, 70, 229, 0.2); color: #a5b4fc; }
.channel-pill.whatsapp { background: rgba(37, 211, 102, 0.2); color: #86efac; }
.channel-pill.social { background: rgba(236, 72, 153, 0.2); color: #f472b6; }

/* N8N & CODE SECTION */
.n8n-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.code-box {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--bg-card-border);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--primary);
}

pre {
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.82rem;
    color: #a5b4fc;
    overflow-x: auto;
    max-height: 400px;
}

.webhook-urls {
    margin-top: 1.5rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.webhook-urls h4 {
    font-size: 0.9rem;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.webhook-urls ul {
    list-style: none;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* FLOATING WIDGET */
.widget-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.widget-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-teal));
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.widget-toggle .icon-close { display: none; }

.badge-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border: 2px solid var(--bg-dark);
    border-radius: 50%;
}

.widget-box {
    width: 360px;
    height: 520px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 74px;
    right: 0;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: popup 0.3s ease-out forwards;
}

@keyframes popup {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.widget-header {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bot-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.bot-status {
    font-size: 0.72rem;
    color: #bfdbfe;
}

.close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.widget-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.quick-options button {
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.3);
    color: #a5b4fc;
    padding: 0.35rem 0.7rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-options button:hover {
    background: var(--primary);
    color: #fff;
}

.widget-footer {
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.8);
    border-top: 1px solid var(--bg-card-border);
    display: flex;
    gap: 0.5rem;
}

.widget-footer input {
    flex: 1;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--bg-card-border);
    padding: 0.65rem 1rem;
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}

.widget-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MODAL */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    width: 90%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-sub);
    margin-bottom: 0.4rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: #090d16;
    border: 1px solid var(--bg-card-border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

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