/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.contact__header {
    text-align: center;
    margin-bottom: 70px;
}

.contact__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-cyan);
    margin-bottom: 20px;
}

.contact__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact__title-accent {
    color: var(--color-cyan);
}

.contact__subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Info Cards */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact__info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(7, 158, 229, 0.15);
}

.contact__info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-cyan) 0%, #0686c7 100%);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.contact__info-content {
    flex: 1;
}

.contact__info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.contact__info-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
}

.contact__info-text a {
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact__info-text a:hover {
    color: #0686c7;
}

.contact__info-hours {
    display: block;
    font-size: 14px;
    color: #999999;
    margin-top: 6px;
}

/* Social Links */
.contact__social {
    padding: 30px;
    background: var(--color-black);
    border-radius: 12px;
}

.contact__social-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact__social-links {
    display: flex;
    gap: 15px;
}

.contact__social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact__social-link:hover {
    background: var(--color-cyan);
    transform: translateY(-4px);
}

/* Form Wrapper */
.contact__form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Alert Messages */
.contact__alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}

.contact__alert--success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.contact__alert--error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.contact__alert i {
    font-size: 20px;
}

.contact__alert p {
    margin: 0;
}

/* Form */
.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__form-group {
    margin-bottom: 25px;
}

.contact__form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 10px;
}

.contact__form-input,
.contact__form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--color-black);
}

.contact__form-input:focus,
.contact__form-textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 4px rgba(7, 158, 229, 0.1);
}

.contact__form-input.error,
.contact__form-textarea.error {
    border-color: #dc3545;
}

.contact__form-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact__form-error {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.contact__form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--color-cyan);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.contact__form-submit:hover {
    background: #0686c7;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(7, 158, 229, 0.3);
}

.contact__form-submit:active {
    transform: translateY(-1px);
}

/* Map Section */
.contact__map {
    margin-top: 60px;
}

.contact__map-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 30px;
    text-align: center;
}

.contact__map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact__map-wrapper iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 60px 20px;
    }
    
    .contact__title {
        font-size: 32px;
    }
    
    .contact__subtitle {
        font-size: 16px;
    }
    
    .contact__info-card {
        padding: 25px;
    }
    
    .contact__info-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .contact__info-title {
        font-size: 18px;
    }
    
    .contact__form-wrapper {
        padding: 30px 25px;
    }
    
    .contact__form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact__social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .contact {
        padding: 50px 15px;
    }
    
    .contact__title {
        font-size: 28px;
    }
    
    .contact__form-wrapper {
        padding: 25px 20px;
    }
    
    .contact__info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact__info-icon {
        margin: 0 auto;
    }
}
/* Business Status Badge */
.contact__status {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.contact__status-badge--open {
    background: #e8f5e9;
    color: #2e7d32;
}

.contact__status-badge--open i {
    color: #4caf50;
    animation: pulse-dot 2s infinite;
}

.contact__status-badge--closed {
    background: #ffebee;
    color: #c62828;
}

.contact__status-badge--closed i {
    color: #f44336;
}

.contact__status-text {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Quick Action Buttons */
.contact__quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.contact__quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact__quick-btn--whatsapp {
    background: #25d366;
    color: #fff;
}

.contact__quick-btn--whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact__quick-btn--call {
    background: #0066cc;
    color: #fff;
}

.contact__quick-btn--call:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Map Info Card */
.contact__map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    gap: 20px;
}

.contact__map-directions,
.contact__map-address {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__map-directions i,
.contact__map-address i {
    color: #0066cc;
    font-size: 18px;
}

.contact__map-directions a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact__map-directions a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.contact__map-address span {
    color: #333;
    font-weight: 500;
}

/* WhatsApp Social Link Highlight */
.contact__social-link--whatsapp {
    background: #25d366;
    color: #fff !important;
}

.contact__social-link--whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact__quick-actions {
        grid-template-columns: 1fr;
    }
    
    .contact__map-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact__status {
        text-align: center;
    }
}


