/* Contact Page Specific Styles */

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.contact-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #1d4ed8;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Contact Sidebar */
.contact-sidebar > * {
    margin-bottom: 2rem;
}

.office-hours,
.quick-contact,
.counselor-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.office-hours h3,
.quick-contact h3,
.counselor-info h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-list {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: #6b7280;
}

.hour-item.holiday {
    color: #ef4444;
    font-weight: 500;
}

.quick-contact p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.quick-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.call-btn {
    background: #2563eb;
    color: white;
}

.call-btn:hover {
    background: #1d4ed8;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.email-btn {
    background: #7c3aed;
    color: white;
}

.email-btn:hover {
    background: #6d28d9;
}

.counselor-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.counselor-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.counselor-text h4 {
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.counselor-text p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.counselor-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
    }
}

.map-placeholder {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-content {
    text-align: center;
    padding: 2rem;
}

.map-content i {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.map-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.map-content p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.map-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-buttons .btn {
    padding: 0.75rem 1.5rem;
}

/* Transport Options */
.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.transport-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.transport-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.transport-card h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.transport-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Branches Section */
.branches-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.branch-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.branch-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-address,
.branch-contact,
.branch-hours {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.branch-address i,
.branch-contact i,
.branch-hours i {
    color: #2563eb;
    margin-top: 0.25rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Call Float Button */
.call-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-float:hover {
    background-color: #1d4ed8;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .call-float {
        bottom: 30px;
        right: 100px;
    }
}