/* ===================================
   Contact Page Styles
   =================================== */

.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.breadcrumb a {
    color: white;
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-card a {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 5px;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-card address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-intro h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-intro p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.quick-contact {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.quick-contact h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.quick-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.quick-contact-item:last-child {
    margin-bottom: 0;
}

.quick-contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.quick-contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.quick-contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.social-connect {
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.social-connect h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

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

.social-connect .social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-connect .social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.required {
    color: #F44336;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Map */
.contact-map {
    padding: 60px 0;
}

.map-container {
    margin-top: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder small {
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

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

.faq-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
