/* Contact Page Specific Styles */

.contact-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #FFF 0%, #FCE4EC 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 4rem 0;
    background: var(--background);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.5;
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-left: 2rem;
}

.help-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-message {
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-message.success {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    border: 2px solid #4CAF50;
    color: #2E7D32;
}

.form-message.success i {
    color: #4CAF50;
}

.form-message.error {
    background: linear-gradient(135deg, #FFEBEE 0%, #FCE4EC 100%);
    border: 2px solid #F44336;
    color: #C62828;
}

.form-message.error i {
    color: #F44336;
}

.form-message strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.25rem;
}

.form-message p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.form-message a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    text-align: center;
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.info-card.highlight .info-icon {
    background: rgba(255, 255, 255, 0.3);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-card.highlight h3 {
    color: white;
}

.info-card p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

.info-card.highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-card.highlight a {
    color: white;
}

.info-subtitle {
    font-size: 0.85rem;
    font-style: italic;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.info-card.highlight .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.info-card.highlight .btn-secondary:hover {
    background: var(--background);
}

/* Trust Badges */
.trust-badges {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid #4a5568;
}

.trust-badges h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.trust-badges p {
    color: #cbd5e0 !important;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Quick FAQ Section */
.quick-faq {
    padding: 4rem 0;
    background: white;
}

.quick-faq h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-color);
}

.faq-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-card p {
    color: var(--text-light);
    margin: 0;
}

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

    .contact-info-sidebar {
        order: -1;
    }

    .info-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        text-align: left;
        align-items: center;
    }

    .info-icon {
        margin: 0;
    }

    .info-card.highlight {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .info-card.highlight .info-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .badges {
        flex-direction: column;
    }
}

/* Google reCAPTCHA Styling */
.g-recaptcha {
    margin: 1rem 0;
    display: inline-block;
}

/* Center reCAPTCHA on mobile */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}
