/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><path d="M50,150 Q100,100 150,150 T250,150" stroke="white" stroke-width="0.8" fill="none" opacity="0.3"/><circle cx="75" cy="75" r="25" fill="white" opacity="0.1"/><circle cx="225" cy="225" r="35" fill="white" opacity="0.1"/></svg>');
    background-size: 600px 600px;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-600px); }
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Shadows Into Light', cursive;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.contact-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

/* Contact Form Section */
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Shadows Into Light', cursive;
    color: var(--text-dark);
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-form:hover {
    border-color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Kalam', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

/* Contact Info Section */
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Shadows Into Light', cursive;
    color: var(--text-dark);
}

.info-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

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

/* Social Section */
.social-section {
    margin-bottom: 2rem;
}

.social-section h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(360deg);
    border-color: var(--primary-color);
}

/* FAQ Section */
.faq-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(233, 75, 60, 0.1));
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.faq-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.faq-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.faq-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    display: inline-block;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-color);
}

.map-container iframe {
    display: block;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 2000;
    display: none;
}

.success-message.show {
    display: block;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        order: 2;
    }
    
    .contact-info-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        padding: 0 1rem;
    }
    
    .map-container {
        margin: 0 1rem;
    }
}