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

:root {
    --bg-dark: #15253a;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent-blue: #3b82f6; /* Modern vivid blue */
    --accent-glow: #60a5fa;
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-border: rgba(255, 255, 255, 0.1);
    --success: #10b981;
    --error: #ef4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Background Light Leaks */
.background-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.light-leak {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.8;
    will-change: transform, opacity;
}

.leak-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent 70%);
    animation: float 15s infinite ease-in-out, breathe 10s infinite ease-in-out;
    animation-delay: 0s, 0s;
}

.leak-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.5), transparent 70%);
    animation: float 18s infinite ease-in-out, breathe 12s infinite ease-in-out;
    animation-delay: -3s, -1s;
}

.leak-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.4), transparent 70%);
    animation: float 20s infinite ease-in-out, breathe 11s infinite ease-in-out;
    animation-delay: -6s, -2s;
    mix-blend-mode: screen;
}

@keyframes float {
    0% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translate(8%, -12%) rotate(10deg) scale(1.2); 
    }
    50% { 
        transform: translate(-8%, 8%) rotate(-10deg) scale(0.8); 
    }
    75% { 
        transform: translate(6%, -6%) rotate(6deg) scale(1.1); 
    }
    100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
    }
}

@keyframes breathe {
    0% { 
        opacity: 0.65; 
    }
    50% { 
        opacity: 0.9; 
    }
    100% { 
        opacity: 0.65; 
    }
}

/* Main Layout */
.main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column: Branding & Info */
.brand-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-glow);
    margin-bottom: 1.5rem;
}

.status-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-glow);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.main-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.detail-item h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.detail-item p, .detail-item a {
    font-size: 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.detail-item a:hover {
    color: var(--accent-glow);
}

/* Right Column: Form */
.form-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.modern-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.modern-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--input-border);
    color: var(--text-main);
    padding: 0.75rem 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 0;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-blue);
    background: linear-gradient(to bottom, transparent 95%, rgba(59, 130, 246, 0.1) 100%);
}

.modern-form input:focus + label,
.modern-form textarea:focus + label {
    color: var(--accent-blue);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Checkbox Styles */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label,
.modern-form .checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0.875rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    transition: color 0.2s;
    margin-bottom: 0 !important;
}

.checkbox-label:hover {
    color: var(--text-main);
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    aspect-ratio: 1;
    margin-top: 0;
    margin-right: 0;
    border: 2px solid var(--input-border);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    padding: 0;
    align-self: flex-start;
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label span {
    flex: 1;
    user-select: none;
    display: block;
    align-self: flex-start;
    min-width: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .main-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .form-section {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .main-wrapper {
        padding: 1.5rem;
    }

    .main-headline {
        font-size: 2rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
        border: none;
        background: transparent;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
    }
    
    .modern-form input, 
    .modern-form textarea {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--input-border);
        border-radius: 8px;
        padding: 0.75rem 1rem;
    }
    
    .modern-form input:focus, 
    .modern-form textarea:focus {
        border-bottom: 1px solid var(--accent-blue); /* Fallback/reset */
        border-color: var(--accent-blue);
    }
}
