/**
 * 功能说明：全站主样式表
 * 作者：AI 自动开发
 * 创建时间：2026-06-06
 */

:root {
    --primary: #0c2340;
    --primary-light: #1a3a5c;
    --accent: #c9a227;
    --accent-hover: #b8921f;
    --text: #1a1a2e;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0c2340;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
    --shadow-lg: 0 12px 40px rgba(12, 35, 64, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn_primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn_primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.btn_outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn_outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn_white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn_white:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.btn_outline_white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.btn_outline_white:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: #fff;
}

.btn_sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn_lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn_block {
    width: 100%;
}

/* Top Bar */
.top_bar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}

.top_bar_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_bar_left {
    display: flex;
    gap: 24px;
}

.top_bar_item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang_switch {
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
}

.lang_switch:hover {
    color: #fff;
}

/* Header */
.site_header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--border);
    transition: box-shadow var(--transition);
}

.site_header.scrolled {
    box-shadow: var(--shadow);
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 40px;
    width: auto;
}

.main_nav ul {
    display: flex;
    gap: 4px;
}

.main_nav a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.main_nav a:hover,
.main_nav a.active {
    color: var(--accent);
    background: rgba(201, 162, 39, 0.08);
}

.has_dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
}

.has_dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 10px 20px;
    border-radius: 0;
}

.dropdown a:hover {
    background: var(--bg-light);
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile_toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile_toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #2a5298 100%);
}

.hero_bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero_bg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
}

.hero_content {
    position: relative;
    z-index: 1;
    padding: 80px 20px 100px;
    width: 100%;
}

.hero_badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 50px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero_highlight {
    color: var(--accent);
}

.hero_desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero_actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    padding: 32px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat_item {
    text-align: center;
}

.stat_item strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.stat_item span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    display: block;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section_header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section_tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section_header h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.section_header p {
    color: var(--text-muted);
    font-size: 16px;
}

.section_footer {
    text-align: center;
    margin-top: 40px;
}

/* Service Cards */
.services_section {
    background: var(--bg-light);
}

.service_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service_card {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.service_card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: inherit;
}

.service_icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service_icon_air { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.service_icon_sea { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.service_icon_fba { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.service_icon_route { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.service_card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.service_card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card_link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* Routes */
.route_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.route_item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.route_item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: inherit;
}

.route_flag {
    font-size: 32px;
    margin-bottom: 12px;
}

.route_item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.route_item p {
    font-size: 12px;
    color: var(--text-muted);
}

.route_item_cta {
    background: var(--primary);
    border-color: var(--primary);
}

.route_item_cta h4,
.route_item_cta p {
    color: rgba(255,255,255,0.9);
}

/* Advantages */
.advantages_grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.advantage_list {
    margin-top: 32px;
}

.advantage_list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.advantage_icon {
    width: 32px;
    height: 32px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.advantage_list strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.advantage_list p {
    font-size: 14px;
    color: var(--text-muted);
}

.advantages_visual {
    display: flex;
    justify-content: center;
}

.visual_card {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.visual_number {
    font-size: 80px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.visual_label {
    font-size: 16px;
    margin-top: 8px;
    opacity: 0.85;
}

/* News */
.news_section {
    background: var(--bg-light);
}

.news_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news_card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.news_card:hover {
    box-shadow: var(--shadow);
}

.news_date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news_card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news_card h3 a {
    color: var(--primary);
}

.news_card h3 a:hover {
    color: var(--accent);
}

.news_card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* CTA */
.cta_section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}

.cta_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta_content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta_content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.cta_actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Page Banner */
.page_banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page_banner h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
}

.page_banner p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* Content Page */
.page_content {
    padding: 60px 0;
}

.content_wrap {
    max-width: 800px;
    margin: 0 auto;
}

.content_wrap h2,
.content_wrap h3 {
    color: var(--primary);
    margin: 24px 0 12px;
}

.content_wrap p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text);
}

.content_wrap ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.content_wrap li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Route Cards Grid */
.route_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.route_card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.route_card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--accent);
    color: inherit;
}

.route_card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.route_card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* FAQ */
.faq_list {
    max-width: 800px;
    margin: 0 auto;
}

.faq_item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq_question {
    width: 100%;
    padding: 20px 24px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq_question:hover {
    background: var(--bg-light);
}

.faq_question::after {
    content: '+';
    font-size: 20px;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq_item.active .faq_question::after {
    transform: rotate(45deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq_item.active .faq_answer {
    max-height: 500px;
}

.faq_answer_inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Quote Form */
.quote_section {
    padding: 60px 0;
    background: var(--bg-light);
}

.quote_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form_control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: border-color var(--transition);
    font-family: var(--font);
}

.form_control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quote_result {
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.quote_result_price {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0;
}

.quote_result_info {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form_message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}

.form_message.success {
    display: block;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form_message.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Contact */
.contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact_info_card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
}

.contact_info_item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact_info_item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact_info_item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Article */
.article_header {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
}

.article_meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.article_body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.article_body p {
    margin-bottom: 16px;
}

/* 404 */
.error_page {
    text-align: center;
    padding: 120px 20px;
}

.error_page h1 {
    font-size: 80px;
    color: var(--primary);
    font-weight: 700;
}

.error_page p {
    font-size: 18px;
    color: var(--text-muted);
    margin: 16px 0 32px;
}

/* Footer */
.site_footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
}

.footer_top {
    padding: 60px 0 40px;
}

.footer_grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer_col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer_col ul li {
    margin-bottom: 10px;
}

.footer_col a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.footer_col a:hover {
    color: var(--accent);
}

.footer_about p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
}

.footer_desc {
    opacity: 0.7;
}

.footer_logo {
    filter: brightness(0) invert(1);
}

.footer_contact li {
    font-size: 14px;
    line-height: 1.6;
}

.footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer_bottom_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer_bottom a {
    color: rgba(255,255,255,0.5);
}

/* Float Contact */
.float_contact {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.float_btn span {
    font-size: 10px;
    margin-top: 2px;
}

.float_btn:hover {
    transform: scale(1.08);
    color: #fff;
}

.float_phone { background: #10b981; }
.float_quote { background: var(--accent); }
.float_wechat { background: #07c160; }

.wechat_popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.wechat_popup.show {
    display: flex;
}

.wechat_popup_inner {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    max-width: 280px;
}

.wechat_close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.wechat_id {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    color: var(--text);
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pagination .active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .service_cards { grid-template-columns: repeat(2, 1fr); }
    .route_grid { grid-template-columns: repeat(3, 1fr); }
    .news_grid { grid-template-columns: repeat(2, 1fr); }
    .footer_grid { grid-template-columns: repeat(2, 1fr); }
    .advantages_grid { grid-template-columns: 1fr; }
    .route_cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top_bar_left { display: none; }
    .main_nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow-lg);
        padding: 16px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    .main_nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main_nav ul { flex-direction: column; }
    .main_nav a { padding: 12px 16px; }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
    }
    .mobile_toggle { display: flex; }
    .hero { min-height: auto; }
    .hero_stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; padding: 20px; }
    .service_cards { grid-template-columns: 1fr; }
    .route_grid { grid-template-columns: repeat(2, 1fr); }
    .news_grid { grid-template-columns: 1fr; }
    .cta_inner { flex-direction: column; text-align: center; }
    .quote_grid { grid-template-columns: 1fr; }
    .contact_grid { grid-template-columns: 1fr; }
    .form_row { grid-template-columns: 1fr; }
    .footer_grid { grid-template-columns: 1fr; }
    .footer_bottom_inner { flex-direction: column; gap: 8px; }
    .route_cards { grid-template-columns: 1fr; }
    .float_contact { right: 12px; bottom: 60px; }
    .float_btn { width: 48px; height: 48px; }
}
