﻿/* service-geo.css - Extracted from inline styles */
:root {
      --nav-bg: #0a1628;
      --heading: #003366;
      --accent: #E60012;
      --accent-hover: #cc0010;
      --bg-white: #ffffff;
      --bg-light: #f5f7fa;
      --text-dark: #1a2332;
      --text-gray: #5a6a7e;
      --text-light-gray: #8a96a8;
      --border-light: #e8ecf1;
      --header-h: 120px;
      --font-body: 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg-white); color: var(--text-dark); font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-light); }
    ::-webkit-scrollbar-thumb { background: rgba(0,51,102,0.15); border-radius: 3px; }
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* NAV */
    .site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); background: var(--nav-bg); box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
    .nav-inner { max-width: 1440px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; }
    .nav-logo { font-size: 20px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: 0.02em; }
    .nav-logo span { color: var(--accent); }
    
    
    
    
    
    .nav-right { display: flex; align-items: center; gap: 16px; }
    .nav-phone { font-size: 13px; color: rgba(255,255,255,0.5); }
    .btn-red { display: inline-flex; align-items: center; gap: 6px; padding: 9px 22px; font-size: 13px; font-weight: 600; color: #fff; background: var(--accent); border: none; border-radius: 100px; cursor: pointer; text-decoration: none; transition: all 0.25s; }
    .btn-red:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(230,0,18,0.3); }

    /* HERO with background image */
    .hero { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center; }
    .hero-bg { position: absolute; inset: 0; background: url('../images/hero-geo.jpg') center/cover no-repeat; }
    .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.35) 50%, rgba(10,22,40,0.45) 100%); }
    .hero-inner { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; padding: 120px 32px 80px; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(230,0,18,0.15); border: 1px solid rgba(230,0,18,0.3); border-radius: 100px; font-size: 12px; font-weight: 600; color: #ff4d5a; margin-bottom: 20px; }
    .hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 6px; }
    .hero h1 span { background: linear-gradient(135deg, #fff 30%, rgba(230,0,18,0.8) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero-sub-en { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
    .hero-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 560px; margin-bottom: 32px; }
    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    /* SECTION COMMON */
    .section-wrap { padding: 80px 32px; }
    .section-wrap--alt { background: var(--bg-light); }
    .section-inner { max-width: 1440px; margin: 0 auto; }
    .section-title { font-size: 28px; font-weight: 800; color: var(--heading); margin-bottom: 8px; }
    .section-title .accent { color: var(--accent); }
    .section-subtitle { font-size: 15px; color: var(--text-gray); line-height: 1.7; max-width: 600px; margin-bottom: 40px; }

    /* What is GEO - Image Left Text Right */
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    @media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; } }
    .intro-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); position: relative; }
    .intro-img-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; }
    .intro-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, rgba(0,51,102,0.08)); }
    .intro-text h3 { font-size: 22px; font-weight: 800; color: var(--heading); margin-bottom: 16px; }
    .intro-text p { font-size: 15px; color: var(--text-gray); line-height: 1.8; margin-bottom: 16px; }
    .intro-text p strong { color: var(--heading); }
    .intro-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
    .intro-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-dark); line-height: 1.6; }
    .intro-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }

    /* 4 Capability Cards */
    .cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    @media (max-width: 900px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .cap-grid { grid-template-columns: 1fr; } }
    .cap-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; border: 1px solid var(--border-light); transition: all 0.3s; position: relative; overflow: hidden; }
    .cap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), #ff4d5a); transform: scaleX(0); transition: transform 0.3s; }
    .cap-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
    .cap-card:hover::before { transform: scaleX(1); }
    .cap-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; background: rgba(0,51,102,0.06); }
    .cap-card h4 { font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
    .cap-card p { font-size: 13px; color: var(--text-gray); line-height: 1.7; }

    /* Timeline */
    .timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    @media (max-width: 768px) { .timeline { grid-template-columns: 1fr; } }
    .timeline::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 3px; background: linear-gradient(90deg, var(--accent), rgba(230,0,18,0.15)); border-radius: 2px; }
    @media (max-width: 768px) { .timeline::before { display: none; } }
    .tl-step { text-align: center; position: relative; padding: 0 16px; }
    .tl-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; box-shadow: 0 4px 16px rgba(230,0,18,0.3); }
    .tl-step h4 { font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
    .tl-step p { font-size: 13px; color: var(--text-gray); line-height: 1.7; }

    /* Compare Table */
    .compare-table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border-radius: 16px; border: 1px solid var(--border-light); }
    .compare-table thead th { padding: 16px 24px; font-size: 15px; font-weight: 700; text-align: left; border-bottom: 1px solid var(--border-light); }
    .compare-table thead th:first-child { background: var(--bg-light); color: var(--text-gray); }
    .compare-table thead th:nth-child(2) { background: var(--bg-light); color: var(--heading); }
    .compare-table thead th:last-child { background: var(--accent); color: #fff; }
    .compare-table tbody td { padding: 14px 24px; font-size: 14px; border-bottom: 1px solid var(--border-light); color: var(--text-gray); }
    .compare-table tbody tr:last-child td { border-bottom: none; }
    .compare-table tbody td:last-child { color: var(--text-dark); font-weight: 600; background: rgba(230,0,18,0.02); }
    .compare-table tbody tr:hover td { background: rgba(0,51,102,0.02); }
    .compare-table tbody tr:hover td:last-child { background: rgba(230,0,18,0.04); }

    /* Industry Grid 6 */
    .industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 768px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .industry-grid { grid-template-columns: 1fr; } }
    .industry-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid var(--border-light); transition: all 0.3s; display: flex; align-items: flex-start; gap: 16px; }
    .industry-card:hover { border-color: rgba(230,0,18,0.2); box-shadow: 0 8px 28px rgba(0,0,0,0.06); transform: translateY(-2px); }
    .industry-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
    .industry-card h4 { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
    .industry-card p { font-size: 13px; color: var(--text-gray); line-height: 1.7; }

    /* CTA DARK */
    .cta-dark { background: var(--nav-bg); position: relative; overflow: hidden; }
    .cta-dark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(230,0,18,0.08) 0%, transparent 50%); }
    .cta-inner { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; padding: 80px 32px; text-align: center; }
    .cta-dark h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: #fff; margin-bottom: 12px; }
    .cta-dark h2 span { color: #ff4d5a; }
    .cta-dark p { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
    .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; align-items: center; }

    /* FOOTER */
    .site-footer { background: #fff; border-top: 1px solid var(--border-light); }
    .footer-inner { max-width: 1440px; margin: 0 auto; padding: 64px 32px 32px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand { font-size: 20px; font-weight: 800; color: var(--heading); margin-bottom: 12px; }
    .footer-brand span { color: var(--accent); }
    .footer-brand-desc { font-size: 13px; color: var(--text-gray); line-height: 1.8; max-width: 240px; }
    .footer-col-title { font-size: 14px; font-weight: 700; color: var(--heading); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { font-size: 13px; color: var(--text-gray); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--accent); }
    .footer-bottom { max-width: 1440px; margin: 0 auto; padding: 20px 32px; border-top: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 12px; color: var(--text-light-gray); }
    .footer-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-light-gray); }
    .footer-meta a { color: var(--text-light-gray); text-decoration: none; }
    .footer-meta a:hover { color: var(--accent); }

    /* Feature image in content */
    .feature-img-full { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
    .feature-img-full img { width: 100%; height: 280px; object-fit: cover; display: block; }
