
/* ============================================
   CONTACT PAGE STYLES - Updated Design
   ============================================ */

/* Main Contact Section - No Hero, Minimal Padding */
.contact-main-section {
    padding: 80px 20px 60px 20px; /* Reduced from 120px to 80px */
    min-height: calc(100vh - 80px);
    background: #000;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Page Title */
.contact-page-title {
    font-size: 2.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

/* Contact Options Wrapper */
.contact-options-wrapper {
    width: 100%;
    margin-bottom: 2rem;
}

.contact-options-container {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: stretch;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   CONTACT OPTIONS (Email/WhatsApp Cards) - FIXED
   ============================================ */

.contact-options {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: stretch;
    max-width: 800px;
    margin: 0 auto;
}

.contact-option-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon img {
    width: 64px;
    height: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
}

/* Contact Buttons */
.contact-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20b456;
    transform: translateY(-2px);
}

.email-btn {
    background: linear-gradient(135deg, #8B7355, #D4AF37);
    color: #fff;
}

.email-btn:hover {
    background: linear-gradient(135deg, #6B5632, #B8941F);
    transform: translateY(-2px);
}

.wechat-btn {
    background: #07C160;
    color: white;
}

.wechat-btn:hover {
    background: #06AD56;
    transform: translateY(-2px);
}

/* ============================================
   EMAIL FORM CONTAINER
   ============================================ */

.email-form-container {
    max-width: 600px;
    margin: 0 auto;
    display: none; /* Initially hidden */
}

.contact-form-wrapper {
    width: 100%;
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.form-header h2 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.email-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.form-header p {
    color: #ccc;
    margin: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

/* Form Fields */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #8B7355, #D4AF37);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #6B5632, #B8941F);
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

/* ============================================
   CHINESE-SPECIFIC STYLING
   ============================================ */

.contact-main-section.chinese-contact {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.chinese-contact .contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.chinese-contact .contact-layout.stacked .email-form-section {
    margin-top: 40px;
}

.chinese-contact .contact-page-title {
    font-size: 2.2rem;
    line-height: 1.3;
}

.chinese-contact .contact-info h3 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.chinese-contact .form-group label {
    font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .contact-options-container {
        gap: 3rem;
        max-width: 700px;
    }
    
    .chinese-contact .contact-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding: 60px 15px 40px 15px; /* Reduced from 100px to 60px for mobile */
    }
    
    .contact-page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-options-container {
        flex-direction: column;
        gap: 2rem;
        max-width: 400px;
    }
    
    .contact-option-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon img {
        width: 48px;
        height: 48px;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .email-form-section {
        padding: 1.5rem;
    }
    
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .chinese-contact .contact-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-main-section {
        padding: 50px 10px 30px 10px; /* Reduced from 90px to 50px for small mobile */
    }
    
    .contact-page-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-option-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon img {
        width: 40px;
        height: 40px;
    }
    
    .email-form-section {
        padding: 1rem;
    }
}