/* General Container */
.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
.header1 {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #03a9f4;
}

.header1 h1 {
    color: #0277bd;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.header1 p {
    color: #546e7a;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3f2fd;
}

.form-title {
    color: #01579b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #01579b;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1f5fe;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #03a9f4;
    background: white;
    box-shadow: 0 0 0 4px rgba(3, 169, 244, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #03a9f4 0%, #0288d1 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0288d1 0%, #0277bd 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 169, 244, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3f2fd;
}

.info-title {
    color: #01579b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f1f8ff;
    border-radius: 10px;
    border-left: 4px solid #81d4fa;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e3f2fd;
    border-left-color: #03a9f4;
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #03a9f4 0%, #0288d1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.info-content h3 {
    color: #01579b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    color: #546e7a;
    font-size: 15px;
}

.info-content a {
    color: #03a9f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #0277bd;
}

/* Business Hours */
.business-hours {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3f2fd;
    margin-bottom: 30px;
}

.hours-title {
    color: #01579b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f1f8ff;
    border-radius: 8px;
    border-left: 4px solid #81d4fa;
}

.hours-day {
    color: #01579b;
    font-weight: 600;
}

.hours-time {
    color: #546e7a;
    font-weight: 500;
}

/* Map Section */
.map-section {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3f2fd;
    text-align: center;
}

.map-title {
    color: #01579b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03a9f4;
    font-size: 18px;
    font-weight: 600;
    border: 2px dashed #81d4fa;
    margin-bottom: 15px;
}

.map-address {
    color: #546e7a;
    font-size: 16px;
}

/* Social Links */
.social-links {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3f2fd;
    text-align: center;
    margin-top: 30px;
}

.social-title {
    color: #01579b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #4267B2;
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.linkedin {
    background: #0077B5;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Success Message */
.success-message {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid #66bb6a;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container1 {
        padding: 15px;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .header1 h1 {
        font-size: 28px;
    }

    .header1 p {
        font-size: 16px;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        padding: 25px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .social-buttons {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .map-responsive {
        padding-bottom: 75%;
    }

    .form-group input.error,
    .form-group textarea.error,
    .form-group select.error {
        border-color: #f44336;
        background: #ffebee;
    }

    .error-message {
        color: #f44336;
        font-size: 12px;
        margin-top: 5px;
        display: none;
    }
}

/* Animation */
.contact-form,
.contact-info,
.business-hours,
.map-section,
.social-links {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
