/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a2c3e;
}

.contact-hero .highlight {
    color: #3388ff;
    position: relative;
}

.contact-hero p {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* Contact Info */
.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a2c3e;
}

.contact-info > p,
.contact-form-wrapper > p {
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3388ff 0%, #5ca0ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a2c3e;
}

.info-content p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.info-small {
    font-size: 12px;
    color: #718096;
    margin-top: 5px;
}

/* Social Contact */
.social-contact h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a2c3e;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3388ff;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: #3388ff;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a2c3e;
    font-size: 14px;
}

.form-group label i {
    color: #3388ff;
    margin-right: 5px;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3388ff;
    box-shadow: 0 0 0 3px rgba(51, 136, 255, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff6b6b;
}

.error-message {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #ff6b6b;
}

.form-check {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check label {
    cursor: pointer;
    color: #4a5568;
    font-size: 14px;
}

.form-check a {
    color: #3388ff;
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3388ff 0%, #5ca0ff 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 136, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Alert messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 20px;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f8fafc;
}

.map-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a2c3e;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* FAQ Teaser */
.faq-teaser {
    padding: 60px 0;
    background: white;
}

.faq-content {
    background: linear-gradient(135deg, #3388ff 0%, #5ca0ff 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.faq-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.faq-content .btn-secondary {
    background: white;
    color: #3388ff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.faq-content .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .faq-content {
        padding: 30px 20px;
    }
    
    .faq-content h3 {
        font-size: 22px;
    }
}