/* Contact 页专用样式（作用域限定，不影响导航） */
.sultry-contact-page {
    margin: 0;
    padding: 0;
    background: #000;
    color: #e8e8e8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.sultry-contact-page *,
.sultry-contact-page *::before,
.sultry-contact-page *::after {
    box-sizing: border-box;
}

.sultry-contact-page .background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top left, rgba(186, 85, 127, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at center, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

.sultry-contact-page .noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' /%3E%3C/svg%3E");
}

.sultry-contact-page .grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(232, 197, 71, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 197, 71, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: sultryContactGridMove 30s linear infinite;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

@keyframes sultryContactGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.sultry-contact-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.sultry-contact-page h1 {
    font-size: 4.5em;
    font-weight: 900;
    text-align: center;
    margin: 0 0 30px;
    line-height: 1;
    letter-spacing: -2px;
    color: inherit;
    border: none;
    padding: 0;
}

.sultry-contact-page h1 span {
    background: linear-gradient(135deg, #ffd700 0%, #e8c547 25%, #ba557f 50%, #8a2be2 75%, #e8c547 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sultryContactLuxuryGradient 8s ease infinite;
    filter: drop-shadow(0 0 30px rgba(232, 197, 71, 0.3));
}

@keyframes sultryContactLuxuryGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sultry-contact-page .intro-text {
    text-align: center;
    font-size: 1.2em;
    color: #c8c8c8;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
}

.sultry-contact-page .sub-text {
    text-align: center;
    font-size: 1.05em;
    color: #999;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.sultry-contact-page .contact-cards {
    display: grid;
    gap: 25px;
    margin: 0 auto 50px;
    max-width: 600px;
}

.sultry-contact-page .contact-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(232, 197, 71, 0.1);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.sultry-contact-page .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 71, 0.1), transparent);
    transition: left 0.6s ease;
}

.sultry-contact-page .contact-card:hover::before {
    left: 100%;
}

.sultry-contact-page .contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 197, 71, 0.3);
    box-shadow: 0 20px 60px rgba(232, 197, 71, 0.15);
}

.sultry-contact-page .contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.sultry-contact-page .contact-icon {
    font-size: 2em;
    line-height: 1;
}

.sultry-contact-page .contact-title {
    font-size: 1.5em;
    color: #e8c547 !important;
    font-weight: 700;
    margin: 0;
    border: none;
    padding: 0;
    line-height: 1.2;
}

.sultry-contact-page .email-address {
    font-size: 1.3em;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-left: 47px;
    word-break: break-all;
}

.sultry-contact-page .social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #daa960;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    margin-left: 47px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: none;
}

.sultry-contact-page .social-link::after {
    content: '→';
    position: absolute;
    right: -25px;
    opacity: 0;
    transition: all 0.3s ease;
}

.sultry-contact-page .social-link:hover {
    color: #e8c547;
    transform: translateX(5px);
}

.sultry-contact-page .social-link:hover::after {
    opacity: 1;
    right: -20px;
}

.sultry-contact-page .response-time {
    text-align: center;
    color: #666;
    font-size: 1em;
    font-style: italic;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(232, 197, 71, 0.1);
}

.sultry-contact-page .corporate-info {
    text-align: center;
    color: #555;
    font-size: 0.85em;
    margin-top: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.sultry-contact-page .corporate-info strong {
    color: #d4af37;
}

.sultry-contact-page .corporate-info p {
    margin-bottom: 8px;
    color: #555;
}

.sultry-contact-page .decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8c547, transparent);
    margin: 40px auto;
    opacity: 0.6;
}

@keyframes sultryContactPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.sultry-contact-page .pulse {
    animation: sultryContactPulse 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .sultry-contact-page .container {
        padding: 40px 20px;
        text-align: center;
    }

    .sultry-contact-page h1 {
        font-size: clamp(2.5em, 8vw, 3.5em);
        margin-bottom: 20px;
    }

    .sultry-contact-page .intro-text {
        font-size: 1.1em;
    }

    .sultry-contact-page .sub-text {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .sultry-contact-page .contact-card {
        padding: 25px;
        text-align: left;
    }

    .sultry-contact-page .contact-title {
        font-size: 1.3em;
    }

    .sultry-contact-page .email-address,
    .sultry-contact-page .social-link {
        font-size: 1.1em;
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }

    .sultry-contact-page .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .sultry-contact-page h1 {
        font-size: clamp(2em, 7vw, 3em);
        letter-spacing: -1px;
    }

    .sultry-contact-page .contact-cards {
        gap: 20px;
    }

    .sultry-contact-page .contact-card {
        padding: 20px;
        border-radius: 16px;
    }

    .sultry-contact-page .contact-icon {
        font-size: 1.5em;
    }

    .sultry-contact-page .response-time {
        font-size: 0.9em;
    }
}
