/* Contact Page Specific Styles */

.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Contact Animation */
.contact-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.energy-bubble {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: float-bubble 8s ease-in-out infinite;
}

.energy-bubble:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.energy-bubble:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.energy-bubble:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.6;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.contact-form {
    background: rgba(45, 27, 105, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.form-error {
    display: block;
    color: #DC2626;
    font-size: 0.9rem;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(147, 51, 234, 0.6);
}

/* Contact Info */
.contact-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(147, 51, 234, 0.2);
    transform: translateX(10px);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.social-contact .social-links {
    display: flex;
    gap: 15px;
}

.social-contact .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-contact .social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.5);
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: rgba(45, 27, 105, 0.2);
}

.payment-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.payment-section > p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.payment-methods h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-card {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
    background: rgba(147, 51, 234, 0.2);
}

.payment-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.payment-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.payment-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.payment-security {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    color: var(--text-secondary);
}

.payment-security i {
    color: #10B981;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

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

.faq-item {
    background: rgba(45, 27, 105, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
}

.faq-item h3 {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-security {
        flex-direction: column;
        text-align: center;
    }
    
    .social-contact .social-links {
        justify-content: center;
    }
}