/* Support ticket department cards */
.dept-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 36px 24px !important;
    border: 1.5px solid #e8e8f0 !important;
    border-radius: 18px !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
    height: 100%;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(80,80,160,0.06);
}
.dept-card:hover {
    box-shadow: 0 8px 32px rgba(80,80,160,0.15) !important;
    border-color: #c5c7e8 !important;
    color: inherit !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}
.dept-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #dbeafe;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1d4ed8;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.dept-card-label {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    margin-bottom: 6px;
    line-height: 1.4;
}
.dept-card-name {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Contact info section (submitticket step one) */
.contact-info-box {
    background: #fff;
    border: 1.5px solid #e8e8f0;
    border-radius: 16px;
    padding: 24px 22px;
    height: 100%;
}
.contact-info-heading {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}
.contact-info-heading i {
    color: #555;
    margin-right: 6px;
}
.contact-info-tax {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}
.contact-info-addr {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}
.contact-info-addr i {
    color: #555;
    margin-right: 4px;
}
.contact-info-hours {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}
.contact-info-hours i {
    color: #555;
    margin-right: 4px;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 0;
    font-size: 14px;
}
.contact-info-badge {
    display: inline-block;
    background: #e8f0fe;
    color: #1a56db;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}
.contact-info-list a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}
.contact-info-list a:hover {
    color: #5458aa;
    text-decoration: underline;
}
.contact-info-sub {
    font-size: 12px;
    color: #aaa;
}
.contact-info-divider {
    border: none;
    border-top: 1px solid #f0f0f6;
    margin: 16px 0;
}
.contact-info-phone {
    font-size: 15px;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}
.contact-info-phone i {
    color: #555;
}
.contact-info-phone a {
    font-weight: 700;
    color: #333;
    text-decoration: none;
}
.contact-info-phone a:hover {
    color: #5458aa;
}
.contact-info-line-box {
    background: #f8f9fa;
    border: 1.5px solid #e8e8f0;
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-info-qr {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}
.btn-line-add {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #06c755;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
}
.btn-line-add:hover {
    background: #05a849;
    color: #fff !important;
}
.btn-line-add i {
    font-size: 15px;
}

/* Footer vertical dividers between columns */
.footer-top .footer-widget {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 30px;
    padding-left: 30px;
}
.footer-top .footer-widget:last-child {
    border-right: none;
}

/* Footer contact list (column 1) */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 15px;
}

/* Footer contact inline (column 4) */
.footer-contact-inline {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-inline li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s;
}
.footer-social-icon:hover {
    border-color: #888;
    color: inherit;
}

/* Fix: domain search input + button in same row */
#order-standard_cart .input-group-box {
    display: flex !important;
    flex-wrap: nowrap !important;
}
#order-standard_cart .input-group-box .input-group-append {
    display: flex !important;
    flex-shrink: 0;
}

/* Fix: Search button icon wraps to new line */
.domain-check-availability {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    width: auto !important;
    min-width: fit-content !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}


/* Reduce header height - removed topbar, compact nav */
header.header .navbar-nav > li > a {
    padding: 16px 0 !important;
}
header.header .navbar-nav li > a::before {
    bottom: 17px !important;
}
header.header .logo-img {
    max-height: 65px !important;
}

/* Support and Login spacing in navbar */
header.header .navbar-nav > li.header-extra-link {
    padding: 0 20px !important;
}

/* Fix: Home nav item sits higher than dropdown items due to inline-block baseline shift from ::after chevron */
header.header .navbar-nav > li.d-block {
    display: flex !important;
    align-items: center;
}
header.header .navbar-nav > li.d-block > a {
    display: flex !important;
    align-items: center;
}
