/* Custom Modern Styling extending Bootstrap 5 */

:root {
    --font-family-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    --accent-glow: rgba(79, 70, 229, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.7);
}

body {
    font-family: var(--font-family-sans);
    background-color: #f3f4f6;
    color: #1f2937;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Ambient Background Lights */
.bg-blur-1 {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

.bg-blur-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    filter: blur(50px);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Header Top Accent Line */
.header-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

/* Icon Box Shape */
.icon-shape {
    width: 54px;
    height: 54px;
    background: var(--primary-gradient) !important;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.3);
}

/* Radio Custom Card Options */
.custom-option-card {
    border: 2px solid #e5e7eb;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
}

.custom-option-card:hover {
    border-color: #93c5fd;
    background-color: #f8fafc;
}

.form-check-input:checked ~ .form-check-label {
    color: #1e3a8a;
}

.custom-option-card:has(.form-check-input:checked) {
    border-color: #3b82f6;
    background-color: #eff6ff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Form Controls & Floating Inputs */
.form-control, .form-select {
    border: 1.5px solid #d1d5db;
    padding-left: 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-floating > label {
    padding-left: 1rem;
    color: #6b7280;
}

/* Honeypot Trap CSS - Invisible to humans */
.honeypot-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Cursor Pointer Utility */
.cursor-pointer {
    cursor: pointer;
}

/* Font Size 7 */
.fs-7 {
    font-size: 0.85rem;
}

/* Primary Button Styling */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4338ca 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4) !important;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Email Preview Table Styling */
.email-table-preview {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #333333;
}

.email-table-preview th {
    background-color: #1e293b;
    color: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
}

.email-table-preview td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    vertical-align: top;
}

.email-table-preview tr:nth-child(even) td {
    background-color: #f8fafc;
}

.email-table-label {
    width: 30%;
    font-weight: bold;
    color: #475569;
    background-color: #f1f5f9;
}
