:root {
  --primary: #0066cc;
  --primary-dark: #0052a3;
  --primary-light: #2d5a3d;
  --secondary: #00a86b;
  --accent: #ff6b35;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
   /* Brand Colors */
    --gcx-primary: #1a472a;
    --gcx-primary-light: #2d5a3d;
    --gcx-primary-dark: #0f2817;
    --gcx-secondary: #f8b500;
    --gcx-accent: #e8f5e8;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
   border-bottom: 3px solid var(--gcx-secondary);
  z-index: 1000;
}

.site-header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 45px;
  transition: var(--transition);
}

/* App Status badge (reuses dashboard live/demo styling, tuned for landing header) */
.landing-app-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-app-status .app-status-label {
  position: relative;
  z-index: 2;
}

.app-status-live {
  background: #FE3263;
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(254, 50, 99, 0.35);
  animation: app-status-pulse 2.4s ease-out infinite;
}

.app-status-live .app-status-ring {
  position: absolute;
  border-radius: 999px;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.app-status-live .app-status-ring-1 {
  box-shadow: 0 0 0 6px rgba(254, 112, 142, 0.25);
}

.app-status-live .app-status-ring-2 {
  box-shadow: 0 0 0 12px rgba(254, 176, 191, 0.18);
}

.app-status-live .app-status-ring-3 {
  box-shadow: 0 0 0 18px rgba(253, 199, 209, 0.12);
}

@keyframes app-status-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 50, 99, 0.35);
  }
  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 4px rgba(254, 50, 99, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 50, 99, 0);
  }
}

.app-status-demo {
  min-width: 52px;
  padding: 0 0.75rem;
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.brand {
  font-weight: 700;
  color: var(--gcx-primary);
  font-size: 1.25rem;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--gray);
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gcx-primary);
  background: rgba(0, 102, 204, 0.05);
}

.btn-header-apply {
  background: var(--gcx-primary);
  color: white;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-header-apply:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.btn-header-login {
  border: 1px solid var(--gcx-primary);
  color: var(--gcx-primary);
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.navbar-toggle {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--dark);
}

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.open {
  max-height: 300px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(26, 71, 42, 0.8) 0%, rgba(15, 40, 23, 0.85) 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/media/logo/pexels-kindelmedia-6869016.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  animation: heroZoomIn 20s ease-out infinite alternate;
}

@keyframes heroZoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.hero-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(2.2rem, 3.5vw + 0.8rem, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 620px;
}

.hero-title .title-line {
  display: block;
  white-space: nowrap;
}

.hero-title .hero-highlight {
  color: #ffcc00;
  display: inline;
}

.hero-copy {
  max-width: 650px;
}

.hero-row {
  align-items: stretch;
}

@media (max-width: 991.98px) {
  .hero-title {
    display: block;
    text-align: center;
    font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
    max-width: none;
  }
  .hero-copy {
    align-items: center;
  }
  .hero-dashboard {
    margin-top: 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-highlight {
  color: #ffcc00;
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  background: white;
  color: var(--primary);
  border-radius: 10px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.hero-trust-bar {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.trust-item i {
  color: #ffcc00;
}

.hero-notice {
  position: relative;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* border-radius: 12px; */
  overflow: hidden;
  padding: 10px 0;
  backdrop-filter: blur(6px);
}

.notice-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 40px;
  animation: hero-notice 28s linear infinite;
  white-space: nowrap;
  padding-left: 20px;
}

.notice-item {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

@keyframes hero-notice {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-dashboard {
  position: relative;
  z-index: 2;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.dashboard-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.6);
  transform: translateY(-5px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, rgba(26, 71, 42, 0.03) 0%, rgba(248, 181, 0, 0.05) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.green { background: #00c851; }
.dot.amber { background: #ffbb33; }
.dot.red { background: #ff4444; }

.header-title {
  font-weight: 600;
  color: var(--gcx-primary);
  font-size: 1rem;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c851;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.dashboard-body {
  padding: 1.75rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

/* Metric Cards */
.metric-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.6) 100%);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gcx-primary) 0%, var(--gcx-secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(26, 71, 42, 0.15);
}

.metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.metric-icon-primary {
  background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(45, 90, 61, 0.15) 100%);
  color: var(--gcx-primary);
}

.metric-icon-success {
  background: linear-gradient(135deg, rgba(0, 200, 81, 0.1) 0%, rgba(0, 168, 107, 0.15) 100%);
  color: #00a86b;
}

.metric-icon-warning {
  background: linear-gradient(135deg, rgba(248, 181, 0, 0.1) 0%, rgba(255, 193, 7, 0.15) 100%);
  color: #f8b500;
}

.metric-card:hover .metric-icon {
  transform: scale(1.1) rotate(5deg);
}

.metric-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  background: rgba(26, 71, 42, 0.1);
  color: var(--gcx-primary);
}

.metric-badge-info {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
}

.metric-badge-success {
  background: rgba(0, 200, 81, 0.1);
  color: #00c851;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gcx-primary);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.5px;
}

.metric-plus {
  font-size: 1.5rem;
  opacity: 0.7;
  margin-left: 2px;
}

.metric-label {
  font-size: 0.813rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.metric-progress {
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.75rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gcx-primary) 0%, var(--gcx-primary-light) 100%);
  border-radius: 4px;
  transition: width 1.5s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-bar-success {
  background: linear-gradient(90deg, #00a86b 0%, #00c851 100%);
}

.progress-bar-warning {
  background: linear-gradient(90deg, #f8b500 0%, #ffc107 100%);
}

/* Responsive Dashboard */
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-value {
    font-size: 1.75rem;
  }

  .dashboard-body {
    padding: 1.25rem;
  }
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pill-badge.soft {
  background: rgba(45, 90, 61, 0.1);
  color: var(--gcx-primary);
}

.badge-icon {
  display: flex;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffcc00;
  animation: pulse 2s infinite;
}

/* Animations */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Commodities Section */
.commodities-marquee {
  background: #f8fbff;
  overflow: hidden;
}

.marquee-window {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 100s linear infinite;
  will-change: transform;
}

.marquee-card {
  flex: 0 0 auto;
  width: 190px;
  margin-right: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.marquee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.marquee-image {
  height: 120px;
  overflow: hidden;
}

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

.marquee-name {
  padding: 0.75rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Feature Cards - Modern Animated Design */
.feature-card-modern {
  width: 100%;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(26, 71, 42, 0.15);
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  min-height: 320px;
}

.feature-icon-modern,
.feature-heading,
.feature-content {
  position: relative;
  z-index: 5;
  transition: all 0.5s;
}

.feature-icon-modern {
  width: 50px;
  height: 50px;
  fill: var(--gcx-primary);
  margin-bottom: 25px;
}

.feature-heading {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
  text-align: center;
}

.feature-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  text-align: center;
  margin: 0;
}

.feature-number {
  position: absolute;
  top: -90px;
  right: -85px;
  padding: 80px 100px 30px 30px;
  background: var(--gcx-primary);
  border-radius: 100%;
  z-index: 5;
}

.feature-number .number-text {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.feature-number::after {
  content: "";
  width: 50px;
  height: 50px;
  background: var(--gcx-primary);
  position: absolute;
  border-radius: 100%;
  top: 50%;
  right: 50%;
  transition: all 0.5s;
  transform: translateX(50%) translateY(-50%);
  z-index: -1;
}

.feature-card-modern:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 30px rgba(26, 71, 42, 0.25);
}

.feature-card-modern:hover .feature-number::after {
  width: 900px;
  height: 900px;
}

.feature-card-modern:hover .feature-icon-modern,
.feature-card-modern:hover .feature-heading,
.feature-card-modern:hover .feature-content {
  color: #f5f5f5;
  fill: #f5f5f5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card-modern {
    min-height: 280px;
    padding: 40px 25px;
  }
  
  .feature-number {
    top: -80px;
    right: -75px;
    padding: 70px 90px 25px 25px;
  }
  
  .feature-number .number-text {
    font-size: 24px;
  }
}

/* Old feature card styles - keep for backward compatibility */
.feature-card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gcx-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--gcx-primary);
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Process Section */
.process-grid {
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--light-gray);
  z-index: 1;
}

@media (max-width: 768px) {
  .process-grid::before {
    display: none;
  }
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 2;
  background: white;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gcx-primary);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.process-card h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: inline-block;
  text-align: left;
}

.process-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  color: #475569;
}

.process-checklist li i {
  color: var(--gcx-primary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* FAQ */
.accordion-button {
  font-weight: 500;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(45, 90, 61, 0.05);
  color: var(--gcx-primary);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 2rem 0;
}

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

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


/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-trust-bar {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-heading h2 {
    font-size: 2rem;
  }
  
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-cta-group {
    display: flex;
    flex-direction: column;
  }
}

/* Compact Enhanced Footer (exact match from application form) */
.footer {
    background: linear-gradient(135deg, var(--gcx-primary) 0%, var(--gcx-primary-light) 100%);
    color: white;
    padding: 2.5rem 0 0;
    /* margin-top: 4rem; */
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-logo-img {
    max-width: 80px;
    height: auto;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6rem;
    line-height: 1.5;
}

/* Footer Heading */
.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gcx-secondary)
}

.text-lg-start .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .text-lg-start .footer-heading::after {
        left: 0;
        transform: none;
    }
}

/* Social Links Compact */
.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 992px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

 .social-link:hover {
            background: var(--gcx-secondary);
            color: var(--gcx-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(248, 181, 0, 0.3);
  }

.social-link i {
    font-size: 0.875rem;
}

/* Contact Compact */
.contact-compact {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contact-compact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-compact-item i {
     color: var(--gcx-secondary);
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    width: 16px;
}

/* Footer Badges Compact */
.footer-badges-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-compact {
    display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.375rem 0.75rem;
            border-radius: 16px;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            width: fit-content;
}

.badge-compact:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

.badge-compact i {
    color: var(--gcx-secondary);
    font-size: 0.75rem;
}

/* Footer Legal Compact */
.footer-legal-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-legal-compact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.813rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-legal-compact a::after {
    content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gcx-secondary);
            transition: width 0.3s ease;
}

.footer-legal-compact a:hover {
    color: var(--gcx-secondary);
}

.footer-legal-compact a:hover::after {
    width: 100%;
}

/* Footer Bottom Compact */
.footer-bottom-compact {
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-compact p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.813rem;
    line-height: 1.5;
}

.government-badge {
    color: var(--gcx-secondary);
    font-weight: 600;
}
