.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    text-decoration: none !important;
}

/* 혹시 모를 hover 상태도 처리 */
.logo:hover {
    text-decoration: none;
}

/* Contact Hero Section */
.contact-hero {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    text-align: center;
    margin-bottom: 4rem;
}

.overline {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.description {
    font-size: 1.2rem;
    color: #676767;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards */
.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 3, 40, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(255, 3, 40, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 3, 40, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background: rgba(255, 3, 40, 0.2);
    transform: scale(1.1);
}

.card-icon svg {
    stroke: var(--primary-red);
    transition: all 0.3s ease;
}

.contact-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #676767;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--light-red);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 3, 40, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 3, 40, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff0328' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 3, 40, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn svg {
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ff1f41;
    transform: translateY(-2px);
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

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

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
