.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
                url('/images/sec-1.webp') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero-content {
    color: #fcfcf5;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.contact-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    letter-spacing: 3px;
    color: #fff1d4;
}

.contact-main {
    background-color: #fcfcf5;
    padding: 120px 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}

.contact-section-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 300;
    color: #806e64;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(208, 101, 11, 0.08);
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-content h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: #806e64;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.info-content p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.8;
    color: #5a5a5a;
    font-weight: 300;
}

.info-content a {
    color: #5a5a5a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #d0650b;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #806e64;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 18px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    font-size: 16px;
    font-family: 'Noto Sans TC', sans-serif;
    transition: border-color 0.3s ease;
    background: #fff;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #806e64;
}

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

.btn-block {
    width: 100%;
    padding: 20px;
    font-size: 17px;
    letter-spacing: 3px;
    font-weight: 500;
    border-radius: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-block:hover {
    transform: translateY(-2px);
}

@media (max-width: 1366px) {
    .contact-container {
        padding: 0 40px;
    }

    .contact-grid {
        gap: 70px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 350px;
    }

    .contact-main {
        padding: 80px 0;
    }

    .contact-container {
        padding: 0 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-section-title {
        margin-bottom: 40px;
    }

    .info-group {
        gap: 35px;
    }

    .info-item {
        gap: 20px;
    }

    .info-icon {
        width: 48px;
        height: 48px;
    }

    .info-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 300px;
    }

    .contact-main {
        padding: 60px 0;
    }

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

    .contact-grid {
        gap: 50px;
    }

    .info-group {
        gap: 30px;
    }

    .form-group {
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 18px;
    }
}

