/* ============================================================
   ARCHIGOS - Contact Page Styles
   ============================================================ */

.contact-section { padding: 40px 0 80px; }

/* Info Cards */
.contact-info-card {
    background: white;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #eef1f5;
    transition: all 0.4s;
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-color: var(--accent);
}
.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--accent-light);
    transition: all 0.3s;
}
.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
}
.contact-info-card h5 {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 8px;
}
.contact-info-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}
.contact-info-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.contact-info-card a:hover { text-decoration: underline; }

/* Form */
.contact-form-box {
    background: white;
    border-radius: 14px;
    padding: 40px;
    border: 1px solid #eef1f5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.contact-form-box h3 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.contact-form-box .subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.form-floating-custom {
    margin-bottom: 18px;
}
.form-floating-custom label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}
.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid #dce1e6;
    border-radius: 10px;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}
.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26,188,156,0.1);
}
.form-floating-custom textarea { resize: vertical; min-height: 120px; }

/* Form Type Toggle */
.form-type-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.form-type-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #dce1e6;
    border-radius: 10px;
    background: white;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray);
    transition: all 0.3s;
}
.form-type-btn:hover { border-color: var(--accent); color: var(--accent); }
.form-type-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}
.form-type-btn i { display: block; font-size: 1.3rem; margin-bottom: 6px; }
.wholesale-fields { display: none; }
.wholesale-fields.show { display: block; }

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}
.form-success h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.form-success p { color: var(--gray); }

/* Map */
.contact-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef1f5;
    height: 350px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Working Hours */
.working-hours {
    background: white;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #eef1f5;
}
.working-hours h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eef1f5;
    font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--primary); font-weight: 600; }
.hours-row .time { color: var(--gray); }
.hours-row .closed { color: #dc2626; font-weight: 600; }
