/* Contact Page Styles - SEO Optimized */

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--lightbg);
    padding: 1.5rem 7%;
    margin-top: 80px;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breadcrumb-container a {
    color: var(--maincolor);
    font-size: 1.4rem;
    text-decoration: none;
}

.breadcrumb-container a:hover {
    text-decoration: underline;
}

.breadcrumb-container i {
    font-size: 1.2rem;
    color: #999;
}

.breadcrumb-container span {
    font-size: 1.4rem;
    color: #666;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1a5f7a 0%, #2a8b9e 100%);
    padding: 5rem 7%;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero-content p {
    font-size: 1.8rem;
    opacity: 0.95;
}

/* Main Contact Section */
.contact-section {
    padding: 6rem 7%;
    background: var(--white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* Contact Details Side */
.contact-details h2 {
    font-size: 3rem;
    color: var(--maincolor);
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.6rem;
    color: var(--textcolor);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--lightbg);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #1a2a3a;
}

.info-content p {
    font-size: 1.5rem;
    color: var(--textcolor);
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.info-content a {
    color: var(--maincolor);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--secondcolor);
}

.info-content small {
    font-size: 1.2rem;
    color: #888;
}

/* Contact Form Side */
.contact-form-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form-container h2 {
    font-size: 2.8rem;
    color: var(--maincolor);
    margin-bottom: 1rem;
}

.contact-form-container > p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a2a3a;
}

.required {
    color: #e74c3c;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.textarea-icon i {
    top: 20px;
    transform: none;
}

.input-icon input,
.input-icon select,
.input-icon textarea {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 4.5rem;
    font-size: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-icon textarea {
    padding-top: 1.2rem;
    resize: vertical;
}

.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
    outline: none;
    border-color: var(--maincolor);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.input-icon input:focus + i,
.input-icon select:focus + i,
.input-icon textarea:focus + i {
    color: var(--maincolor);
}

/* Checkbox Styles */
.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.4rem;
    color: #666;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    background: var(--gradient);
    color: white;
    padding: 1.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 122, 0.3);
}

.submit-btn i {
    font-size: 1.6rem;
}

.form-note {
    font-size: 1.2rem;
    color: #999;
    text-align: center;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    margin: 5rem 0;
}

.map-section h2 {
    font-size: 3rem;
    color: var(--maincolor);
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Social Section */
.social-section {
    text-align: center;
    margin: 5rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.social-section h2 {
    font-size: 3rem;
    color: var(--maincolor);
    margin-bottom: 1rem;
}

.social-section > p {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.social-link i {
    font-size: 2rem;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.contact-faq {
    margin-top: 5rem;
}

.contact-faq h2 {
    font-size: 3rem;
    color: var(--maincolor);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--lightbg);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    font-size: 2rem;
    color: var(--maincolor);
}

.faq-question h3 {
    font-size: 1.8rem;
    color: #1a2a3a;
}

.faq-answer p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    margin-left: 3rem;
}

.faq-answer a {
    color: var(--maincolor);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--secondcolor);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        order: -1;
    }
    
    .contact-hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-hero-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 70px;
    }
    
    .contact-hero {
        padding: 4rem 5%;
    }
    
    .contact-section {
        padding: 4rem 5%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-details h2,
    .contact-form-container h2,
    .map-section h2,
    .social-section h2,
    .contact-faq h2 {
        font-size: 2.5rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 1rem 1.5rem;
        font-size: 1.3rem;
    }
    
    .social-link span {
        display: none;
    }
    
    .social-link i {
        font-size: 2rem;
        margin: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon i {
        font-size: 1.6rem;
    }
    
    .info-content h3 {
        font-size: 1.6rem;
    }
    
    .info-content p {
        font-size: 1.3rem;
    }
    
    .submit-btn {
        padding: 1.2rem;
        font-size: 1.4rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Animation for form focus */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.input-icon.focused i {
    color: var(--maincolor);
}