*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; font-size: 16px; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: #F8FAFC; color: #333; line-height: 1.6; } a { color: inherit; text-decoration: none; transition: color 0.3s; } img { max-width: 100%; height: auto; display: block; } ul, ol { list-style: none; } h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 600; line-height: 1.3; color: #0A2647; } h1 { font-size: 2.8rem; } h2 { font-size: 2.2rem; } h3 { font-size: 1.5rem; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .top-bar { background: #061c33; color: #ccc; font-size: 13px; padding: 8px 0; } .top-bar .container { display: flex; justify-content: space-between; align-items: center; } .top-bar a { color: #ccc; } .top-bar a:hover { color: #F5A623; } .top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; } .top-bar-right a { display: inline-flex; align-items: center; gap: 6px; } .site-header { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s, background 0.3s; } .site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); } .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; } .logo img, .site-logo img, .footer-logo img { height: 50px; width: auto; max-width: 100%; display: block; } .main-nav { display: flex; align-items: center; } .main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; } .main-nav a { padding: 12px 16px; font-size: 15px; font-weight: 500; color: #0A2647; border-radius: 4px; transition: color 0.3s, background 0.3s; white-space: nowrap; } .main-nav a:hover, .main-nav a.active { color: #F5A623; } .nav-cta { margin-left: 12px; } .header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; } .header-actions .btn-primary { padding: 8px 18px; font-size: 13px; border-radius: 6px; font-weight: 600; letter-spacing: 0.3px; text-transform: none; height: 38px; display: inline-flex; align-items: center; justify-content: center; } .lang-switcher { position: relative; display: flex; align-items: center; } .lang-btn { display: flex; align-items: center; gap: 4px; padding: 8px 14px; background: #f0f5ff; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; border: 1px solid #e2e8f0; color: #0A2647; white-space: nowrap; transition: all 0.2s; height: 38px; } .lang-btn:hover { background: #e0e8f5; border-color: #cbd5e1; } .lang-btn svg { width: 14px; height: 14px; } .lang-dropdown { position: absolute; top: 100%; right: 0; background: #fff; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); min-width: 130px; padding: 6px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s; z-index: 1001; margin-top: 4px; } .lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); } .lang-dropdown a { display: block; padding: 8px 14px; font-size: 13px; color: #333; white-space: nowrap; } .lang-dropdown a:hover, .lang-dropdown a.active { background: #f5f5f5; color: #F5A623; } .user-menu { position: relative; display: flex; align-items: center; } .user-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: #f0f5ff; border-radius: 6px; cursor: pointer; border: 1px solid #e2e8f0; color: #0A2647; transition: all 0.2s; } .user-btn:hover { background: #e0e8f5; border-color: #cbd5e1; } .user-btn svg { width: 20px; height: 20px; } .user-dropdown { position: absolute; top: 100%; right: 0; background: #fff; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); min-width: 200px; padding: 6px 0; display: none; transform: translateY(10px); transition: all 0.2s; z-index: 1001; margin-top: 4px; } .user-menu.open .user-dropdown { display: block; transform: translateY(0); } .user-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 14px; color: #333; white-space: nowrap; } .user-dropdown a:hover { background: #f5f5f5; color: #F5A623; } .user-dropdown a svg { flex-shrink: 0; } .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 1002; } .hamburger span { display: block; width: 24px; height: 2px; background: #0A2647; transition: transform 0.3s, opacity 0.3s; } .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .hamburger.active span:nth-child(2) { opacity: 0; } .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } .mobile-menu { display: none; position: fixed; top: 0; right: -100%; width: 260px; max-width: 70vw; height: 100vh; background: #0A2647; z-index: 1001; transition: right 0.3s ease; padding: 80px 24px 30px; overflow-y: auto; } .mobile-menu.active { right: 0; } .mobile-menu a { display: block; padding: 12px 0; color: #fff; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); } .mobile-menu a:hover { color: #F5A623; } .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.35); z-index: 1000; } .btn { display: inline-block; padding: 14px 32px; border-radius: 4px; font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; border: 2px solid transparent; transition: all 0.3s; text-align: center; } .btn-primary { background: #0A2647; color: #fff; border-color: #0A2647; } .btn-primary:hover { background: #0d3261; border-color: #0d3261; } .btn-secondary { background: #F5A623; color: #fff; border-color: #F5A623; } .btn-secondary:hover { background: #e0951a; border-color: #e0951a; } .btn-outline { background: transparent; color: #fff; border-color: #fff; } .btn-outline:hover { background: #fff; color: #0A2647; } .btn-sm { padding: 8px 20px; font-size: 13px; } .hero-section { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; color: #fff; } .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; } @media (max-width: 768px) { .hero-bg { background-attachment: scroll; } } .hero-overlay { position: absolute; inset: 0; background: rgba(10,38,71,0.1); } .hero-section .container { position: relative; z-index: 1; text-align: center; padding: 80px 20px; } .hero-content { max-width: 800px; margin: 0 auto; } .hero-subtitle { font-size: 14px; letter-spacing: 4px; text-transform: uppercase; color: #F5A623; margin-bottom: 20px; font-weight: 500; } .hero-title { font-size: 48px; font-weight: 700; color: #fff; margin-bottom: 20px; line-height: 1.2; white-space: nowrap; } .hero-desc { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; } .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; } .hero-social { display: flex; gap: 12px; justify-content: center; margin-top: 30px; } .hero-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.3s; } .hero-social a:hover { background: #F5A623; } .section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { position: relative; display: inline-block; padding-bottom: 16px; font-size: 2.2rem; } .section-header h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: #F5A623; } .section-header p { color: #666; margin-top: 16px; font-size: 17px; } .text-center { text-align: center; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .services-icons-section { background: #fff; } .services-icons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 40px 0; max-width: 900px; margin: 0 auto; } .service-icon-card { text-align: center; padding: 28px 16px; background: #fff; border-radius: 12px; border: 1px solid #eef2f6; transition: transform 0.3s, box-shadow 0.3s; } .service-icon-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); } .service-icon-img { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; } .service-icon-card h4 { font-size: 14px; color: #0A2647; font-weight: 500; line-height: 1.4; } .cards-grid { display: grid; gap: 30px; } .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } .cards-grid-2 { grid-template-columns: repeat(2, 1fr); } .routes-section { background: #fff; } .routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .route-card { background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); padding: 32px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; } .card { background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; } .card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); } .card-image { width: 100%; height: 220px; object-fit: cover; } .card-body { padding: 24px; } .card-body h3 { font-size: 20px; margin-bottom: 12px; } .card-body p { color: #666; line-height: 1.7; margin-bottom: 16px; } .card-link { color: #F5A623; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; } .card-link:hover { color: #e0951a; gap: 10px; } .route-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); } .route-card .route-icon { font-size: 48px; margin-bottom: 16px; } .route-card h3 { font-size: 22px; margin-bottom: 12px; } .route-card p { color: #666; font-size: 15px; } .stats-section { background: #0A2647; padding: 60px 0; position: relative; } .stats-overlay { display: none; } .stats-section { background: #0A2647; padding: 60px 0; position: relative; } .stats-overlay { display: none; } .stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; text-align: center; } .stat-item .stat-number { font-size: 48px; font-weight: 700; color: #F5A623; font-family: 'Poppins', sans-serif; } .stat-item .stat-label { color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; margin-top: 8px; } .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .why-card { background: #fff; border-radius: 8px; padding: 32px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s; } .why-card:hover { transform: translateY(-6px); } .why-card .why-icon { font-size: 42px; margin-bottom: 16px; } .why-card h4 { font-size: 18px; margin-bottom: 10px; } .why-card p { color: #666; font-size: 14px; line-height: 1.6; } .page-banner { position: relative; display: flex; align-items: center; justify-content: center; min-height: 320px; text-align: center; color: #fff; overflow: hidden; } .page-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; } .page-banner-bg img { width: 100%; height: 100%; object-fit: cover; } .page-banner-overlay { position: absolute; inset: 0; background: rgba(10,38,71,0.1); } @media (max-width: 768px) { .page-banner-bg { background-attachment: scroll; } } .page-banner .container { position: relative; z-index: 1; padding: 100px 20px 60px; } .page-banner h1 { color: #fff; font-size: 36px; margin-bottom: 12px; } .breadcrumb { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.6); display: flex; gap: 8px; justify-content: center; } .breadcrumb a { color: #F5A623; } .form-group { margin-bottom: 20px; } .form-group label { display: block; font-weight: 500; margin-bottom: 6px; color: #333; font-size: 14px; } .form-control { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s; background: #fff; } .form-control:focus { outline: none; border-color: #0A2647; box-shadow: 0 0 0 3px rgba(10,38,71,0.1); } textarea.form-control { min-height: 120px; resize: vertical; } select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .form-row-3 { grid-template-columns: 1fr 1fr 1fr; } .form-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #eef2f6; } .form-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .form-section-header { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: #0A2647; margin-bottom: 20px; } .form-section-header svg { flex-shrink: 0; } .inquiry-route-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: end; margin-bottom: 20px; } .route-arrow { display: flex; align-items: center; justify-content: center; padding-bottom: 12px; } .route-arrow svg { width: 28px; height: 28px; } .required-star { color: #E74C3C; } .newsletter-section { background: #0A2647; padding: 60px 0; color: #fff; position: relative; overflow: hidden; } .newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; } .newsletter-text h3 { color: #fff; font-size: 24px; margin-bottom: 8px; } .newsletter-text p { color: rgba(255,255,255,0.7); } .newsletter-form { display: flex; gap: 0; } .newsletter-form input { padding: 14px 20px; border: none; border-radius: 4px 0 0 4px; font-size: 15px; min-width: 300px; } .newsletter-form .btn { border-radius: 0 4px 4px 0; white-space: nowrap; } .newsletter-triangle { position: absolute; right: -20px; bottom: -20px; width: 200px; opacity: 0.1; pointer-events: none; } .site-footer { background: #061c33; color: #999; padding: 60px 0 0; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; } .footer-qr h4 { margin-bottom: 16px; } .footer-qr-grid { display: flex; gap: 16px; } .footer-qr-grid .qr-item img { width: 100px; height: 100px; object-fit: cover; border-radius: 6px; } .qr-item { text-align: center; } .qr-item span { display: block; font-size: 12px; color: #999; margin-top: 6px; } .qr-item { text-align: center; } .qr-item img { width: 100px; height: 100px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.15); padding: 4px; background: #fff; object-fit: contain; display: block; } .qr-item span { display: block; margin-top: 6px; font-size: 12px; color: #999; } .footer-col h4 { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: 600; } .footer-col p { line-height: 1.7; font-size: 14px; } .footer-col ul li { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; } .footer-col ul li a { color: #999; font-size: 14px; } .footer-col ul li a:hover { color: #F5A623; } .footer-col ul li svg { flex-shrink: 0; } .footer-social { display: flex; gap: 10px; margin-top: 16px; } .footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.3s; } .footer-social a:hover { background: #F5A623; } .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 13px; margin-top: 40px; } .whatsapp-btn { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s; animation: whatsapp-bounce 2s infinite; text-decoration: none; } .whatsapp-btn:hover { transform: scale(1.1); color: #fff; } @keyframes whatsapp-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } } .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; } .animate-on-scroll.animated { opacity: 1; transform: translateY(0); } .animate-delay-1 { transition-delay: 0.1s; } .animate-delay-2 { transition-delay: 0.2s; } .animate-delay-3 { transition-delay: 0.3s; } .animate-delay-4 { transition-delay: 0.4s; } .alert { padding: 14px 20px; border-radius: 6px; margin-bottom: 24px; font-size: 15px; } .alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } .alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; } .pagination { display: flex; gap: 4px; justify-content: center; margin-top: 40px; } .page-link { display: inline-block; padding: 10px 16px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; color: #333; transition: all 0.3s; } .page-link:hover, .page-link.active { background: #0A2647; color: #fff; border-color: #0A2647; } .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .service-card { background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); padding: 28px 16px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; } .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); } .service-card-icon { height: 50px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; } .service-card-icon svg { width: 44px; height: 44px; } .service-card h3 { font-size: 20px; margin-bottom: 12px; } .service-card p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 16px; } .service-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; } .service-detail-content { background: #fff; border-radius: 8px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); } .service-detail-content h2 { margin-bottom: 20px; } .service-detail-content p { color: #555; line-height: 1.8; margin-bottom: 20px; } .service-features { margin: 24px 0; } .service-features li { padding: 8px 0; padding-left: 28px; position: relative; color: #444; } .service-features li::before { content: '✓'; position: absolute; left: 0; color: #F5A623; font-weight: 700; } .service-sidebar { background: #fff; border-radius: 8px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); height: fit-content; } .service-sidebar h3 { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #F5A623; } .service-sidebar a { display: block; padding: 10px 16px; color: #555; border-radius: 4px; font-size: 15px; transition: all 0.3s; } .service-sidebar a:hover, .service-sidebar a.active { background: #0A2647; color: #fff; } .news-section { background: #F8FAFC; } .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .article-card { background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); padding: 24px; transition: transform 0.3s; } .article-card:hover { transform: translateY(-4px); } .article-meta { font-size: 13px; color: #999; margin-bottom: 8px; } .article-card h3 { font-size: 18px; margin-bottom: 8px; } .article-card h3 a:hover { color: #F5A623; } .article-card p { color: #666; font-size: 14px; line-height: 1.6; margin-bottom: 12px; } .btn-link { color: #F5A623; font-weight: 600; text-decoration: none; } .btn-link:hover { color: #e0951a; } .inquiry-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; } .inquiry-form { background: #fff; border-radius: 8px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); } .inquiry-sidebar { background: #fff; border-radius: 8px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); height: fit-content; } .inquiry-sidebar h3 { font-size: 18px; margin-bottom: 16px; } .inquiry-sidebar .info-item { padding: 12px 0; border-bottom: 1px solid #eee; } .inquiry-sidebar .info-item:last-child { border: none; } .contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; } .contact-info-card { background: #fff; border-radius: 8px; padding: 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); } .contact-info-card .contact-info-icon { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: #FFF7E6; border-radius: 50%; } .contact-info-card .contact-info-body { flex: 1; min-width: 0; } .contact-info-card .contact-info-body h4 { font-size: 14px; color: #94a3b8; margin-bottom: 4px; } .contact-info-card .contact-info-body a { font-size: 15px; font-weight: 500; color: #0A2647; word-break: break-all; display: inline-block; } .contact-info-card .contact-info-body a:hover { color: #F5A623; } .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } .news-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; } .news-detail-content { background: #fff; border-radius: 8px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); } .news-detail-content h1 { margin-bottom: 16px; } .news-detail-content .meta { color: #999; font-size: 14px; margin-bottom: 24px; } .news-detail-content .content { line-height: 1.8; color: #444; } .about-company { background: #fff; padding: 80px 0; } .about-company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .about-company-images { position: relative; } .about-img-main img { width: 100%; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); } .about-img-overlay { position: absolute; bottom: -30px; right: -30px; background: #0A2647; padding: 28px; border-radius: 8px; max-width: 260px; color: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.2); } .about-quote-text p { color: rgba(255,255,255,0.9); font-size: 14px; line-height: 1.6; font-style: italic; margin-bottom: 12px; } .about-quote-author { display: block; font-weight: 600; font-size: 14px; color: #F5A623; } .about-quote-role { display: block; font-size: 12px; color: rgba(255,255,255,0.6); } .about-company-content .section-subtitle { color: #F5A623; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 8px; } .about-company-content h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.3; } .about-desc { color: #555; line-height: 1.8; margin-bottom: 28px; } .about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; } .about-feature { display: flex; align-items: flex-start; gap: 14px; } .about-feature-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(245,166,35,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; } .about-feature h4 { font-size: 16px; margin-bottom: 2px; } .about-feature p { color: #666; font-size: 13px; line-height: 1.4; } .about-contact { margin-bottom: 20px; color: #666; font-size: 15px; } .about-contact a { color: #F5A623; font-weight: 600; } .section-subtitle { color: #F5A623; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 8px; } .text-left { text-align: left; } .text-left h2::after { left: 0; transform: none; } .why-choose { background: #F8FAFC; padding: 80px 0; } .how-it-works { background: #fff; padding: 80px 0; } .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .step-card { background: #F8FAFC; border-radius: 8px; padding: 32px 20px; text-align: center; position: relative; transition: transform 0.3s; border: 1px solid #eee; } .step-card:hover { transform: translateY(-4px); } .step-number { position: absolute; top: 12px; left: 16px; font-size: 13px; font-weight: 700; color: #0A2647; background: rgba(10,38,71,0.06); padding: 2px 10px; border-radius: 4px; } .step-icon { margin-bottom: 16px; } .step-card h4 { font-size: 16px; margin-bottom: 8px; } .step-card p { color: #666; font-size: 13px; line-height: 1.5; } .team-section { background: #fff; padding: 80px 0; } .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .team-card { background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); overflow: hidden; text-align: center; transition: transform 0.3s; } .team-card:hover { transform: translateY(-6px); } .team-img img { width: 100%; height: 280px; object-fit: cover; } .team-info { padding: 20px; } .team-info h4 { font-size: 18px; margin-bottom: 4px; } .team-info span { color: #F5A623; font-size: 14px; } .testimonials-section { background: #F8FAFC; padding: 80px 0; } .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .testimonials-image img { width: 100%; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); } .testimonial-card { background: #fff; border-radius: 8px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-top: 24px; } .testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; } .testimonial-card p { color: #555; line-height: 1.7; font-style: italic; font-size: 15px; margin-bottom: 16px; } .testimonial-author { font-size: 14px; color: #666; } .testimonial-author strong { color: #0A2647; } .testimonial-author span { color: #999; } .cta-section { background: linear-gradient(135deg, #0A2647 0%, #0d3261 100%); padding: 60px 0; text-align: center; color: #fff; } .cta-content { max-width: 600px; margin: 0 auto; } .cta-section h2 { color: #fff; margin-bottom: 12px; } .cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 28px; } .back-to-top { position: fixed; bottom: 96px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: #0A2647; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 998; cursor: pointer; border: none; } .back-to-top.visible { opacity: 1; visibility: visible; } .back-to-top:hover { background: #F5A623; } .page-404 { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 400px; text-align: center; padding: 60px 20px; } .page-404 h1 { font-size: 72px; color: #F5A623; margin-bottom: 16px; } .page-404 p { color: #666; font-size: 18px; margin-bottom: 30px; } @media (max-width: 992px) { .hero { min-height: 450px; } .hero-title { font-size: 36px; } .cards-grid-3 { grid-template-columns: repeat(2, 1fr); } .services-grid { grid-template-columns: repeat(2, 1fr); } .services-icons-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } .routes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .news-grid { grid-template-columns: repeat(2, 1fr); } .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } .why-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: repeat(2, 1fr); } .service-detail-layout, .inquiry-layout, .news-detail-layout, .contact-layout, .about-company-grid, .testimonials-grid { grid-template-columns: 1fr; } .steps-grid { grid-template-columns: repeat(2, 1fr); } .newsletter-inner { flex-direction: column; text-align: center; } .newsletter-form { width: 100%; } .newsletter-form input { min-width: 0; flex: 1; } .about-img-overlay { position: relative; bottom: 0; right: 0; margin-top: -30px; max-width: 100%; } } @media (max-width: 768px) { .main-nav, .nav-cta { display: none; } .hamburger { display: flex; } .mobile-menu { display: block; } .hero { min-height: 350px; background-attachment: scroll; } .hero-title { font-size: clamp(18px, 5.8vw, 28px); } .hero-desc { font-size: 16px; } .hero-section .container { padding: 60px 16px; } .section { padding: 50px 0; } .section-title { margin-bottom: 40px; } h2 { font-size: 1.8rem; } .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; } .services-grid { grid-template-columns: 1fr; } .services-icons-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px 0; } .routes-grid { grid-template-columns: 1fr; gap: 20px; } .route-card { padding: 24px; } .news-grid { grid-template-columns: 1fr; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .why-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .contact-info-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } .steps-grid { grid-template-columns: 1fr; } .team-grid { grid-template-columns: 1fr; } .form-row, .form-row-3 { grid-template-columns: 1fr; } .inquiry-route-row { grid-template-columns: 1fr; } .route-arrow { transform: rotate(90deg); padding: 8px 0; } .page-banner .container { padding: 70px 20px 40px; } .page-banner h1 { font-size: 26px; } .hero-buttons { flex-direction: column; align-items: center; } .stat-item .stat-number { font-size: 36px; } .newsletter-form { flex-direction: column; gap: 10px; } .newsletter-form input { min-width: auto; } .newsletter-form .btn { border-radius: 4px; } .top-bar { display: none; } .tracking-input-group { flex-wrap: wrap; } .tracking-input-group input[type="text"] { min-width: 0; font-size: 14px; padding: 12px 16px; height: auto; border-radius: 8px; border-right: 2px solid #e2e8f0; } .tracking-input-group .btn { padding: 12px 20px; font-size: 14px; height: auto; border-radius: 8px; flex: 1; min-width: 120px; } .about-img-overlay { position: relative; bottom: 0; right: 0; margin-top: -30px; max-width: 100%; padding: 20px; } } html[dir="rtl"] body { text-align: right; } html[dir="rtl"] .header-inner { direction: ltr; } html[dir="rtl"] .main-nav ul { direction: ltr; } html[dir="rtl"] .lang-dropdown { right: auto; left: 0; } html[dir="rtl"] .user-dropdown { right: auto; left: 0; } html[dir="rtl"] .service-features li { padding-left: 0; padding-right: 28px; } html[dir="rtl"] .service-features li::before { left: auto; right: 0; } html[dir="rtl"] .top-bar { direction: ltr; } html[dir="rtl"] .hamburger { margin-left: auto; margin-right: 0; } html[dir="rtl"] .form-control { text-align: right; } html[dir="rtl"] .back-to-top { right: auto; left: 24px; } html[dir="rtl"] .mobile-menu { right: auto; left: -100%; } html[dir="rtl"] .mobile-menu.active { right: auto; left: 0; } html[dir="rtl"] .gallery-lightbox .lightbox-close { right: auto; left: 30px; } html[dir="rtl"] .newsletter-triangle { right: auto; left: -20px; } html[dir="rtl"] select.form-control { background-position: left 16px center; } html[dir="rtl"] .tracking-input-group input[type="text"] { border-right: 2px solid #e2e8f0; border-left: none; border-radius: 0 8px 8px 0; } html[dir="rtl"] .tracking-input-group .btn { border-radius: 8px 0 0 8px; } .certifications-section { background: #fff; } .gallery-section { background: #F8FAFC; padding: 80px 0; } .gallery-marquee { width: 100%; overflow: hidden; position: relative; margin: 40px 0 0; } .gallery-marquee .marquee-track { display: flex; gap: 24px; animation: marquee-scroll 50s linear infinite; will-change: transform; width: max-content; } .gallery-marquee .marquee-track:hover { animation-play-state: paused; } .gallery-marquee .marquee-item { flex: 0 0 auto; width: 380px; position: relative; overflow: hidden; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); transition: transform 0.4s, box-shadow 0.4s; } .gallery-marquee .marquee-item:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,0.2); } .gallery-marquee .marquee-item img { width: 100%; height: 250px; object-fit: cover; display: block; border-radius: 16px; transition: transform 0.4s; } .gallery-marquee .marquee-item:hover img { transform: scale(1.06); } .gallery-marquee .marquee-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); z-index: 1; opacity: 0; transition: opacity 0.3s; } .gallery-marquee .marquee-item:hover::after { opacity: 1; } .gallery-marquee .marquee-caption { position: absolute; bottom: 16px; left: 16px; right: 16px; color: #fff; font-size: 14px; font-weight: 600; text-shadow: 0 2px 8px rgba(0,0,0,0.8); z-index: 2; padding: 10px 16px; background: rgba(10,38,71,0.85); border-radius: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } @keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } } .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; } @media (max-width: 992px) { .gallery-section { padding: 60px 0; } .gallery-marquee .marquee-track { gap: 20px; } .gallery-marquee .marquee-item { width: 300px; } .gallery-marquee .marquee-item img { height: 200px; } } @media (max-width: 768px) { .gallery-section { padding: 50px 0; } .gallery-marquee .marquee-track { gap: 16px; animation-duration: 35s; } .gallery-marquee .marquee-item { width: 260px; } .gallery-marquee .marquee-item img { height: 180px; } .gallery-marquee .marquee-caption { font-size: 13px; padding: 8px 14px; } } .gallery-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; } .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; } .gallery-item:hover img { transform: scale(1.08); } .gallery-item-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 30px 16px 14px; color: #fff; font-size: 14px; font-weight: 500; opacity: 0; transition: opacity 0.3s; } .gallery-item:hover .gallery-item-overlay { opacity: 1; } .gallery-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; } .gallery-lightbox.active { display: flex; } .gallery-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; } .gallery-lightbox .lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 36px; cursor: pointer; background: none; border: none; } @media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } } .gallery-carousel { overflow: hidden; margin: 0 -20px; padding: 0 20px; } .carousel-track { display: flex; gap: 16px; padding: 10px 0 20px; animation: carousel-scroll 30s linear infinite; will-change: transform; } .carousel-track:hover { animation-play-state: paused; } @keyframes carousel-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } .carousel-slide { flex: 0 0 auto; width: 320px; max-width: 100%; } .carousel-slide img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; } .carousel-slide:hover img { transform: scale(1.02); box-shadow: 0 8px 30px rgba(0,0,0,0.15); } .slide-caption { margin-top: 10px; font-size: 14px; font-weight: 500; color: #334155; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } @media (max-width: 768px) { .carousel-slide { width: 280px; } .carousel-slide img { height: 200px; } } .tracking-form-wrap { max-width: 600px; margin: 0 auto; padding: 0 20px; } .tracking-input-group { display: flex; gap: 0; max-width: 480px; margin: 0 auto; box-shadow: 0 2px 12px rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; } .tracking-input-group input[type="text"] { flex: 1; padding: 16px 20px; border: 2px solid #e2e8f0; border-right: none; font-size: 16px; border-radius: 8px 0 0 8px; outline: none; transition: border-color 0.3s; height: 56px; } .tracking-input-group input[type="text"]:focus { border-color: #0A2647; } .tracking-input-group .btn { padding: 16px 32px; font-size: 15px; border-radius: 0 8px 8px 0; height: 56px; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; text-transform: none; letter-spacing: 0.5px; } .tracking-result { max-width: 600px; margin: 40px auto 0; }
/* ===== FuYu Industry product pages ===== */
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:32px}@media(max-width:900px){.product-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.product-grid{grid-template-columns:1fr}}
.product-card{background:#fff;border:1px solid #EDF2F7;border-radius:12px;overflow:hidden;transition:transform .25s ease,box-shadow .25s ease;display:flex;flex-direction:column}
.product-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(10,38,71,.12)}
.product-img-link{display:block;aspect-ratio:4/3;overflow:hidden;background:#F1F5F9}
.product-img-link img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.product-card:hover .product-img-link img{transform:scale(1.05)}
.product-card-body{padding:18px 20px 22px;display:flex;flex-direction:column;gap:8px;flex:1}
.product-model{font-size:12px;letter-spacing:.5px;color:#F5A623;font-weight:700;text-transform:uppercase}
.product-card-body h3{font-size:16px;font-weight:700;color:#0A2647;margin:0}
.product-card-body h3 a{color:inherit;text-decoration:none}
.product-card-body h3 a:hover{color:#F5A623}
.product-card-body p{font-size:13px;color:#64748B;line-height:1.6;margin:0;flex:1}
.product-cat-filter{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:8px 0 8px}
.product-cat-filter a{padding:9px 20px;border:1px solid #E2E8F0;border-radius:999px;font-size:14px;color:#475569;text-decoration:none;transition:all .2s}
.product-cat-filter a:hover{border-color:#F5A623;color:#0A2647}
.product-cat-filter a.active{background:#0A2647;border-color:#0A2647;color:#fff}
.product-detail-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:40px;align-items:start}@media(max-width:820px){.product-detail-grid{grid-template-columns:1fr}}
.product-detail-img{position:relative;background:#F1F5F9;border-radius:14px;overflow:hidden}
.product-detail-img img{width:100%;display:block}
.product-detail-model-badge{position:absolute;top:14px;left:14px;background:rgba(10,38,71,.85);color:#F5A623;padding:6px 14px;border-radius:6px;font-size:13px;font-weight:700}
.product-detail-info h2{color:#0A2647;font-size:26px;font-weight:800;margin:0 0 12px}
.product-detail-summary{color:#64748B;font-size:16px;line-height:1.7;margin:0 0 22px}
.product-spec-table{width:100%;border-collapse:collapse;margin-bottom:24px}
.product-spec-table th,.product-spec-table td{border:1px solid #EDF2F7;padding:11px 16px;font-size:14px;text-align:left}
.product-spec-table th{background:#F8FAFC;color:#0A2647;font-weight:600;width:40%}
.product-spec-table td{color:#334155}
.product-detail-actions{display:flex;gap:14px;flex-wrap:wrap}
.product-detail-desc{margin-top:48px}
.product-detail-desc h3{color:#0A2647;font-size:22px;font-weight:800;margin-bottom:14px}
.product-detail-richtext{color:#475569;font-size:15px;line-height:1.8;white-space:normal}
.related-products{margin-top:56px}
.service-icon-card.cat-link{text-decoration:none;display:block;cursor:pointer}
.hero-actions{display:flex;gap:16px;margin-top:28px;flex-wrap:wrap}

/* ===== FuYu Industry professional B2B sections ===== */
.category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:36px}@media(max-width:900px){.category-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.category-grid{grid-template-columns:1fr}}
.category-card{position:relative;border-radius:14px;overflow:hidden;display:block;text-decoration:none;box-shadow:0 10px 30px rgba(10,38,71,.08);transition:transform .25s ease,box-shadow .25s ease;color:#fff}
.category-card:hover{transform:translateY(-6px);box-shadow:0 22px 45px rgba(10,38,71,.16);color:#fff}
.category-img{aspect-ratio:16/9;overflow:hidden;background:#E2E8F0}
.category-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.category-card:hover .category-img img{transform:scale(1.06)}
.category-body{position:absolute;left:0;right:0;bottom:0;background:linear-gradient(180deg,rgba(10,38,71,0),rgba(10,38,71,.82));padding:46px 22px 20px}
.category-body h3{font-size:18px;font-weight:800;margin:0 0 6px}
.category-link{font-size:13px;font-weight:600;opacity:.9}
.section-header-more{margin-top:10px}
.top-products-section .section-header{display:flex;flex-direction:column;align-items:center}
.advantage-section{background:#fff}
.advantage-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:36px}@media(max-width:900px){.advantage-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:560px){.advantage-grid{grid-template-columns:1fr}}
.advantage-card{background:#FBFDFF;border:1px solid #EDF2F7;border-radius:14px;padding:30px 24px;text-align:center;transition:transform .25s ease,box-shadow .25s ease}
.advantage-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(10,38,71,.10)}
.advantage-icon{width:80px;height:80px;border-radius:50%;background:#FEF3E2;display:flex;align-items:center;justify-content:center;margin:0 auto 18px}
.advantage-card h4{color:#0A2647;font-size:17px;font-weight:800;margin-bottom:10px}
.advantage-card p{color:#64748B;font-size:14px;line-height:1.7;margin:0}
.product-card-actions{display:flex;gap:8px;margin-top:6px;flex-wrap:wrap}
.article-card .article-img{display:block;aspect-ratio:16/9;overflow:hidden;border-radius:10px;margin-bottom:14px;background:#E2E8F0}
.article-card .article-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.article-card:hover .article-img img{transform:scale(1.05)}
.article-card h3 a{color:#0A2647;text-decoration:none;transition:color .2s}
.article-card h3 a:hover{color:#F5A623}
.stats-grid .stat-label{font-size:13px}

/* ===== Hero alignment fix ===== */
.hero-title { white-space: normal; max-width: 900px; margin-left: auto; margin-right: auto; font-size: clamp(26px, 4.5vw, 44px); line-height: 1.25; }
.hero-actions { justify-content: center; }
.hero-overlay { background: rgba(10,38,71,0.5); }
.hero-subtitle { letter-spacing: 3px; }

/* ===== Hero: bulletproof centering ===== */
.hero-content { text-align: center !important; }
.hero-subtitle { display: block !important; text-align: center !important; width: 100%; }
.hero-title { text-align: center !important; }
.hero-desc { text-align: center !important; }
.hero-actions { justify-content: center !important; }
.hero-actions .btn { margin: 0 6px; }

/* ===== Product categories section (moved to page bottom) ===== */
.categories-section { background: #fff; }
.category-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 24px; margin-top: 36px; }
@media (max-width: 900px) { .category-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .category-grid { grid-template-columns: 1fr !important; } }
.category-card { position: relative; border-radius: 14px; overflow: hidden; display: block; text-decoration: none; box-shadow: 0 10px 30px rgba(10,38,71,.08); transition: transform .25s ease, box-shadow .25s ease; color: #fff; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(10,38,71,.16); color: #fff; }
.category-img { height: 240px; overflow: hidden; background: #E2E8F0; }
.category-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.category-card:hover .category-img img { transform: scale(1.06); }
.category-body { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(10,38,71,0), rgba(10,38,71,.82)); padding: 46px 22px 20px; }
.category-body h3 { font-size: 18px; font-weight: 800; margin: 0 0 6px; }
.category-link { font-size: 13px; font-weight: 600; opacity: .9; }
