﻿/* service-brand-website.css - Extracted from inline styles */
:root {
      --red: #E60012;
      --red-hover: #CC0010;
      --red-light: rgba(230,0,18,0.08);
      --blue: #003366;
      --blue-light: #0066cc;
      --blue-lighter: #e8f0fa;
      --nav-bg: #0a1628;
      --body-bg: #ffffff;
      --section-bg: #f5f7fa;
      --text-dark: #333333;
      --text-body: #555555;
      --text-muted: #888888;
      --border-light: #e5e7eb;
      --card-shadow: 0 2px 12px rgba(0,0,0,0.08);
      --card-shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
      --header-h: 120px;
      --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
      --font-display: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background: var(--body-bg); color: var(--text-dark); font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f0f0f0; }
    ::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

    /* HEADER */
    
    
    
    .logo { font-size: 22px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
    .logo span { color: var(--red); }
    
    
    
    
    
    
    
    
    
    
    
    

    /* HERO */
    .hero-section { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #0a1628 0%, #0f2035 50%, #0a1628 100%); }
    .hero-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
    .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.25) 50%, rgba(10,22,40,0.4) 100%); }
    .hero-inner { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; padding: 140px 32px 80px; width: 100%; }
    .hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 18px; background: rgba(230,0,18,0.12); border: 1px solid rgba(230,0,18,0.25); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--red); letter-spacing: 0.05em; margin-bottom: 24px; }
    .hero-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.2; color: #fff; margin-bottom: 12px; max-width: 700px; }
    .hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.08em; margin-bottom: 20px; }
    .hero-desc { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 640px; }
    .hero-actions { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 15px; font-weight: 600; color: #fff; background: var(--red); border-radius: 8px; text-decoration: none; transition: all 0.3s; }
    .btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,0,18,0.3); }
    .btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 15px; font-weight: 600; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; text-decoration: none; transition: all 0.3s; }
    .btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

    /* BRAND VALUE - IMAGE LEFT TEXT RIGHT */
    .brand-value-section { padding: 80px 32px; background: #fff; }
    .brand-value-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .brand-value-img { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
    .brand-value-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
    .brand-value-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); pointer-events: none; }
    .brand-value-content h2 { font-size: 32px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
    .brand-value-content .section-line { width: 48px; height: 3px; background: var(--red); border-radius: 2px; margin-bottom: 24px; }
    .brand-value-content p { font-size: 15px; line-height: 1.9; color: var(--text-body); margin-bottom: 16px; }
    .brand-value-list { list-style: none; padding: 0; margin-top: 24px; }
    .brand-value-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 15px; line-height: 1.7; color: var(--text-body); }
    .brand-value-list li .check-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--red-light); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 14px; font-weight: 700; margin-top: 2px; }

    /* SERVICE CARDS - 4 CARDS */
    .services-section { padding: 80px 32px; background: var(--section-bg); }
    .services-inner { max-width: 1440px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header .label { display: inline-block; font-size: 12px; font-weight: 600; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
    .section-header h2 { font-size: 32px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
    .section-header p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }
    .service-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .service-card { background: #fff; border-radius: 16px; padding: 36px 28px; box-shadow: var(--card-shadow); border: 1px solid var(--border-light); transition: all 0.4s ease; position: relative; overflow: hidden; }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
    .service-card-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--red-light), rgba(230,0,18,0.15)); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
    .service-card h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
    .service-card p { font-size: 14px; line-height: 1.7; color: var(--text-body); margin-bottom: 16px; }
    .service-card ul { list-style: none; padding: 0; }
    .service-card ul li { font-size: 13px; line-height: 1.8; color: var(--text-muted); padding-left: 16px; position: relative; }
    .service-card ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

    /* CASES SECTION */
    .cases-section { padding: 80px 32px; background: #fff; }
    .cases-inner { max-width: 1440px; margin: 0 auto; }
    .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .case-card { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); transition: all 0.4s ease; cursor: pointer; }
    .case-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
    .case-thumb { width: 100%; height: 220px; object-fit: cover; display: block; background: linear-gradient(135deg, #e8f0fa, #f0f4f8); }
    .case-thumb-placeholder { width: 100%; height: 220px; overflow: hidden; }
    .case-thumb-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .case-info { padding: 20px; background: #fff; }
    .case-tag { font-size: 11px; font-weight: 600; color: var(--red); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
    .case-info h4 { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
    .case-info p { font-size: 13px; line-height: 1.6; color: var(--text-muted); }

    /* PROCESS - 5 STEPS HORIZONTAL */
    .process-section { padding: 80px 32px; background: var(--section-bg); }
    .process-inner { max-width: 1440px; margin: 0 auto; }
    .process-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 48px; }
    .process-timeline::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--red), rgba(230,0,18,0.15)); }
    .process-step { text-align: center; position: relative; z-index: 2; padding: 0 12px; }
    .process-num { width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(230,0,18,0.3); }
    .process-step h4 { font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
    .process-step p { font-size: 13px; line-height: 1.6; color: var(--text-muted); max-width: 180px; margin: 0 auto; }

    /* TESTIMONIALS */
    .testimonials-section { padding: 80px 32px; background: #fff; }
    .testimonials-inner { max-width: 1440px; margin: 0 auto; }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .testimonial-card { background: var(--section-bg); border-radius: 16px; padding: 32px; position: relative; border: 1px solid var(--border-light); transition: all 0.3s ease; }
    .testimonial-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
    .testimonial-quote { font-size: 36px; color: var(--red); opacity: 0.3; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
    .testimonial-text { font-size: 14px; line-height: 1.8; color: var(--text-body); margin-bottom: 20px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: 700; flex-shrink: 0; }
    .testimonial-name { font-size: 14px; font-weight: 700; color: var(--blue); }
    .testimonial-role { font-size: 12px; color: var(--text-muted); }

    /* CTA */
    .cta-section { padding: 80px 32px; background: linear-gradient(135deg, #0a1628 0%, #0f2035 100%); position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(230,0,18,0.1) 0%, transparent 60%); pointer-events: none; }
    .cta-inner { max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
    .cta-info { flex: 1; }
    .cta-info h2 { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 16px; }
    .cta-info p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
    .cta-contacts { display: flex; flex-direction: column; gap: 12px; }
    .cta-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.7); }
    .cta-contact strong { color: #fff; }
    .cta-contact-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(230,0,18,0.15); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--red); }
    .cta-contact-icon .svg-icon svg { width: 18px; height: 18px; }
    .cta-form { width: 400px; flex-shrink: 0; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; backdrop-filter: blur(10px); }
    .cta-form h3 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 20px; }
    .form-group { margin-bottom: 16px; }
    .form-input { width: 100%; padding: 12px 16px; font-size: 14px; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; outline: none; transition: all 0.3s; font-family: var(--font-body); }
    .form-input:focus { border-color: var(--red); background: rgba(255,255,255,0.1); }
    .form-input::placeholder { color: rgba(255,255,255,0.3); }
    .form-textarea { width: 100%; padding: 12px 16px; font-size: 14px; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; outline: none; resize: vertical; min-height: 100px; transition: all 0.3s; font-family: var(--font-body); }
    .form-textarea:focus { border-color: var(--red); background: rgba(255,255,255,0.1); }
    .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
    .btn-submit { width: 100%; padding: 14px; font-size: 15px; font-weight: 600; color: #fff; background: var(--red); border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s; font-family: var(--font-body); }
    .btn-submit:hover { background: var(--red-hover); }

    /* FOOTER */
    .site-footer { background: #fff; border-top: 1px solid var(--border-light); padding: 48px 32px 24px; }
    .footer-inner { max-width: 1440px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
    .footer-brand .logo { margin-bottom: 12px; display: inline-block; }
    .footer-brand p { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 16px; }
    .footer-social { display: flex; gap: 8px; }
    .footer-social a { width: 36px; height: 36px; border-radius: 8px; background: var(--section-bg); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-muted); text-decoration: none; transition: all 0.2s; }
    .footer-social a:hover { background: var(--red-light); color: var(--red); }
    .footer-col h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: var(--red); }
    .footer-bottom { padding-top: 24px; border-top: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
    .footer-bottom p { font-size: 13px; color: var(--text-muted); }
    .footer-tags { display: flex; gap: 12px; flex-wrap: wrap; }
    .footer-tag { font-size: 12px; color: var(--text-muted); padding: 4px 12px; background: var(--section-bg); border-radius: 100px; }
    /* RESPONSIVE */
    @media (max-width: 1440px) {
      .brand-value-inner { grid-template-columns: 1fr; gap: 32px; }
      .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
      .cases-grid { grid-template-columns: repeat(2, 1fr); }
      .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 32px; }
      .process-timeline::before { display: none; }
      .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-inner { flex-direction: column; }
      .cta-form { width: 100%; }
    }
    @media (max-width: 640px) {
      .service-cards-grid { grid-template-columns: 1fr; }
      .cases-grid { grid-template-columns: 1fr; }
      .process-timeline { grid-template-columns: repeat(2, 1fr); }
      .testimonial-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .hero-inner { padding: 120px 16px 60px; }
      .brand-value-section, .services-section, .cases-section, .process-section, .testimonials-section { padding: 48px 16px; }
      .cta-section { padding: 48px 16px; }
      .section-header h2 { font-size: 26px; }
    }
