@charset "UTF-8";

/* ============================================================
   鑫百顺企业网站 - 全局样式表
   Pure CSS · UTF-8 · Mobile First Responsive
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
  /* 主色系 */
  --primary: #0052cc;
  --primary-dark: #003d99;
  --primary-light: #1a73e8;
  --primary-rgb: 0, 82, 204;

  /* 强调色 */
  --accent: #ff6b35;
  --accent-dark: #e55a24;
  --accent-rgb: 255, 107, 53;

  /* 金色 */
  --gold: #c8961e;

  /* 文字颜色 */
  --text-dark: #1a1a2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* 背景色 */
  --bg-white: #ffffff;
  --bg-light: #f8faff;
  --bg-gray: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-darker: #080d1a;

  /* 边框 */
  --border: #e2e8f0;
  --border-light: rgba(0, 0, 0, 0.06);

  /* 阴影 */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);

  /* 圆角 */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  /* 字体 */
  --font: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* 间距 */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;

  /* 过渡 */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* z-index 层级 */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 900;
  --z-modal: 999;
  --z-toast: 9999;
}


/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: inherit;
  color: inherit;
}

input,
textarea,
select {
  font-family: var(--font);
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

::selection {
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary-dark);
}


/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ===== Section Helpers ===== */
section {
  padding: 90px 0;
}
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-white);
}

.section-gray {
  background: var(--bg-gray);
}

.section-dark {
  background: var(--bg-dark);
  color: white;
}

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

.section-header.light h2,
.section-header.light p {
  color: white;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-header.light .section-tag,
.section-tag.light {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}


/* ===== Header ===== */
#header,
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

#header.scrolled,
.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.99);
}

.header-inner,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo a,
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.logo a:hover,
.nav-logo:hover {
  opacity: 0.85;
}

.logo-icon,
.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.logo a:hover .logo-icon,
.nav-logo:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  flex-shrink: 0;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.nav-desktop a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.nav-desktop a.active {
  color: var(--primary);
  font-weight: 600;
}

.btn-nav {
  background: var(--primary) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.4) !important;
}

/* Navigation Dropdown */
.nav-item {
  position: relative;
}

.nav-item > a::after {
  content: ' \25BE';
  font-size: 9px;
  vertical-align: middle;
  margin-left: 2px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
  padding: 8px 0;
  min-width: 190px;
  z-index: var(--z-dropdown);
}

.nav-item:hover .nav-dropdown {
  display: block;
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-body);
  white-space: nowrap;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
}

.nav-dropdown .dropdown-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 18px 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-dropdown .dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 12px;
}

/* Mobile Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.nav-mobile.open,
body.nav-open .nav-mobile {
  display: flex;
  max-height: 500px;
  padding: 12px 0;
}

.nav-mobile a {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.nav-mobile a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Mobile Nav Sub-items */
.nav-mobile .nav-sub-section {
  padding: 0 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-mobile a.nav-sub {
  padding: 8px 36px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  border-bottom: none;
}

.nav-mobile a.nav-sub:hover {
  color: var(--primary);
}


/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1628 0%, #0d2148 40%, #0f3460 70%, #1a4a8a 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(26, 115, 232, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 82, 204, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(200, 150, 30, 0.06) 0%, transparent 60%);
  animation: particleDrift 20s ease-in-out infinite alternate;
}

@keyframes particleDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, 10px) scale(1.02);
  }
  100% {
    transform: translate(10px, -5px) scale(1);
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 24px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-content h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 44px;
  line-height: 1.8;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.5);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-outline:active {
  transform: translateY(0);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 700px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 0 32px;
}

.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}


/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-right: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(var(--primary-rgb), 0.04);
  color: var(--primary);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.trust-item:hover svg {
  transform: scale(1.15);
}


/* ===== Why Choose Section ===== */
.why-section {
  padding: 60px 0;
  background: var(--bg-light);
}

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

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}


/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.06), var(--shadow-md);
}

.service-card.featured::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

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

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-list {
  margin-bottom: 20px;
}

.service-list li {
  font-size: 13.5px;
  color: var(--text-body);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--bg-gray);
  transition: color var(--transition-fast);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.service-list li:hover {
  color: var(--primary);
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  gap: 8px;
  color: var(--primary-dark);
}


/* ===== Offshore Section ===== */
.offshore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offshore-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.offshore-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.offshore-card.highlight {
  background: rgba(26, 115, 232, 0.2);
  border-color: rgba(26, 115, 232, 0.5);
  box-shadow: 0 0 30px rgba(26, 115, 232, 0.2);
}

.offshore-card.highlight:hover {
  box-shadow: 0 0 40px rgba(26, 115, 232, 0.3);
}

.offshore-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.offshore-flag {
  font-size: 48px;
  margin-bottom: 12px;
  transition: transform var(--transition);
}

.offshore-card:hover .offshore-flag {
  transform: scale(1.1);
}

.offshore-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.offshore-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.offshore-tags span {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.offshore-tags span:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.offshore-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.offshore-price {
  font-size: 15px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.btn-offshore {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-offshore:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}


/* ===== Peripheral Section ===== */
.peripheral-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.peripheral-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.peripheral-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
  transform: translateY(-3px);
}

.p-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition);
}

.peripheral-card:hover .p-icon {
  transform: scale(1.08);
}

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

.p-icon.red {
  background: linear-gradient(135deg, #e53935, #c62828);
}

.p-icon.blue {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
}

.p-icon.green {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.p-icon.orange {
  background: linear-gradient(135deg, #e65100, #bf360c);
}

.p-icon.purple {
  background: linear-gradient(135deg, #6a1b9a, #4a148c);
}

.p-icon.teal {
  background: linear-gradient(135deg, #00695c, #004d40);
}

.p-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.p-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.p-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.p-link:hover {
  gap: 8px;
  color: var(--primary-dark);
}


/* ===== Process Section ===== */
.section-gradient {
  background: linear-gradient(135deg, #0f172a, #1a3a6b, #0f172a);
  padding: 90px 0;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  padding: 40px 32px;
  max-width: 200px;
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 4px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.process-step:hover .step-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.process-arrow {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.25);
  padding: 0 8px;
  transition: color var(--transition);
}

.process-step:hover + .process-arrow,
.process-arrow:hover {
  color: rgba(255, 255, 255, 0.5);
}


/* ===== News Section ===== */
.news-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.news-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

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

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.news-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.news-card:hover::after {
  transform: scaleX(1);
}

.news-date {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.news-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.news-card h3 a:hover {
  color: var(--primary);
}

.news-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}

.news-read-more:hover {
  gap: 8px;
  color: var(--primary-dark);
}

.news-more {
  text-align: center;
  margin-top: 32px;
}

/* Home Blog Cards */
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.home-blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.home-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.home-blog-card:hover::before {
  transform: scaleX(1);
}

.home-blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  padding: 3px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
  width: fit-content;
}

.home-blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.home-blog-read {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.home-blog-card:hover .home-blog-read {
  gap: 8px;
}


/* ===== About Section ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-tag {
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-lead {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.highlight-item:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.highlight-item strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.highlight-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: floatCard 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-stat-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-xl);
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.asc-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.asc-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}


/* ===== FAQ Section ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
}

.faq-item.open,
.faq-item.active {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
  color: var(--text-muted);
}

.faq-item.open .faq-arrow,
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-item.open .faq-answer,
.faq-item.active .faq-answer {
  display: block;
  animation: faqSlideDown 0.3s ease;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}


/* ===== Contact Section ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-tag {
  margin-bottom: 16px;
}

.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition);
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-item svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color var(--transition);
}

.contact-item:hover svg {
  color: var(--accent);
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item strong {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.contact-item span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

/* QR Codes */
.footer-qr-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition);
}

.qr-item:hover {
  transform: scale(1.05);
}

.qr-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  background: white;
  padding: 4px;
  transition: border-color var(--transition);
}

.qr-item:hover .qr-img {
  border-color: rgba(255, 255, 255, 0.4);
}

.qr-item span {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-align: center;
}

.qr-img-single {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: white;
  padding: 8px;
  margin-top: 10px;
  display: block;
  transition: transform var(--transition);
}

.qr-img-single:hover {
  transform: scale(1.05);
}

.contact-item-qr {
  align-items: flex-start;
}

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  margin-top: 4px;
  border: none;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.45);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}


/* ===== Consult Modal ===== */
.consult-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.consult-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.consult-modal {
  background: white;
  border-radius: 16px;
  padding: 36px 32px 28px;
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consult-modal-overlay.active .consult-modal {
  transform: translateY(0) scale(1);
}

.consult-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.consult-modal-close:hover {
  color: var(--text-dark);
  background: var(--bg-light);
}

.consult-modal h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 22px;
  text-align: center;
}

.consult-modal .form-group {
  margin-bottom: 14px;
}

.consult-modal .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.consult-modal .form-group input,
.consult-modal .form-group textarea,
.consult-modal .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}

.consult-modal .form-group input:focus,
.consult-modal .form-group textarea:focus,
.consult-modal .form-group select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.08);
}

.consult-modal .form-group textarea {
  resize: vertical;
}

.consult-modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consult-modal .btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 2px;
}

.consult-modal .btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.4);
}

.consult-modal .btn-submit svg {
  width: 16px;
  height: 16px;
}

.consult-modal .form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* Captcha */
.captcha-group {
  margin-bottom: 10px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-question {
  flex-shrink: 0;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f0f4ff, #e8eefd);
  border: 1px dashed var(--primary-light);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  user-select: none;
  white-space: nowrap;
}

.captcha-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
  letter-spacing: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.captcha-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.captcha-refresh {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-white);
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.captcha-refresh:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0f4ff;
  transform: rotate(90deg);
}


/* ===== Footer ===== */
.footer {
  background: var(--bg-darker);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-logo .logo-icon {
  font-size: 16px;
  width: 36px;
  height: 36px;
}

.footer .brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 4px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 14px;
  border-radius: 20px;
  margin-top: 20px;
  transition: background var(--transition), border-color var(--transition);
}

.cert-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: white;
}


/* ===== Float Button ===== */
.float-contact {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: var(--z-sticky);
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
  border: none;
  cursor: pointer;
}

.float-btn svg {
  width: 18px;
  height: 18px;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.55);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.6), 0 0 0 8px rgba(var(--accent-rgb), 0.08);
  }
}


/* ===== Toast ===== */
.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: #10b981;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-toast);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show {
  transform: translateX(0);
}

.toast.error {
  background: #ef4444;
}

.toast.warning {
  background: #f59e0b;
}

.toast.info {
  background: var(--primary);
}


/* ===== Responsive ===== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offshore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer .brand {
    grid-column: 1 / -1;
  }

  .about-inner {
    gap: 48px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
  .section {
    padding: 60px 0;
  }

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

  /* Header */
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-stats {
    padding: 20px 24px;
    gap: 16px;
    flex-direction: column;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .stat {
    padding: 0;
  }

  /* Trust Bar */
  .trust-inner {
    flex-direction: column;
    gap: 0;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    justify-content: center;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  /* Why Grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Offshore */
  .offshore-grid {
    grid-template-columns: 1fr;
  }

  /* Peripheral */
  .peripheral-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  /* News */
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-section .section-header h2 {
    font-size: 26px;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-card-stack {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer .brand {
    grid-column: 1 / -1;
  }

  /* Float Button */
  .float-contact {
    bottom: 20px;
    right: 20px;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 48px 0;
  }
  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  /* Hero */
  .hero {
    padding: 90px 0 48px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  .hero-stats {
    padding: 16px 20px;
  }

  .stat strong {
    font-size: 22px;
  }

  /* Why Grid */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-card-stack {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
  }

  /* Consult Modal */
  .consult-modal {
    padding: 28px 20px 22px;
    width: 95%;
    max-width: none;
    border-radius: 14px 14px 0 0;
    margin-top: auto;
    max-height: 85vh;
  }

  .consult-modal .form-row {
    grid-template-columns: 1fr;
  }

  /* Float Button */
  .float-btn {
    padding: 12px 18px;
    font-size: 13px;
  }

  .float-contact {
    bottom: 16px;
    right: 16px;
  }

  /* Toast */
  .toast {
    right: 12px;
    left: 12px;
    font-size: 13px;
    padding: 12px 16px;
  }
}
