/* 全局样式 */
:root {
    /* 航海经典：海军蓝 + 金属灰 + 金色点缀 */
    --primary-color: #0c2d48;
    --primary-dark: #061826;
    --primary-mid: #1a4a6e;
    --secondary-color: #3d5a73;
    --accent-gold: #c9a227;
    --accent-gold-soft: rgba(201, 162, 39, 0.35);
    --text-color: #1a2332;
    --text-light: #5c6b7e;
    --bg-page: #eef1f5;
    --bg-light: #e8ecf2;
    --bg-muted: #dfe6ee;
    --bg-dark: #061826;
    --bg-navy-deep: #0a1f33;
    --border-color: #cfd8e3;
    --shadow-sm: 0 1px 3px rgba(6, 24, 38, 0.08);
    --shadow-md: 0 8px 24px rgba(6, 24, 38, 0.1);
    --shadow-lg: 0 20px 50px rgba(6, 24, 38, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --font-display: Georgia, 'Times New Roman', 'Songti SC', 'SimSun', serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

/* 首屏根据 html[lang] 直接决定中英文显隐，避免切页闪烁 */
html[lang="en"] .zh,
html[lang="en"] .title-zh,
html[lang="en"] .subtitle-zh {
    display: none !important;
}

html[lang="zh"] .en,
html[lang="zh"] .title-en,
html[lang="zh"] .subtitle-en {
    display: none !important;
}

html[lang="en"] .en,
html[lang="en"] .title-en,
html[lang="en"] .subtitle-en {
    display: revert !important;
}

html[lang="zh"] .zh,
html[lang="zh"] .title-zh,
html[lang="zh"] .subtitle-zh {
    display: revert !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-color);
    background: var(--bg-page);
    background-image:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(26, 74, 110, 0.12), transparent 55%),
        linear-gradient(180deg, #f7f8fa 0%, var(--bg-page) 40%, #e8ecf0 100%);
    line-height: 1.65;
}

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

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(12, 45, 72, 0.08);
    box-shadow: 0 1px 0 rgba(201, 162, 39, 0.12);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(12, 45, 72, 0.12);
}

.navbar.scrolled .nav-container {
    height: 60px;
}

.navbar.scrolled .logo-icon {
    width: 36px;
    height: 36px;
}

.navbar.scrolled .logo-zh {
    font-size: 16px;
}

.navbar.scrolled .logo-en {
    font-size: 10px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: height 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-icon svg {
    display: none;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 无自定义 Logo 时：金属航海底纹 */
.logo-icon:empty {
    background: linear-gradient(145deg, var(--primary-mid), var(--primary-dark));
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.logo-icon:empty::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-40deg);
    opacity: 0.95;
}

.logo-text {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.logo-zh {
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo-en {
    font-size: 11px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

/* 默认显示中文Logo，隐藏英文Logo */
.logo-en {
    display: none;
}

html[lang="en"] .logo-zh {
    display: none;
}

html[lang="en"] .logo-en {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-mid);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-mid));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--primary-mid);
    color: #fff;
    border-color: var(--primary-mid);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

/* 移动端底部导航栏 */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f8 100%);
    box-shadow: 0 -4px 24px rgba(6, 24, 38, 0.12);
    border-top: 1px solid rgba(12, 45, 72, 0.08);
    z-index: 1002;
    padding-bottom: env(safe-area-inset-bottom);
    visibility: hidden;
}

body.lang-ready .mobile-nav {
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 60px;
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    padding: 6px 0;
    transition: color 0.2s;
}

.mobile-nav-link.active {
    color: var(--primary-mid);
}

.mobile-nav-link svg {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

.mobile-nav-link span {
    font-size: 10px;
    font-weight: 500;
}

/* 移动端侧边栏 */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1005;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.mobile-sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #64748b;
}

.sidebar-nav {
    padding: 10px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: linear-gradient(90deg, rgba(12, 45, 72, 0.06), transparent);
    color: var(--primary-mid);
    box-shadow: inset 3px 0 0 var(--accent-gold);
}

.sidebar-nav a svg {
    width: 20px;
    height: 20px;
    color: #64748b;
}

.sidebar-nav a.active svg {
    color: var(--primary-mid);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1004;
}

.sidebar-overlay.show {
    display: block;
}

/* Hero区域 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 40px;
    background: var(--bg-navy-deep);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(6, 24, 38, 0.72) 0%, rgba(6, 24, 38, 0.28) 42%, transparent 68%),
        radial-gradient(ellipse 80% 55% at 75% 25%, rgba(201, 162, 39, 0.1), transparent 55%),
        linear-gradient(180deg, transparent 38%, rgba(6, 24, 38, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('/images/hero-home.png?v=26') center/cover no-repeat;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 920px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 999px;
    background: rgba(6, 24, 38, 0.35);
    backdrop-filter: blur(6px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 162, 39, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
}

.stat-number span {
    font-size: 24px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}

/* 按钮 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #a68419 100%);
    color: #0a1628;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 162, 39, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.btn-block {
    width: 100%;
}

/* 服务区域 */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-page) 50%, #fff 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-mid));
    border-radius: 2px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(12, 45, 72, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.35);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary-mid), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(6, 24, 38, 0.2);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* 核心服务介绍响应式 */
@media (max-width: 768px) {
    .core-services-intro .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .core-services-intro .intro-text h2 {
        font-size: 24px;
    }
    
    .core-services-intro .intro-highlights {
        justify-content: center;
    }
}

/* 新闻区域 */
.news-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-page) 0%, #fff 30%, var(--bg-page) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(12, 45, 72, 0.06);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark));
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.news-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.section-footer .btn {
    color: var(--primary-mid);
    border-color: rgba(12, 45, 72, 0.35);
    background: rgba(255, 255, 255, 0.9);
}

.section-footer .btn:hover {
    background: var(--primary-mid);
    color: #fff;
    border-color: var(--primary-mid);
}

/* 联系区域 */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e3a5f 100%);
    color: #fff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-wrapper {
        display: block !important;
    }
}

.contact-info {
    width: 100%;
}

.contact-info .section-title {
    color: var(--text-color);
}

.contact-desc {
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text .label {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.contact-text .value {
    font-size: 16px;
    font-weight: 500;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #1e293b;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

/* 页脚 */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #030a12 100%);
    color: rgba(255,255,255,0.78);
    padding: 48px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.22);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* 响应式 */
@media (max-width: 768px) {
    /* 容器 */
    .container {
        padding: 0 16px;
    }

    /* 导航栏 - 简化顶部 */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-container {
        padding: 0 16px;
        height: 56px;
        position: relative;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .logo-icon svg {
        width: 22px;
        height: 22px;
    }

    .logo-zh {
        font-size: 16px;
    }

    .logo-en {
        font-size: 10px;
    }

    /* 隐藏顶部导航菜单 */
    .nav-menu {
        display: none !important;
    }

    /* 隐藏汉堡菜单按钮 */
    .mobile-menu-btn {
        display: none !important;
    }

    .nav-actions {
        gap: 10px;
    }

    .lang-toggle {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        background: #fff;
    }

    /* 显示底部导航 */
    .mobile-nav {
        display: block;
    }

    /* 显示侧边栏 */
    .mobile-sidebar {
        display: block;
    }

    /* 页面底部留出空间 */
    body {
        padding-bottom: 70px;
    }

    /* Hero区域 */
    .hero {
        min-height: calc(100vh - 70px);
        padding: 72px 16px 40px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
        margin: 40px 0 0;
        border-radius: 16px;
        width: 100%;
    }

    .stat-item {
        flex: 1 1 45%;
        min-width: 140px;
        padding: 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-number span {
        font-size: 18px;
    }

    .stat-label {
        font-size: 12px;
        margin-top: 4px;
    }

    /* 按钮 */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 24px;
    }

    /* 服务区域 */
    .services-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 4px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 24px;
        border-radius: 16px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .service-features li {
        font-size: 14px;
        padding: 6px 0;
    }

    /* 新闻区域 */
    .news-section {
        padding: 60px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card {
        border-radius: 16px;
    }

    .news-image {
        height: 180px;
    }

    .news-category {
        padding: 5px 12px;
        font-size: 11px;
        top: 12px;
        left: 12px;
    }

    .news-content {
        padding: 16px;
    }

    .news-date {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .news-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .news-excerpt {
        font-size: 13px;
    }

    .section-footer {
        margin-top: 30px;
    }

    .section-footer .btn {
        padding: 12px 28px;
    }

    /* 联系区域 */
    .contact-section {
        padding: 60px 16px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-info .section-title {
        font-size: 24px;
    }

    .contact-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .contact-items {
        gap: 16px;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-text .label {
        font-size: 12px;
    }

    .contact-text .value {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 24px;
        border-radius: 16px;
    }

    .contact-form-wrapper h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 16px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
    }

    /* 页脚 */
    .footer {
        padding: 30px 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .footer-logo svg {
        width: 24px;
        height: 24px;
    }

    .footer-name {
        font-size: 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    /* 页面头部 */
    .page-header {
        padding: 100px 16px 40px;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .page-desc {
        font-size: 15px;
    }

    /* 特性网格 */
    .feature-card {
        padding: 24px !important;
        border-radius: 16px !important;
    }

    .feature-card > div:first-child {
        font-size: 36px !important;
        margin-bottom: 12px !important;
    }

    .feature-card h3 {
        font-size: 17px !important;
        margin-bottom: 6px !important;
    }

    .feature-card p {
        font-size: 13px !important;
    }
}

/* 小屏幕手机 */
@media (max-width: 375px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .stat-item {
        flex: 1 1 100%;
        min-width: auto;
    }

    .section-title {
        font-size: 22px;
    }

    .page-title {
        font-size: 24px;
    }

    .services-grid,
    .news-grid {
        gap: 16px;
    }

    .service-card,
    .news-card {
        border-radius: 12px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}

/* 横屏手机优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 16px 40px;
    }

    .hero-stats {
        margin-top: 30px;
    }

    .stat-item {
        flex: 1 1 22%;
    }
}

/* 关于我们页面移动端优化 */
@media (max-width: 768px) {
    .about-intro {
        padding: 60px 0;
    }

    .about-intro-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-text h2 {
        font-size: 26px !important;
        margin-bottom: 16px !important;
    }

    .about-text h3 {
        font-size: 18px !important;
        margin-top: 22px !important;
        margin-bottom: 10px !important;
    }

    .about-text p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 16px !important;
    }

    .about-image {
        order: -1;
        border-radius: 16px !important;
    }

    .about-image img {
        height: 200px;
        object-fit: cover;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .value-card {
        padding: 24px !important;
        border-radius: 16px !important;
    }

    .value-card > div:first-child {
        width: 60px !important;
        height: 60px !important;
        border-radius: 14px !important;
        margin-bottom: 16px !important;
    }

    .value-card > div:first-child svg {
        width: 28px !important;
        height: 28px !important;
    }

    .value-card h3 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    .value-card p {
        font-size: 14px !important;
    }

    .history-section {
        padding: 60px 0;
    }

    .history-timeline {
        margin-top: 30px !important;
    }

    .timeline-item {
        padding-left: 40px !important;
        margin-bottom: 30px !important;
    }

    .timeline-item > div:nth-child(2) {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }

    .timeline-item > div:first-child {
        left: 6px !important;
        width: 14px !important;
        height: 14px !important;
    }

    .timeline-item p {
        font-size: 14px !important;
    }
}

/* 联系我们页面移动端优化 */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .branch-offices {
        margin-top: 30px !important;
    }

    .branch-offices h3 {
        font-size: 18px !important;
        margin-bottom: 16px !important;
    }

    .branch-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .branch-item {
        padding: 14px !important;
        border-radius: 10px !important;
    }

    .branch-item strong {
        font-size: 15px !important;
    }

    .branch-item p {
        font-size: 13px !important;
        margin-top: 6px !important;
    }

    .map-section div {
        height: 250px !important;
    }
}

/* 新闻页面移动端优化 */
@media (max-width: 768px) {
    .news-list-section {
        padding: 60px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 服务轮播图样式 */
.services-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.services-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.services-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.services-carousel-track .service-card {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(12, 45, 72, 0.12);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-mid);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-mid);
    color: #fff;
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-mid));
}

/* 客户评价区域 */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--bg-dark) 0%, var(--primary-color) 45%, var(--bg-navy-deep) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80') center/cover;
    opacity: 0.1;
}

.testimonials-section .section-header {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.testimonials-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
    stroke: #fbbf24;
}

.testimonial-content {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    font-size: 48px;
    color: var(--accent-gold);
    line-height: 0;
    vertical-align: middle;
    margin-right: 8px;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-dark);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    width: 30px;
    border-radius: 5px;
    background: #fff;
}

/* 轮播图和评价区域移动端适配 */
@media (max-width: 1024px) {
    .services-carousel-track .service-card {
        min-width: calc(50% - 20px);
    }
    
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    /* 核心服务区域优化 */
    .services-section {
        padding: 50px 0;
    }
    
    .services-section .section-header {
        margin-bottom: 30px;
        padding: 0;
    }
    
    .services-section .section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .services-section .section-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .services-carousel-wrapper {
        padding: 0 16px;
        position: relative;
        overflow: hidden;
    }
    
    .services-carousel {
        border-radius: 16px;
        overflow: hidden;
    }
    
    .services-carousel-track {
        gap: 0;
        display: flex;
    }
    
    .services-carousel-track .service-card {
        min-width: 100%;
        width: 100%;
        margin: 0;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        flex-shrink: 0;
    }
    
    .services-carousel-track .service-card:hover {
        transform: none;
    }
    
    .services-carousel-track .service-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 16px;
    }
    
    .services-carousel-track .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .services-carousel-track .service-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1e293b;
    }
    
    .services-carousel-track .service-desc {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.6;
        color: #64748b;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .services-carousel-track .service-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .services-carousel-track .service-features li {
        font-size: 12px;
        padding: 6px 12px;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        border-radius: 20px;
        color: #0369a1;
        font-weight: 500;
    }
    
    .services-carousel-track .service-features li::before {
        display: none;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-indicators {
        margin-top: 24px;
        gap: 8px;
    }
    
    .carousel-indicators .indicator {
        width: 8px;
        height: 8px;
        transition: all 0.3s ease;
    }
    
    .carousel-indicators .indicator.active {
        width: 28px;
        background: var(--primary-color);
    }
    
    /* 客户评价区域优化 */
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-section .section-header {
        margin-bottom: 30px;
        padding: 0;
    }
    
    .testimonials-section .section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .testimonials-section .section-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .testimonials-wrapper {
        padding: 0 16px;
        position: relative;
        overflow: hidden;
    }
    
    .testimonials-track {
        gap: 0;
        display: flex;
    }
    
    .testimonial-card {
        min-width: 100%;
        width: 100%;
        padding: 24px;
        margin: 0;
        border-radius: 16px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        flex-shrink: 0;
    }
    
    .testimonial-header {
        gap: 14px;
        margin-bottom: 14px;
    }
    
    .testimonial-avatar {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border: 2px solid rgba(255,255,255,0.2);
    }
    
    .testimonial-info h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 2px;
    }
    
    .testimonial-info p {
        font-size: 13px;
        opacity: 0.7;
    }
    
    .testimonial-rating {
        margin-bottom: 14px;
    }
    
    .testimonial-rating svg {
        width: 16px;
        height: 16px;
    }
    
    .testimonial-content {
        font-size: 14px;
        line-height: 1.7;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .testimonials-nav {
        margin-top: 24px;
        gap: 12px;
    }
    
    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .testimonial-nav-btn:hover {
        background: rgba(255,255,255,0.2);
    }
    
    .testimonial-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonial-dots .dot.active {
        width: 24px;
    }
}


/* ==================== 服务项目页面移动端优化 ==================== */
@media (max-width: 768px) {
    /* 页面头部优化 */
    .page-header {
        padding: 100px 16px 40px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-desc {
        font-size: 15px;
    }
    
    /* 核心服务介绍区域优化 */
    .core-services-intro {
        padding: 40px 0 !important;
    }
    
    .core-services-intro .intro-content {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .core-services-intro .intro-text h2 {
        font-size: 22px !important;
        margin-bottom: 16px !important;
    }
    
    .core-services-intro .intro-text p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 16px !important;
    }
    
    .core-services-intro .intro-image > div {
        padding: 24px !important;
        border-radius: 16px !important;
    }
    
    .core-services-intro .intro-image h3 {
        font-size: 18px !important;
        margin-bottom: 16px !important;
    }
    
    .core-services-intro .intro-image li {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .core-services-intro .intro-image li svg {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0;
    }
    
    /* 服务列表区域优化 */
    .services-section {
        padding: 40px 0 !important;
    }
    
    .services-section .section-header {
        margin-bottom: 24px !important;
    }
    
    .services-section .section-title {
        font-size: 22px !important;
    }
    
    .services-section .section-desc {
        font-size: 14px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .services-grid .service-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }
    
    .services-grid .service-icon {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
        margin-bottom: 14px !important;
    }
    
    .services-grid .service-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .services-grid .service-title {
        font-size: 17px !important;
        margin-bottom: 8px !important;
    }
    
    .services-grid .service-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 14px !important;
    }
    
    .services-grid .service-features {
        gap: 6px !important;
    }
    
    .services-grid .service-features li {
        font-size: 12px !important;
        padding: 5px 10px !important;
    }
    
    /* 为什么选择我们区域优化 */
    .service-detail {
        padding: 50px 0 !important;
    }
    
    .service-detail .section-title {
        font-size: 22px !important;
    }
    
    .service-detail .features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }
    
    .service-detail .feature-card {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }
    
    .service-detail .feature-card > div:first-child {
        font-size: 36px !important;
        margin-bottom: 10px !important;
    }
    
    .service-detail .feature-card h3 {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }
    
    .service-detail .feature-card p {
        font-size: 12px !important;
    }
    
    /* CTA区域优化 */
    .services-cta {
        padding: 60px 16px !important;
    }
    
    .services-cta h2 {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    
    .services-cta p {
        font-size: 15px !important;
        margin-bottom: 24px !important;
    }
    
    .services-cta .btn {
        padding: 12px 28px !important;
        font-size: 15px !important;
    }
}

/* 超小屏幕（375px以下）额外优化 */
@media (max-width: 375px) {
    .service-detail .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .services-grid .service-features li {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
}

/* ========== 航海经典 · 首页联系区块 ========== */
.contact-section--maritime {
    padding: 88px 0;
    background: linear-gradient(180deg, var(--bg-page) 0%, #fff 45%, var(--bg-light) 100%);
}

.contact-section--maritime .contact-section__intro {
    text-align: center;
    margin-bottom: 48px;
}

.contact-section--maritime .contact-section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.contact-section--maritime .contact-section__lead {
    font-size: 17px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.contact-section--maritime .contact-maritime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-maritime-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 40px;
    overflow: hidden;
    background: linear-gradient(155deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 162, 39, 0.22);
}

.contact-maritime-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 90% 10%, rgba(201, 162, 39, 0.15), transparent 55%);
    pointer-events: none;
}

.contact-maritime-card__inner {
    position: relative;
    z-index: 1;
}

.contact-maritime-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-maritime-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-maritime-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-maritime-meta {
    font-size: 13px;
    opacity: 0.82;
    margin-bottom: 4px;
}

.contact-maritime-value {
    font-size: 17px;
    font-weight: 600;
}

.contact-maritime-hours {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-maritime-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(12, 45, 72, 0.08);
}

.contact-maritime-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
}

.contact-maritime-form-wrap input,
.contact-maritime-form-wrap textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: var(--transition);
    box-sizing: border-box;
    background: #fafbfc;
    color: var(--text-color);
}

.contact-maritime-form-wrap input:focus,
.contact-maritime-form-wrap textarea:focus {
    outline: none;
    border-color: var(--primary-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 74, 110, 0.12);
}

.contact-maritime-form-wrap button[type="submit"] {
    padding: 16px 32px;
    width: 100%;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #a68419 100%);
    color: var(--bg-dark);
    transition: var(--transition);
}

.contact-maritime-form-wrap button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 162, 39, 0.4);
}

@media (max-width: 900px) {
    .contact-section--maritime .contact-maritime-grid {
        grid-template-columns: 1fr;
    }
}
