/* Contact Page Styles */
.contact-page-wrapper {
    padding: 40px 0 80px;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.contact-page-wrapper .content-layout-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #f26a30 0%, #f2844a 100%);
    border-radius: 24px;
    padding: 60px 40px;
    margin: 0 auto 50px;
    max-width: 100%;
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 40px rgba(242, 106, 48, 0.2);
}

.contact-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}

.contact-hero-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Section Header */
.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1d;
    margin: 0 0 8px;
}

.section-header p {
    font-size: 15px;
    color: #6a6a6a;
    margin: 0;
}

/* Contact Form */
.contact-form-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.form-group label .required {
    color: #f26a30;
    margin-right: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    color: #1d1d1d;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f26a30;
    box-shadow: 0 0 0 4px rgba(242, 106, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.field-error {
    display: block;
    font-size: 13px;
    color: #f26a30;
    margin-top: 4px;
    min-height: 20px;
}

.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: #9facaf;
    color: #08171a;
    border: 1px solid #9facaf;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-actions {
    margin-top: 8px;
}

/* Contact Info */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f26a30 0%, #f2844a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1d;
    margin: 0 0 8px;
}

.info-content p {
    font-size: 16px;
    color: #333;
    margin: 0 0 6px;
}

.info-content p a {
    color: #f26a30;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.info-content p a:hover {
    color: #f2844a;
    text-decoration: underline;
}

.info-note {
    display: block;
    font-size: 13px;
    color: #6a6a6a;
    margin-top: 4px;
}

/* Social Links */
.social-links {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.social-links h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1d;
    margin: 0 0 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f26a30 0%, #f2844a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 106, 48, 0.3);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    position: relative;
}

.btn-color-primary {
    background: linear-gradient(135deg, #f26a30 0%, #f2844a 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(242, 106, 48, 0.3);
}

.btn-color-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(242, 106, 48, 0.4);
}

.btn-size-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-shape-semi-round {
    border-radius: 12px;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-section {
        order: 1;
    }
    
    .contact-info-section {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 20px 0 60px;
    }
    
    .contact-hero {
        padding: 40px 24px;
        margin-bottom: 30px;
    }
    
    .contact-hero-title {
        font-size: 32px;
    }
    
    .contact-hero-subtitle {
        font-size: 16px;
    }
    
    .contact-form-section {
        padding: 28px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 32px 20px;
        border-radius: 16px;
    }
    
    .contact-hero-title {
        font-size: 26px;
    }
    
    .contact-hero-subtitle {
        font-size: 14px;
    }
    
    .contact-form-section {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}

