/* contact-style.css - Contact Page Styles */

/* =========================================== */
/* CONTACT PAGE STYLES */
/* =========================================== */

/* Page Header */
.page-header {
    text-align: center;
    padding: 30px 20px 20px;
    margin: 80px 0 30px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 10px;
}

.page-header p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.5;
}

/* Contact Information */
.contact-info-section {
    padding: 0 15px 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #2563EB;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-action {
    display: inline-block;
    background: #2563EB;
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-action:hover {
    background: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.contact-action.whatsapp {
    background: #25D366;
}

.contact-action.whatsapp:hover {
    background: #128C7E;
}

/* Contact Form */
.contact-form-section {
    padding: 0 15px 40px;
}

.contact-form-container {
    background: white;
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.form-header p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 15px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Office Hours */
.office-hours {
    padding: 0 15px 40px;
}

.hours-container {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
    border-radius: 25px;
    padding: 35px 30px;
    color: white;
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.3);
}

.hours-container h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.day {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.day-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
}

.day-time {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* Quick Contact */
.quick-contact-section {
    padding: 0 15px 60px;
}

.quick-contact-card {
    background: white;
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.quick-contact-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.quick-contact-card p {
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.quick-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
    min-width: 140px;
}

.quick-btn.call {
    background: #2563EB;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.quick-btn.call:hover {
    background: #1E40AF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.quick-btn.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 185, 129, 0.2);
}

.quick-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 185, 129, 0.3);
}

.quick-btn.quote {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.quick-btn.quote:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: translateY(-3px);
}

/* Success Message */
.contact-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.success-content {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.success-content p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.close-success {
    background: #2563EB;
    color: white;
    padding: 14px 40px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.close-success:hover {
    background: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

/* =========================================== */
/* RESPONSIVE DESIGN */
/* =========================================== */

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin-top: 70px;
        padding: 20px 15px 15px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .contact-form-container,
    .hours-container,
    .quick-contact-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .contact-info-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .contact-info-card h3 {
        font-size: 16px;
    }
    
    .contact-action {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
    
    .submit-btn {
        padding: 16px 35px;
        font-size: 15px;
    }
    
    .success-content {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
    }
    
    .success-icon i {
        font-size: 35px;
    }
    
    .success-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .contact-info-grid {
        gap: 12px;
    }
    
    .contact-info-card {
        padding: 18px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .submit-btn {
        width: 100%;
    }
}