/* Contact Page Styles */
.contact-detail {
    padding-top: 60px;
    width: 540px;
    height: 805px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
}

/* Contact Header */
.contact-header {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    text-align: left;
}

.opportunity-title {
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    transform: none;
    flex: none;
    height: auto;
    position: relative;
    white-space: pre;
    width: auto;
}

/* Status with Wave Animation */
.green-dot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    height: 16px;
    position: relative;
    width: 16px;
}

.signal-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(52, 211, 153, 1);
    border-radius: 50%;
    position: absolute;
}

.signal-wave-container {
    width: 20px;
    height: 20px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signal-wave {
    width: 20px;
    height: 20px;
    border: 10px solid rgba(52, 211, 153, 1);
    border-radius: 50%;
    opacity: 0;
    animation: waveEffect 1.5s infinite;
}

@keyframes waveEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.opportunity-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    width: 500px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 100%;
    height: 48px;
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn svg {
    opacity: 0.5;
}

/* Divider */
.divider {
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 24px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 24px);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Contact Form */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    height: 48px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.btn-submit {
    background: #fff;
    color: #000;
    margin-top: 8px;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Response Time */
.response-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 24px;
}

.response-time svg {
    opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-detail {
        width: 100%;
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .form-row {
        flex-direction: column;
    }

    .action-buttons {
        width: 100%;
    }

    .action-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .btn-dark {
        width: 100%;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 80px auto;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.search-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 16px;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input-wrapper svg {
    color: rgba(255, 255, 255, 0.5);
}

.search-input {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    width: 100%;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-shortcut {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
}

.opportunities {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}