/* Contact Page Specific Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Options */
.contact-options {
    padding: 5rem 0;
    background-color: white;
}

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

.contact-option-card {
    background-color: white;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.contact-option-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-option-card p {
    color: var(--grey-color);
    margin-bottom: 1.5rem;
}

.option-details {
    text-align: left;
}

.option-details p {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.option-details p:last-child {
    margin-bottom: 0;
}

.option-details p i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: var(--grey-light-color);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--grey-color);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 2rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--grey-light-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-checkbox label {
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--grey-color);
}

.form-checkbox label a {
    color: var(--primary-color);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit button {
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
}

.form-note {
    text-align: right;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--grey-color);
}

/* Office Locations */
.office-locations {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.office-locations h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    position: relative;
}

.office-locations h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.location-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-details {
    padding: 1.5rem;
    text-align: left;
}

.location-details h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.location-details p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.location-details p i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
    margin-top: 5px;
}

.location-details .btn {
    margin-top: 1rem;
    width: 100%;
}

/* FAQ Contact Section */
.faq-contact {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.faq-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-contact h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.faq-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-contact .btn {
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
}

.faq-contact .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.25rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
} 