/* ==========================================================================
   Contact Section - Immersive Split Layout (BEM)
   Block: contact-section
   Mobile First: Form (Top) -> Info (Bottom)
   Desktop: Info (Left 35%) -> Form (Right 65%)
   ========================================================================== */
.container {
    width: 100%;
    padding: 0 var(--spacing-lg);
}

/* Block Container */
.contact-section {
    width: 100%;
}

.contact-section__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
}

/* Footer Context Override */
.footer-contact .contact-section__container {
    min-height: auto;
}

/* 
   Element: Info (Contact Details)
   Mobile: Order 2 (Bottom)
*/
.contact-section__info {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center children */
    text-align: center;
    /* Center text */
    padding: 2rem 1rem;
    overflow: hidden;
    order: 2;
    /* Mobile: Bottom */
}

.contact-section__info-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-section__info-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

/* Element: Title */
.contact-section__title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-accent-warning);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

/* Element: Contact List */
.contact-section__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    font-style: normal;
}

/* Element: Contact Item */
.contact-section__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Element: Icon */
.contact-section__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-accent-warning);
    background: rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

/* Element: Text Container */
.contact-section__text {
    display: flex;
    flex-direction: column;
}

/* Element: Label */
.contact-section__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

/* Element: Link */
.contact-section__link {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section__link:hover {
    color: var(--color-accent-warning);
}

/* 
   Element: Form (Input Area)
   Mobile: Order 1 (Top)
*/
.contact-section__form {
    width: 100%;
    /* Block layout for Mobile (Fix width issue) */
    display: block;
    padding: 3rem 0;
    order: 1;
    /* Mobile: Top */
    background: transparent;
}

/* ==========================================================================
   Form Styles (Scoped & Reset)
   ========================================================================== */

.form-instruction {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Wrapper Override */
.contact-form {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    width: 100%;
}

/* Form Row */
.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
    }
}

/* Form Group */
.form-group {
    width: 100%;
    flex: 1;
    position: relative;
}

/* Input Styles - High Specificity Reset */
.form-group input,
.form-group textarea {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
    color: #fff;
    min-height: 60px;
    transition: all 0.3s ease;
    margin: 0;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
    box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: none;
    font-size: 1rem;
    font-weight: 400;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    min-width: 0;
    display: block;
    margin: 0 auto;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #D4AF37 0%, #C5A028 100%);
    color: #000;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #E5C150 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

@media (min-width: 768px) {
    .submit-btn {
        width: auto;
        min-width: 240px;
    }
}

/* ==========================================================================
   Responsive: Desktop Split Layout (PC)
   ========================================================================== */

@media (min-width: 992px) {
    .contact-section__container {
        flex-direction: row;
    }

    /* Left: Info (35%) */
    .contact-section__info {
        width: 35%;
        order: 1;
        padding-left: 5%;
        padding-right: 5%;
        height: auto;
    }

    /* Right: Form (65%) */
    .contact-section__form {
        width: 65%;
        order: 2;
        padding: 8%;
        /* Desktop: Vertical Center */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-section__list {
        margin: var(--spacing-xl) 0;
    }
}



/* ==========================================================================
   Service Page Layout (server-page5.html Platinum Theme)
   EXACT COPY from demo file
   ========================================================================== */

/* Platinum Theme Variables - 已整合到 style.css :root */

/* 服务页面整体背景 */
.service-page-wrapper {
    background: linear-gradient(to bottom, #dce1e6, #eff2f5);
    background-attachment: fixed;
    min-height: 100vh;
    color: #3b4045;
    line-height: 1.75;
}

/* Hero Section (深色) */
.page-hero {
    position: relative;
    height: 260px;
    background-image: linear-gradient(to bottom, rgba(15, 28, 46, 0.8), rgba(15, 28, 46, 0.95)), url('/wp-content/themes/yann/assets/images/quick.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-hero__breadcrumbs {
    color: var(--ae-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-hero__title {
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
    border-left: 5px solid var(--ae-gold);
    padding-left: 25px;
}

/* Breadcrumbs Bar (For non-hero pages) */
.breadcrumbs-bar {
    background: var(--ae-surface);
    border-bottom: 1px solid var(--ae-border);
    padding: 15px 0;
}

.breadcrumbs {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ae-text-muted);
}

.breadcrumbs__link {
    color: var(--ae-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs__link:hover {
    color: var(--ae-gold);
}

.breadcrumbs__sep {
    margin: 0 10px;
    color: var(--ae-gold);
}

.breadcrumbs__current {
    color: var(--ae-primary);
    font-weight: bold;
}

/* Service Page Header */
.service-page-header {
    padding: 40px 0 20px;
}

.service-page-title {
    font-size: 2.5rem;
    color: var(--ae-primary);
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
    border-left: 5px solid var(--ae-gold);
    padding-left: 25px;
}

@media (min-width: 768px) {
    .service-page-title {
        font-size: 3rem;
    }
}

/* Service Layout Grid */
.service-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 80px;
    position: relative;
}

/* Mobile: Content first, Sidebar second */
.service-layout__content {
    order: 1;
}

.service-layout__sidebar {
    order: 2;
}

@media (min-width: 992px) {
    .service-layout {
        grid-template-columns: 280px 1fr;
        gap: 80px;
        align-items: start;
    }

    /* Desktop: Sidebar left, Content right */
    .service-layout__sidebar {
        order: 1;
        position: sticky;
        top: 40px;
        height: fit-content;
        z-index: 10;
    }

    .service-layout__content {
        order: 2;
    }
}

/* ==========================================================================
   Tactical Sidebar (Platinum Theme - White Card)
   ========================================================================== */

.tactical-sidebar {
    width: 100%;
    background: var(--ae-surface);
    border: 1px solid #fff;
    position: relative;
    box-shadow: var(--ae-shadow);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

/* 顶部金边装饰条 REMOVED */

.tactical-sidebar__header {
    background: var(--ae-surface);
    border-bottom: 1px solid var(--ae-border);
    padding: 0 20px 15px;
    position: relative;
    z-index: 1;
}

.tactical-sidebar__title,
h3.tactical-sidebar__title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ae-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.tactical-sidebar__title-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 12px;
    position: relative;
    border: 1px solid var(--ae-gold);
    border-radius: 50%;
    color: transparent;
    /* Hide any text if present */
}

.tactical-sidebar__title-icon::before,
.tactical-sidebar__title-icon::after {
    content: '';
    position: absolute;
    background: var(--ae-gold);
    display: block !important;
}

.tactical-sidebar__title-icon::before {
    top: 50%;
    left: -2px;
    right: -2px;
    height: 1px;
    transform: translateY(-50%);
}

.tactical-sidebar__title-icon::after {
    left: 50%;
    top: -2px;
    bottom: -2px;
    width: 1px;
    transform: translateX(-50%);
}

.tactical-sidebar__nav {
    flex: 1;
}

.tactical-sidebar__list,
ul.tactical-sidebar__list,
ol.tactical-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tactical-sidebar__item {
    border-bottom: 1px solid #f2f4f6;
}

.tactical-sidebar__link {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    text-decoration: none;
    color: var(--ae-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Marker Styles (menu-5.html) */
.tactical-sidebar__marker {
    width: 6px;
    height: 6px;
    background: var(--ae-bg-end);
    margin-right: 18px;
    transform: rotate(45deg);
    transition: 0.2s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Animation: Pulse */
@keyframes hudPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
        border-width: 1px;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
        border-width: 0px;
    }
}

.tactical-sidebar__link--active {
    color: var(--ae-primary);
    background-color: var(--ae-gold-dim);
    padding-left: 28px;
}

.tactical-sidebar__link--active .tactical-sidebar__marker {
    background: var(--ae-gold);
    box-shadow: 0 0 8px var(--ae-gold);
}

/* Active Pulse Effect */
.tactical-sidebar__link--active .tactical-sidebar__marker::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--ae-gold);
    animation: hudPulse 1.5s infinite ease-out;
}

/* Remove old left bar if it exists */
.tactical-sidebar__link--active::before {
    display: none;
}

.tactical-sidebar__link:not(.tactical-sidebar__link--active):hover {
    color: var(--ae-primary);
    background-color: #f8f9fa;
    padding-left: 25px;
    /* Keep consistent with base padding */
}

/* Transform Diamond to Crosshair (Hover) */
.tactical-sidebar__link:not(.tactical-sidebar__link--active):hover .tactical-sidebar__marker {
    background: transparent;
    transform: rotate(0deg);
    width: 16px;
    height: 16px;
    margin-right: 8px;
    /* Adjusted margin */
}

.tactical-sidebar__link:not(.tactical-sidebar__link--active):hover .tactical-sidebar__marker::before {
    content: '⌖';
    color: var(--ae-gold);
    font-size: 20px;
    line-height: 1;
    text-shadow: 0 0 5px var(--ae-gold);
}


.tactical-sidebar__footer-link {
    color: var(--ae-gold);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tactical-sidebar__footer-link:hover {
    color: var(--ae-primary);
}

/* Ensure corners are visible on white background using higher specificity */
.service-layout__sidebar .tactical-sidebar::before,
.service-layout__sidebar .tactical-sidebar::after,
.service-layout__sidebar .tactical-sidebar__bottom::before,
.service-layout__sidebar .tactical-sidebar__bottom::after {
    border-color: var(--ae-gold);
    opacity: 1;
    z-index: 10;
}

/* ==========================================================================
   Service Content Area (Platinum Theme)
   ========================================================================== */

.service-layout__content {
    min-width: 0;
    line-height: 1.75;
    color: var(--ae-text-body);
}

/* Lead paragraph - White card */
.content-lead {
    font-size: 1.2rem;
    color: var(--ae-primary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    background: var(--ae-surface);
    padding: 30px;
    box-shadow: var(--ae-shadow);
    border-radius: 4px;
    border-left: 4px solid var(--ae-gold);
}

/* Content H2 */
.service-layout__content h2,
.content-h2 {
    font-size: 1.8rem;
    color: var(--ae-primary);
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 0 #fff;
    border: none;
    padding-left: 0;
}

.service-layout__content h2::before,
.content-h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--ae-gold);
    margin-right: 15px;
    transform: rotate(45deg);
    flex-shrink: 0;
    /* Prevent shrinking on multiline */
}

.service-layout__content h2:first-child,
.content-h2:first-of-type {
    margin-top: 0;
}

.service-layout__content p,
.content-p {
    margin-bottom: 20px;
    color: var(--ae-text-body);
    font-size: 1.05rem;
}

/* ==========================================================================
   Capability Cards (White + Shadow)
   ========================================================================== */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.capability-card {
    background: var(--ae-surface);
    border: 1px solid transparent;
    padding: 30px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ae-shadow);
    border-color: var(--ae-gold);
}

.capability-icon {
    font-size: 1.8rem;
    color: var(--ae-gold);
    margin-bottom: 20px;
    display: block;
}

.capability-title {
    font-weight: 700;
    color: var(--ae-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    font-size: 1.1rem;
}

.capability-desc {
    font-size: 0.95rem;
    color: var(--ae-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Content List Styles (wp-block-list)
   ========================================================================= */

.service-layout__content ul,
.service-layout__content ol {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.service-layout__content ul li,
.service-layout__content ol li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

/* Custom Bullet for UL */
.service-layout__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    /* Align with first line text */
    width: 6px;
    height: 6px;
    background: var(--ae-gold);
    transform: rotate(45deg);
    /* Diamond shape */
}

/* Custom Numbering for OL */
.service-layout__content ol {
    counter-reset: ae-counter;
}

.service-layout__content ol li {
    padding-left: 30px;
}

.service-layout__content ol li::before {
    counter-increment: ae-counter;
    content: counter(ae-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ae-gold);
    font-weight: 700;
    font-family: var(--font-heading, sans-serif);
}

/* Strong tags in list items */
.service-layout__content li strong {
    color: var(--ae-primary);
}

/* ==========================================================================
   Full Width Sections
   ========================================================================== */

.full-width-section {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid var(--ae-border);
}

.bg-surface {
    background-color: var(--ae-surface);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--ae-primary);
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* Footer CTA (深色压轴) */
.footer-cta {
    background: var(--ae-primary);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-top: 80px;
    border-top: 4px solid var(--ae-gold);
}

.cta-btn {
    display: inline-block;
    background: var(--ae-gold);
    color: #0f1c2e;
    font-weight: 800;
    text-transform: uppercase;
    padding: 16px 45px;
    border-radius: 2px;
    margin-top: 35px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--ae-border);
    padding: 20px 0;
    background: var(--ae-surface);
}

.faq-question {
    font-size: 1.2rem;
    color: var(--ae-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--ae-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--ae-gold);
}

.faq-answer {
    margin-top: 15px;
    color: var(--ae-text-muted);
    display: none;
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: var(--ae-surface);
    border: 1px solid var(--ae-border);
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--ae-gold);
    box-shadow: var(--ae-shadow);
}

.feature-card__title {
    color: var(--ae-primary);
    margin: 0 0 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.feature-card__text {
    font-size: 0.9rem;
    margin: 0;
    color: var(--ae-text-muted);
}

/* Spec Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 0.95rem;
    background: var(--ae-surface);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.spec-table th,
.spec-table td {
    border: 1px solid var(--ae-border);
    padding: 12px 15px;
    text-align: left;
}

.spec-table th {
    background: #f8f9fa;
    color: var(--ae-primary);
    text-transform: uppercase;
    width: 30%;
}

.spec-table td {
    color: var(--ae-text-body);
}

/* ==========================================================================
   Location Page Styles (城市分部页面)
   ========================================================================== */

/* Local Stats Bar */
.local-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .local-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.stat-card {
    background: var(--ae-surface);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--ae-border);
    text-align: center;
    box-shadow: var(--ae-shadow);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ae-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--ae-text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Map Placeholder */
.location-map-box {
    background: var(--ae-primary);
    height: 300px;
    width: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    margin: 30px 0;
    border: 1px solid var(--ae-gold);
    position: relative;
    overflow: hidden;
}

.location-map-box::after {
    content: 'INTERACTIVE MAP PLACEHOLDER';
    font-weight: 800;
    letter-spacing: 2px;
}

/* Zone List */
.zone-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .zone-list {
        grid-template-columns: 1fr 1fr;
    }
}

.zone-item {
    background: var(--ae-surface);
    padding: 15px;
    border: 1px solid var(--ae-border);
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.zone-icon {
    color: var(--ae-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.zone-name {
    font-weight: 700;
    color: var(--ae-primary);
    font-size: 0.9rem;
}

/* Resource Cards */
.resource-card {
    display: flex;
    flex-direction: column;
    background: var(--ae-surface);
    border: 1px solid var(--ae-border);
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

@media (min-width: 576px) {
    .resource-card {
        flex-direction: row;
    }
}

.resource-card:hover {
    border-color: var(--ae-gold);
    box-shadow: var(--ae-shadow);
}

.resource-img {
    width: 100%;
    height: 150px;
    background: #333;
    background-size: cover;
    background-position: center;
}

@media (min-width: 576px) {
    .resource-img {
        width: 150px;
        height: auto;
        min-height: 120px;
    }
}

.resource-img--placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.resource-info {
    padding: 20px;
    flex: 1;
}

.resource-title {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ae-primary);
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.resource-desc {
    font-size: 0.9rem;
    color: var(--ae-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Sidebar Hotline (Location) */
.tactical-sidebar__hotline {
    padding: 20px 25px;
    border-top: 1px solid var(--ae-border);
    background: #f8f9fa;
}

.tactical-sidebar__hotline-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--ae-text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.tactical-sidebar__hotline-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ae-primary);
    text-decoration: none;
}

.tactical-sidebar__hotline-number:hover {
    color: var(--ae-gold);
}

/* Location Sidebar Variant */
.tactical-sidebar--location {
    background: var(--ae-surface);
    border: 1px solid #fff;
    box-shadow: var(--ae-shadow);
    border-radius: 4px;
}

.tactical-sidebar--location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ae-gold);
}

.tactical-sidebar--location .tactical-sidebar__header {
    padding: 25px 25px 15px;
    background: var(--ae-surface);
    border-bottom: 1px solid var(--ae-border);
}

.tactical-sidebar--location .tactical-sidebar__title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ae-primary);
    margin: 0;
    display: flex;
    align-items: center;
}

.tactical-sidebar--location .tactical-sidebar__title-icon {
    color: var(--ae-gold);
    font-size: 1.2rem;
    margin-right: 10px;
}

.tactical-sidebar--location .tactical-sidebar__item {
    border-bottom: 1px solid #f2f4f6;
}

.tactical-sidebar--location .tactical-sidebar__link {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    text-decoration: none;
    color: var(--ae-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.2s;
}

.tactical-sidebar--location .tactical-sidebar__link--active {
    color: var(--ae-primary);
    background-color: var(--ae-gold-dim);
    padding-left: 30px;
}

.tactical-sidebar--location .tactical-sidebar__link--active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ae-gold);
}

.tactical-sidebar--location .tactical-sidebar__link:not(.tactical-sidebar__link--active):hover {
    color: var(--ae-primary);
    background-color: #f8f9fa;
    padding-left: 30px;
}

/* ==========================================================================
   Locations Archive Page (locations4.html 重构)
   Mobile First + BEM
   ========================================================================== */

/* Page Header */
.locations-header {
    padding: 60px 20px 40px;
    text-align: center;
}

.locations-header__inner {
    max-width: 700px;
    margin: 0 auto;
}

.locations-header__title {
    font-size: 1.8rem;
    color: var(--ae-primary);
    text-transform: uppercase;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .locations-header {
        padding: 80px 20px 40px;
    }

    .locations-header__title {
        font-size: 2.5rem;
    }
}

.locations-header__desc {
    font-size: 1rem;
    color: var(--ae-text-muted);
    line-height: 1.7;
    margin: 0;
}

.locations-header__line {
    width: 60px;
    height: 4px;
    background: var(--ae-gold);
    margin: 25px auto 0;
}

/* Locations Grid */
.locations-grid {
    list-style: none;
    margin: 0;
    padding: 0 0 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 576px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
}

.locations-grid__item {
    list-style: none;
}

.locations-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--ae-text-muted);
}

/* ==========================================================================
   Card Components (Location & Services)
   ========================================================================== */

/* 1. Base Container */
.location-card,
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--ae-surface);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--ae-shadow);
    border: 1px solid transparent;
    text-decoration: none;
    /* for location-card (a tag) */
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover,
.service-card:hover {
    border-color: var(--ae-gold);
}

/* 2. Media Area */
/* locations use figure directly for height, services use media wrapper */
.location-card__figure,
.service-card__media {
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #2c3e50;
    height: 180px;
    display: block;
}

@media (min-width: 768px) {

    .location-card__figure,
    .service-card__media {
        height: 220px;
    }
}

.service-card__figure {
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Image */
.location-card__img,
.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover .location-card__img,
.service-card:hover .service-card__img {
    transform: scale(1.05);
}

/* Overlay */
.location-card__overlay,
.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 28, 46, 0.9));
    pointer-events: none;
}

/* 3. Indicators (Status / Icon) */
.location-card__status {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 28, 46, 0.85);
    color: var(--ae-gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Service Icon - Disabled by User
.service-card__icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(15, 28, 46, 0.9);
    color: var(--ae-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    z-index: 2;
}
*/

/* 4. Content Area */
.location-card__content,
.service-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--ae-surface);
}

@media (min-width: 768px) {

    .location-card__content,
    .service-card__content {
        padding: 25px 30px;
    }
}

/* 5. Title */
.location-card__title,
.service-card__title {
    color: var(--ae-primary);
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

@media (min-width: 768px) {

    .location-card__title,
    .service-card__title {
        font-size: 1.4rem;
    }
}

/* Service Title Link Specifics */
.service-card__title a {
    color: var(--ae-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.service-card__title a:hover {
    color: var(--ae-gold);
}

/* 6. Specific Meta / Lists */

/* Location Meta */
.location-card__meta {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.location-card__meta-item {
    display: flex;
    flex-direction: column;
}

.location-card__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--ae-text-muted);
    font-weight: 600;
    margin-bottom: 3px;
}

.location-card__value {
    font-size: 0.85rem;
    color: var(--ae-primary);
    font-weight: 700;
    margin: 0;
}

/* Service List */
.service-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.service-card__item {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.service-card__item::before {
    content: '▪';
    color: var(--ae-gold);
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.service-card__item a {
    color: var(--ae-text-body);
    text-decoration: none;
    transition: color 0.2s;
}

.service-card__item a:hover {
    color: var(--ae-gold);
}

/* 7. Actions (Footer/Arrow) */

/* Location Arrow (Positioned Absolute) */
.location-card__arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--ae-gold);
    font-size: 1.2rem;
    font-weight: 800;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

@media (min-width: 768px) {
    .location-card__arrow {
        bottom: 30px;
        right: 30px;
    }
}

.location-card:hover .location-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Service Action (In Flow) */
.service-card__footer {
    text-align: right;
    margin-top: 25px;
}

.service-card__action {
    display: inline-block;
    font-weight: 700;
    color: var(--ae-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-card__action {
    opacity: 1;
    transform: translateX(0);
}