/* Contact Page Styles */

.doa-contact-page {
    background: white;
    width: 100%;
    max-width: 100%;
}

/* Override GeneratePress */
.page-template-page-contact {
    max-width: 100% !important;
}

.page-template-page-contact .site-content,
.page-template-page-contact .content-area,
.page-template-page-contact .inside-article {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Container */
.doa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 0 40px;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    margin: 0 0 8px;
    font-size: 42px;
    color: white;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
}

/* Quick Links Section */
.contact-quick-links {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Contact Form Section */
.contact-content {
    padding: 50px 0 60px;
    background: white;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    color: #666;
    font-size: 15px;
    margin: 0 0 32px;
    line-height: 1.5;
    text-align: center;
}

/* Form Styles */
.doa-contact-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 6px;
}

.required {
    color: #ff4444;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3a9d82;
    box-shadow: 0 0 0 3px rgba(58, 157, 130, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit i {
    font-size: 13px;
}

/* Form Messages */
.form-success,
.form-error {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.form-success i,
.form-error i {
    font-size: 20px;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 6px;
}

.info-card a {
    color: #3a9d82;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #2f7f6e;
}

.info-note {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #764ba2;
    gap: 10px;
}

.info-link i {
    font-size: 11px;
}

/* Responsive */
@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .doa-container {
        padding: 0 20px;
    }

    .contact-hero {
        padding: 40px 0 30px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-quick-links {
        padding: 30px 0;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-content {
        padding: 40px 0 50px;
    }

    .doa-contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-card {
        padding: 20px 16px;
    }
}
