@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2466ea;
    --primary-hover: #1e55c7;
    --secondary: #0aacd7;
    --secondary-hover: #0891b2;
    --bg-dark-1: #080b1f;
    --bg-dark-2: #0c112b;
    --bg-glass: rgba(12, 17, 43, 0.75);
    --bg-glass-hover: rgba(12, 17, 43, 0.95);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(36, 102, 234, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.45);
    --glow: 0 0 25px rgba(36, 102, 234, 0.4);
    --glow-cyan: 0 0 25px rgba(10, 172, 215, 0.35);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(140deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 50%, var(--bg-dark-1) 100%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Subtle Ambient Glow Background */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(circle at 20% 30%, rgba(36, 102, 234, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(10, 172, 215, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(12, 17, 43, 0.8) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 6%;
    background-color: #080b1f;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-container:hover {
    opacity: 0.92;
    transform: scale(1.01);
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn-staff {
    background: rgba(36, 102, 234, 0.12);
    border: 1px solid var(--border-color);
    padding: 0.45rem 1.1rem !important;
    border-radius: 8px;
    color: var(--secondary) !important;
    font-weight: 600 !important;
}

.nav-btn-staff:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
}

.nav-btn-staff::after {
    display: none !important;
}

/* Glassmorphism Cards */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 1.25rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: var(--border-color);
    box-shadow: 0 16px 45px 0 rgba(0, 0, 0, 0.6);
}

/* Buttons */
.btn {
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(36, 102, 234, 0.65);
    color: #ffffff;
}

.btn-outline {
    background: rgba(12, 17, 43, 0.6);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(36, 102, 234, 0.15);
    border-color: var(--secondary);
    color: #ffffff;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1rem;
    flex: 1;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4.5rem 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(36, 102, 234, 0.15);
    border: 1px solid rgba(36, 102, 234, 0.35);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand Cards Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-card {
    background: rgba(12, 17, 43, 0.6);
    border: 1px solid var(--border-subtle);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    background: rgba(12, 17, 43, 0.9);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card h3 {
    font-size: 1.25rem;
    margin-top: 0.75rem;
    color: #ffffff;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(8, 11, 31, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: 0.65rem;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(36, 102, 234, 0.25);
    background: rgba(8, 11, 31, 0.95);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230aacd7'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.1rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* Drag and Drop Zone */
.dropzone {
    border: 2px dashed rgba(36, 102, 234, 0.4);
    border-radius: 0.85rem;
    padding: 2.5rem 2rem;
    text-align: center;
    background: rgba(8, 11, 31, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dropzone:hover,
.dropzone.dragover {
    border-color: var(--secondary);
    background: rgba(36, 102, 234, 0.1);
}

.dropzone-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.dropzone-text {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
}

.dropzone-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-preview-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.file-preview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(8, 11, 31, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.file-preview-item .remove-file {
    color: #ef4444;
    cursor: pointer;
    font-weight: bold;
    background: none;
    border: none;
    padding: 0.25rem 0.5rem;
}

/* FAQs Accordion */
.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.4rem 0;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    color: var(--text-muted);
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    line-height: 1.7;
}

/* Alerts */
.alert {
    padding: 1.1rem 1.3rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
    padding: 2.2rem 6%;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    background: #080b1f;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .header-logo {
        height: 38px;
    }
}