/* =====================================================================
   lianxi.css —— Contact page styles (class prefix lx-)
   English site - independent copy
   ===================================================================== */

/* ---------- Inner-page banner ---------- */
.lx-hero {
    position: relative;
    padding: 150px 0 90px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(10, 12, 18, 0.78) 0%, rgba(10, 12, 18, 0.92) 100%),
        url(../../public/banner/5-1.jpg) center center / cover no-repeat;
    overflow: hidden;
}
.lx-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 160, 96, 0.14), transparent 70%);
    pointer-events: none;
}
.lx-hero-content {
    position: relative;
    z-index: 1;
}
.lx-breadcrumb {
    font-size: 13px;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-bottom: 26px;
}
.lx-breadcrumb a {
    color: var(--text-gray);
    transition: color 0.25s;
}
.lx-breadcrumb a:hover { color: var(--gold); }
.lx-breadcrumb-sep { margin: 0 8px; opacity: 0.5; }
.lx-breadcrumb-current { color: var(--silver); }
.lx-hero-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 8px 22px;
    margin-bottom: 26px;
}
.lx-hero-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(120deg, #F5EBD8 20%, var(--gold) 55%, #F5EBD8 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}
.lx-hero-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-gray);
}
.lx-hero-line {
    width: 56px;
    height: 2px;
    margin: 30px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- National VIP service cards ---------- */
.lx-section {
    padding: 80px 0 0;
}
.lx-section-head {
    text-align: center;
    margin-bottom: 46px;
}
.lx-section-en {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.lx-section-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(120deg, #F5EBD8 20%, var(--gold) 55%, #F5EBD8 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.lx-section-line {
    width: 56px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.lx-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.lx-card {
    padding: 38px 28px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(200, 160, 96, 0.12);
    transition: all 0.3s;
}
.lx-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.lx-card-icon {
    width: 54px;
    height: 54px;
    padding: 13px;
    margin: 0 auto 20px;
    color: var(--gold);
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(200, 160, 96, 0.06);
}
.lx-card-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 12px;
}
.lx-card-value {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold);
    line-height: 1.6;
    word-break: break-all;
}
.lx-card-value a {
    color: var(--gold);
    transition: opacity 0.25s;
}
.lx-card-value a:hover { opacity: 0.75; }
.lx-card-note {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

/* ---------- Headquarters (text left, image right) ---------- */
.lx-hq {
    margin-top: 76px;
    scroll-margin-top: 100px;
}
.lx-hq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid rgba(200, 160, 96, 0.12);
    padding: 44px;
}
.lx-hq-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.lx-hq-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}
.lx-hq-label::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--gold);
}
.lx-hq-label::after {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--gold);
}
.lx-hq-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 18px;
}
.lx-hq-addr {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--silver);
}
.lx-hq-addr svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    color: var(--gold);
}
.lx-hq-tip {
    margin-top: 22px;
    font-size: 13.5px;
    line-height: 1.9;
    color: var(--text-gray);
}
/* Headquarters photo placeholder: replace the content of .lx-hq-pic with
   <img src="../public/images/lianxi-hq.jpg" alt="Jiangsu Chichi Automobile headquarters building"> */
.lx-hq-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px dashed rgba(200, 160, 96, 0.25);
    background: repeating-linear-gradient(45deg,
        rgba(200, 160, 96, 0.04) 0, rgba(200, 160, 96, 0.04) 10px,
        transparent 10px, transparent 20px);
}
.lx-hq-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lx-hq-pic-tip {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-gray);
    text-align: center;
    line-height: 2;
    padding: 20px;
}

/* ---------- Quick service entries ---------- */
.lx-cta {
    margin: 76px 0 80px;
    padding: 54px 36px;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 100% at 50% 0%, rgba(200, 160, 96, 0.08), transparent 70%),
        var(--bg-card);
    border: 1px solid var(--border);
}
.lx-cta-title {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 14px;
}
.lx-cta-text {
    max-width: 620px;
    margin: 0 auto 30px;
    font-size: 14.5px;
    line-height: 2;
    color: var(--text-gray);
}
.lx-cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.lx-btn-gold {
    display: inline-block;
    padding: 14px 42px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #0A0C12;
    background: linear-gradient(120deg, var(--gold) 0%, #E0C088 50%, var(--gold) 100%);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}
.lx-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(200, 160, 96, 0.35);
}
.lx-btn-outline {
    display: inline-block;
    padding: 13px 38px;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}
.lx-btn-outline:hover {
    background: rgba(200, 160, 96, 0.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .lx-card-grid { grid-template-columns: 1fr; }
    .lx-hq-wrapper { grid-template-columns: 1fr; padding: 30px; }
    .lx-hero-title { font-size: 32px; }
}
@media (max-width: 600px) {
    .lx-hero { padding: 120px 0 64px; }
    .lx-hero-title { font-size: 26px; letter-spacing: 2px; }
    .lx-section-title { font-size: 22px; }
    .lx-hq-pic { min-height: 200px; }
}
