/* :root {
    --bg: #050505;
    --card: #0d0d0d;
    --border: rgba(255,255,255,.08);
    --text: #ffffff;
    --muted: #9a9a9a;
    --accent: #d89b00;
}

body {
    font-family: Inter, sans-serif;
    background: #000;
    color: var(--text);
} */

.open-modal {
    background: var(--accent);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: rgba(10,10,10,.95);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.6),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.modal-subtitle {
    color: var(--accent);
    letter-spacing: 5px;
    font-size: 12px;
    margin-bottom: 16px;
}

.modal-title {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 20px;
}

.modal-description {
    color: var(--muted);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 36px;
}

.contact-tabs {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 32px;
}

.tab {
    flex: 1;
    background: transparent;
    color: white;
    border: none;
    padding: 18px;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
}

.tab.active {
    background: rgba(216,155,0,.15);
    color: var(--accent);
}

.tab-content {
    display: none;
}

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

.contact-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    gap: 32px;
    align-items: center;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        rgba(255,255,255,.01)
    );
}

.contact-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--muted);
    margin-bottom: 24px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    background: var(--accent);
    border-radius: 14px;
    padding: 18px 34px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

.email-form input {
    height: 60px;
    background: #121212;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 18px;
    color: white;
}

.modal-footer {
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 768px) {

    .modal {
        padding: 28px;
    }

    .modal-title {
        font-size: 38px;
    }

    .contact-tabs {
        flex-direction: column;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-info h3 {
        font-size: 28px;
    }
}