/* Contact Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 120px 0 80px;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 70px !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1577563908411-5077b6dc7624?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

/* Contact Information Styling */
.contact-info {
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    height: fit-content;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

.info-content {
    flex: 1;
}

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

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

/* Contact Form Styling */
.contact-form {
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

/* Input Style */
.inputStyle {
    font-size: large;
}

.input-border {
    border: 2px solid #ccc;
    padding: 8px;
    border-radius: 4px;
    outline: none;
}

.input-border:focus {
    border-color: #007bff; /* changes border on focus */
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

.map-container {
    height: 500px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-color);
}

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

.faq-item {
    background-color: var(--card-bg-color);
    border-radius: var(--radius-medium);
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    padding-left: 35px;
}

.faq-item h3::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    padding-left: 35px;
}

.faq-item p::before {
    content: 'A:';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.8;
}

/* CTA Section */
.cta {
    background: var(--primary-gradient);
    padding: 60px 0;
    text-align: center;
    border-radius: var(--radius-large);
    margin: 0 30px 60px;
}

.cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}


.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }
.info-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

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

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
} 