/* ====================================
   CONTACT PAGE
==================================== */

/* Hero */

.contact-hero {

    padding: 100px 0;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );

}

.hero-tag {

    display: inline-block;

    padding: 8px 20px;

    background: #d4af37;

    color: #111827;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.contact-hero h1 {

    color: #ffffff;

    font-size: 60px;

    margin-bottom: 20px;

}

.contact-hero p {

    color: #e5e7eb;

    font-size: 22px;

}


/* 共用區塊 */

.contact-intro,
.contact-info,
.contact-form-section,
.contact-message,
.contact-quote,
.contact-cta {

    padding: 90px 0;

}

.narrow {

    max-width: 900px;

    margin: auto;

}

.section-title {

    text-align: center;

    margin-bottom: 60px;

}

.section-title h2 {

    font-size: 42px;

    color: #0f172a;

    position: relative;

}

.section-title h2::after {

    content: "";

    display: block;

    width: 80px;
    height: 4px;

    background: #d4af37;

    margin: 15px auto 0;

}

.contact-intro p,
.contact-message p {

    font-size: 20px;

    line-height: 2;

    color: #374151;

    margin-bottom: 25px;

    text-align: center;

}


/* Contact Info */

.contact-info {

    background: #f8fafc;

}

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap: 30px;

}

.contact-card {

    background: #ffffff;

    border-radius: 20px;

    padding: 40px;

    text-align: center;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08);

    transition: .3s;

}

.contact-card:hover {

    transform: translateY(-8px);

}

.contact-icon {

    font-size: 48px;

    margin-bottom: 20px;

}

.contact-card h3 {

    margin-bottom: 15px;

    font-size: 24px;

    color: #111827;

}

.contact-card a {

    color: #d4af37;

    text-decoration: none;

    font-weight: 600;

    word-break: break-word;

}

.contact-card a:hover {

    text-decoration: underline;

}


/* Contact Form */

.contact-form-section {

    background: #ffffff;

}

.form-wrapper {

    max-width: 900px;

    margin: auto;

}

.contact-form {

    background: #ffffff;

    border-radius: 24px;

    padding: 50px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

}

.form-group {

    margin-bottom: 25px;

}

.form-group label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;

    color: #111827;

}

.form-group input,
.form-group textarea {

    width: 100%;

    padding: 15px 18px;

    border: 1px solid #d1d5db;

    border-radius: 12px;

    font-size: 16px;

    transition: .3s;

    box-sizing: border-box;

}

.form-group input:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #d4af37;

    box-shadow:
        0 0 0 4px rgba(212,175,55,0.15);

}

.form-submit {

    text-align: center;

    margin-top: 35px;

}


/* Button */

.btn-primary {

    display: inline-block;

    background: #d4af37;

    color: #111827;

    text-decoration: none;

    border: none;

    padding: 16px 36px;

    border-radius: 999px;

    font-weight: bold;

    font-size: 16px;

    cursor: pointer;

    transition: .3s;

}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(212,175,55,0.35);

}


/* Message */

.contact-message {

    background: #f8fafc;

}

.author-sign {

    margin-top: 40px;

    text-align: center;

    font-size: 24px;

    font-weight: bold;

    color: #d4af37;

}


/* Quote */

.contact-quote {

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );

}

.contact-quote blockquote {

    max-width: 1000px;

    margin: auto;

    text-align: center;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.8;

    font-weight: 700;

}


/* CTA */

.contact-cta {

    text-align: center;

    background: #ffffff;

}

.contact-cta h2 {

    font-size: 42px;

    margin-bottom: 20px;

}

.contact-cta p {

    font-size: 20px;

    color: #6b7280;

    margin-bottom: 35px;

}


/* Footer */

.site-footer {

    background: #111827;

    color: #ffffff;

    padding: 60px 0 30px;

}

.footer-content {

    display: flex;

    justify-content: space-between;

    gap: 40px;

    flex-wrap: wrap;

}

.footer-logo h3 {

    margin-bottom: 15px;

}

.footer-links {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.footer-links a {

    color: #cbd5e1;

    text-decoration: none;

}

.footer-links a:hover {

    color: #d4af37;

}

.footer-bottom {

    margin-top: 40px;

    padding-top: 25px;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,0.1);

    color: #94a3b8;

}


/* ====================================
   MOBILE
==================================== */

@media (max-width: 768px) {

    .contact-hero h1 {

        font-size: 42px;

    }

    .contact-hero p {

        font-size: 18px;

    }

    .section-title h2 {

        font-size: 32px;

    }

    .contact-intro p,
    .contact-message p {

        font-size: 18px;

    }

    .contact-form {

        padding: 30px;

    }

    .contact-quote blockquote {

        font-size: 28px;

    }

    .contact-cta h2 {

        font-size: 30px;

    }

}