/* Breadcrumb */
.zb-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #94a3b8;
}

.zb-breadcrumb a {
    color: #fb923c;
    text-decoration: none;
    font-weight: 600;
}

.zb-breadcrumb a:hover {
    color: #ea580c;
}

.zb-breadcrumb i {
    font-size: 10px;
    color: #cbd5e1;
}

/* =========================================
           INFO CARDS ROW
        ========================================= */
.contact-info-section {
    background: #f8fafc;
    padding: 70px 0 0;
}

.info-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #ea580c, #2563eb);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(251, 146, 60, 0.12);
    border-color: rgba(251, 146, 60, 0.25);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(251, 146, 60, 0.08);
    border: 1px solid rgba(251, 146, 60, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: #fb923c;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon-box {
    background: #fb923c;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(251, 146, 60, 0.4);
}

.info-card p.info-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    margin: 0 0 10px;
}

.info-card p.info-value {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
    line-height: 1.4;
}

.info-card p.info-sub {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* =========================================
           MAIN CONTACT SECTION
        ========================================= */
.contact-main-section {
    background: #f8fafc;
    padding: 60px 0 90px;
}

/* Left: Form card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 32px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.form-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fb923c;
    margin: 0 0 12px;
}

.contact-form-card h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 8px;
}

.contact-form-card h2 span {
    background: linear-gradient(135deg, #fb923c 20%, #ea580c 45%, #2563eb 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form-card p.form-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 440px;
}

/* Form inputs */
.zb-input-group {
    margin-bottom: 20px;
    position: relative;
}

.zb-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.zb-textarea-icon {
    position: absolute;
    left: 18px;
    top: 20px;
    font-size: 15px;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.zb-form-control {
    width: 100%;
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 16px 20px 16px 50px !important;
    font-size: 14px;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.zb-form-control:focus {
    background: #ffffff !important;
    border-color: #fb923c !important;
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.1) !important;
}

.zb-form-control:focus+.zb-input-icon,
.zb-form-control:focus~.zb-input-icon,
.zb-input-group:focus-within .zb-input-icon,
.zb-input-group:focus-within .zb-textarea-icon {
    color: #fb923c;
}

.zb-form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

textarea.zb-form-control {
    resize: none;
    padding-top: 18px !important;
}

/* Select */
select.zb-form-control {
    appearance: none;
    cursor: pointer;
}

/* Submit button */
.zb-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.35);
    margin-top: 8px;
}

.zb-submit-btn:hover {
    transform: translateY(-3px);
    background: #0f172a;
    box-shadow: 0 16px 40px rgba(22, 22, 22, 0.45);
}

.zb-submit-btn:active {
    transform: translateY(-1px);
}

/* Right: Details sidebar */
.contact-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Quick info box */
.sidebar-info-box {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sidebar-info-box p.sib-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fb923c;
    margin: 0 0 12px;
}

.sidebar-info-box p.sib-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.sib-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sib-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sib-item:first-of-type {
    padding-top: 0;
}

.sib-item:hover {
    transform: translateX(4px);
}

.sib-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(251, 146, 60, 0.08);
    border: 1px solid rgba(251, 146, 60, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fb923c;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sib-item:hover .sib-icon {
    background: #fb923c;
    color: #fff;
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.35);
}

.sib-item p.sib-item-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin: 0 0 4px;
}

.sib-item p.sib-item-value {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.sib-item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.sib-item:hover p.sib-item-value {
    color: #fb923c;
}

/* Social box */
.sidebar-social-box {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.2);
}

.sidebar-social-box p.ssb-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fb923c;
    margin: 0 0 8px;
}

.sidebar-social-box p.ssb-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.sidebar-social-box p.ssb-desc {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 24px;
    line-height: 1.6;
}

.social-icons-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background: #fb923c;
    color: #fff;
    border-color: #fb923c;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.4);
}

/* Working hours box */
.sidebar-hours-box {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sidebar-hours-box p.shb-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fb923c;
    margin: 0 0 18px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row p.hours-day {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

.hours-row p.hours-time {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.hours-row p.hours-closed {
    font-size: 13px;
    font-weight: 700;
    color: #ef4444;
    margin: 0;
}