/* Contact Page Styles */

.page-hero {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: #f8fafc;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    color: #94a3b8;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-form-section,
.contact-info-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #f8fafc;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Contact Form 7 Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
}

.wpcf7-form-control {
    margin-bottom: 20px;
}

.wpcf7-form-control label {
    display: block;
    color: #e2e8f0;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.wpcf7-form-control input[type="text"],
.wpcf7-form-control input[type="email"],
.wpcf7-form-control input[type="tel"],
.wpcf7-form-control textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wpcf7-form-control input[type="text"]:focus,
.wpcf7-form-control input[type="email"]:focus,
.wpcf7-form-control input[type="tel"]:focus,
.wpcf7-form-control textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.wpcf7-form-control textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.wpcf7-submit {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.wpcf7-submit:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

/* Form Messages */
.wpcf7-response-output {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #d1fae5;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #fee2e2;
}

/* Contact Info Section */
.contact-info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h3 {
    color: #06b6d4;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info-item p {
    color: #cbd5e1;
    margin: 5px 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #06b6d4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 20px;
    }
}

/* reCAPTCHA Styling */
.wpcf7 .g-recaptcha {
    margin-bottom: 20px;
}

/* Loading State */
.wpcf7-spinner {
    display: none;
}

.wpcf7.submitting .wpcf7-spinner {
    display: inline-block;
    margin-left: 10px;
}

/* Acceptance Checkbox */
.wpcf7-acceptance {
    margin-bottom: 20px;
}

.wpcf7-acceptance input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

.wpcf7-acceptance label {
    display: inline;
    color: #cbd5e1;
    cursor: pointer;
}
