/* ============================================
   CONTACT PAGE — Specific Styles
   ============================================ */

.nav__link--active {
    color: var(--text-primary);
}
.nav__link--active::after {
    width: 100%;
}

/* ============================================
   CONTACT HERO
   ============================================ */
.contact-hero {
    position: relative;
    padding: 200px 0 80px;
    overflow: hidden;
}

.contact-hero__glow {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 163, 60, 0.08), transparent 65%);
    pointer-events: none;
}

.contact-hero__content {
    max-width: var(--content-wide);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.contact-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s var(--ease-smooth) 0.3s forwards;
}

.contact-hero__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-smooth) 0.5s forwards;
}

/* ============================================
   MAIN CONTACT SECTION
   ============================================ */
.contact-main {
    background: var(--bg-primary);
    padding-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrap {
    padding: 48px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border);
}

.contact-form__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.contact-form__subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(212, 163, 60, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 163, 60, 0.08);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

.contact-form__submit {
    align-self: flex-start;
    margin-top: 8px;
    width: auto;
}

/* Success Message */
.form-success {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(40, 200, 64, 0.08);
    border: 1px solid rgba(40, 200, 64, 0.2);
    border-radius: 14px;
    margin-top: 8px;
}

.form-success__icon {
    width: 28px;
    height: 28px;
    background: rgba(40, 200, 64, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #28C840;
    flex-shrink: 0;
}

.form-success__text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-success__text strong {
    color: #28C840;
}

/* ============================================
   CONTACT INFO SIDEBAR
   ============================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(212, 163, 60, 0.12);
}

.contact-info-card__icon {
    font-size: 22px;
    margin-bottom: 14px;
}

.contact-info-card__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-info-card__value {
    font-size: 15px;
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.contact-info-card__value:hover {
    color: var(--accent-hover);
}

.contact-info-card__note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Locations */
.contact-info-card__location {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.contact-info-card__location:last-child {
    margin-bottom: 0;
}

.contact-info-card__location-flag {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-card__location strong {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.contact-info-card__location p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Links */
.contact-info-card__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-card__link {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card__link:hover {
    color: var(--accent-hover);
}

/* Engagement Tags */
.contact-engage {
    padding: 28px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.contact-engage__title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.contact-engage__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-engage__tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
}

/* ============================================
   QUICK ACTIONS
   ============================================ */
.contact-actions {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.contact-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-action {
    padding: 36px 28px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, transform 0.3s var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

.contact-action:hover {
    border-color: rgba(212, 163, 60, 0.2);
    transform: translateY(-4px);
}

.contact-action__icon {
    font-size: 28px;
    margin-bottom: 18px;
}

.contact-action__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.contact-action__desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.contact-action__link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.contact-action__link:hover {
    gap: 10px;
}

/* ============================================
   RESPONSIVE — CONTACT PAGE
   ============================================ */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-actions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 160px 0 60px;
    }

    .contact-hero__content {
        padding: 0 20px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-actions__grid {
        grid-template-columns: 1fr;
    }

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