/* Contact Page – Glasco Traders */

.contact-page-hero-bg {
    background-image: url('../Images2/silver-aesthetic-wallpaper-with-kitchen-utensils.jpg');
    opacity: 0.34;
}

.contact-quick-strip {
    position: relative;
    z-index: 2;
    margin-top: -52px;
    padding-bottom: 0;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.contact-quick-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 20px;
    border-radius: 18px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 20px 50px rgba(24, 24, 24, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-quick-card:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 199, 1, 0.45);
    box-shadow: 0 24px 56px rgba(24, 24, 24, 0.1);
}

.contact-quick-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(237, 199, 1, 0.15);
    color: var(--primary-color);
    font-size: 17px;
}

.contact-quick-card--whatsapp i {
    background: rgba(37, 211, 102, 0.15);
    color: #1da851;
}

.contact-quick-card strong {
    font-size: 15px;
    color: var(--primary-color);
    line-height: 1.3;
}

.contact-quick-card span {
    font-size: 13px;
    color: rgba(24, 24, 24, 0.62);
    line-height: 1.5;
}

.contact-main-section {
    padding: 100px 0 110px;
    background: var(--bg-color);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.contact-form-panel {
    padding: 36px 34px 38px;
    border-radius: 22px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
}

.contact-form-panel .section-title {
    margin-bottom: 28px;
}

.contact-form-panel .section-title h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 10px;
}

.contact-form-panel .section-title p {
    margin: 0;
    font-size: 15px;
    color: rgba(24, 24, 24, 0.65);
}

.contact-form-metal .form-group {
    margin-bottom: 18px;
}

.contact-form-metal label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(24, 24, 24, 0.55);
}

.contact-form-metal .form-control,
.contact-form-metal select.form-control {
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-color);
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    padding: 14px 16px;
    outline: none;
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-metal .form-control:focus,
.contact-form-metal select.form-control:focus {
    border-color: rgba(237, 199, 1, 0.65);
    box-shadow: 0 0 0 3px rgba(237, 199, 1, 0.12);
}

.contact-form-metal textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form-metal .help-block.with-errors {
    margin-top: 6px;
    font-size: 12px;
    color: #c0392b;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.contact-form-actions .btn-default {
    min-width: 180px;
}

#msgSubmit {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

#msgSubmit.text-success {
    color: #1e7e34;
}

#msgSubmit.text-danger {
    color: #c0392b;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-card {
    padding: 24px 22px;
    border-radius: 18px;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white-color);
}

.contact-info-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    color: var(--white-color);
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.contact-info-list i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 3px;
    color: var(--accent-color);
    text-align: center;
}

.contact-info-list a {
    color: var(--white-color);
    font-weight: 500;
    transition: color 0.25s ease;
}

.contact-info-list a:hover {
    color: var(--accent-color);
}

.contact-hours-card {
    padding: 24px 22px;
    border-radius: 18px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
}

.contact-hours-card h3 {
    margin: 0 0 14px;
    font-size: 17px;
    color: var(--primary-color);
}

.contact-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: rgba(24, 24, 24, 0.72);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--divider-color);
}

.contact-hours-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-hours-list span:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-social-card {
    padding: 24px 22px;
    border-radius: 18px;
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
}

.contact-social-card h3 {
    margin: 0 0 14px;
    font-size: 17px;
    color: var(--primary-color);
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.contact-social-links a i {
    font-size: 14px;
    color: var(--accent-color);
}

.contact-social-links a:hover i {
    color: var(--accent-color);
}

.contact-stores-section.our-stores-metal {
    padding: 0 0 110px;
    background: var(--bg-color);
}

.contact-stores-section .our-stores-header-metal {
    margin-bottom: 0;
}

.contact-stores-section .our-stores-grid {
    margin-top: 40px;
}

@media only screen and (max-width: 991px) {
    .contact-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-section,
    .contact-stores-section {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .contact-quick-strip {
        margin-top: -36px;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 28px 22px 30px;
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form-actions .btn-default {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
