@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.contact-wrapper {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    animation: contactFloat 3s ease-in-out infinite;
}

@keyframes contactFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.gradient-text {
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card h5 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
}

.btn-chat {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-header i {
    font-size: 3rem;
    color: #667eea;
}

.form-header h4 {
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.form-header p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label-custom {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control-custom:focus,
.form-select-custom:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.char-counter {
    color: #9ca3af;
    font-size: 0.75rem;
    float: right;
    margin-top: 0.25rem;
}

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-check-label {
    color: #6b7280;
    font-size: 0.875rem;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
}

.success-alert {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.success-alert i {
    font-size: 3rem;
    color: #10b981;
}

.success-alert h6 {
    font-weight: 700;
    color: #065f46;
    margin: 0 0 0.25rem 0;
}

.success-alert p {
    color: #059669;
    margin: 0;
}

/* Info Card */
.info-card,
.social-card,
.faq-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-card h5,
.social-card h5,
.faq-card h4 {
    font-weight: 800;
    color: #1a1a1a;
}

.info-items {
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.info-item h6 {
    font-weight: 700;
    color: #374151;
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
}

.info-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

/* Social Links */
.social-card p {
    color: #6b7280;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.5rem;
}

.social-link.twitter {
    background: #e0f2fe;
    color: #0284c7;
    border: 2px solid #0284c7;
}

.social-link.facebook {
    background: #dbeafe;
    color: #1d4ed8;
    border: 2px solid #1d4ed8;
}

.social-link.instagram {
    background: #fce7f3;
    color: #db2777;
    border: 2px solid #db2777;
}

.social-link.linkedin {
    background: #dbeafe;
    color: #0369a1;
    border: 2px solid #0369a1;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #667eea;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer.show {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #6b7280;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .social-links {
        grid-template-columns: 1fr;
    }
}