/* ============================================================================
   GLOBAL STYLES & VARIABLES
   ============================================================================ */

:root {
  --primary-color: #00E0B5;
  --primary-dark: #00A67F;
  --secondary-color: #FFAA3F;
  --accent-color: #FFF15F;
  --dark-bg: #070B10;
  --light-bg: #F4F8FF;
  --text-dark: #101e3b;
  --text-light: #536174;
  --text-muted: #7B8798;
  --border-color: #E5E7EB;
  --shadow-sm: 0 10px 30px -20px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 14px 45px -20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 18px 60px -30px rgba(0, 0, 0, 0.22);
  --shadow-xl: 0 24px 90px -40px rgba(0, 0, 0, 0.24);
  --transition: all 0.3s ease;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

/* ============================================================================
   LAYOUT & CONTAINER
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.footer-logo {
  width: 34px;
  height: 34px;
}

.logo {
  width: 40px;
  height: 40px;
}

.brand-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a:not(.button)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:not(.button):hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 150;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #111827;
  box-shadow: var(--shadow-md);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button-outline {
  background: #00a67f;
  color: var(--text-dark);
  border-color: var(--border-color);
}

.button-outline:hover {
  background: var(--light-bg);
  border-color: var(--text-dark);
}

.button-light {
  background: #ffffff;
  color: var(--primary-color);
}

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

.button-submit {
  width: 100%;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(135deg, #070a11 0%, #101a2e 100%);
  color: #ffffff;
}

.hero-section .hero-text,
.hero-section .hero-actions,
.hero-section .hero-logo-banner,
.hero-section .trust-badge,
.hero-section .hero-copy,
.hero-section .hero-stats,
.hero-section .hero-visual {
  color: #00a67f;
}

.hero-background {
  position: absolute;
  top: -60px;
  right: -20px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at top right, rgba(0, 224, 181, 0.25) 0%, rgba(255, 170, 63, 0.2) 35%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}


.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInLeft 0.8s ease;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 224, 181, 0.12);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.trust-badge i {
  font-size: 1.1rem;
}

.hero-logo-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 640px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.hero-logo-banner img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: contain;
}

.hero-logo-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 600;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.hero-section .stat-item span {
  color: rgba(255, 255, 255, 0.72);
}

.stat-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeInRight 0.8s ease;
}

.floating-card {
  animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: 0.5s;
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================================================
   CARDS
   ============================================================================ */

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.9));
  border: 1px solid rgba(0, 224, 181, 0.18);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 18px 40px rgba(0, 224, 181, 0.08);
}

.card:hover {
  border-color: rgba(255, 170, 63, 0.4);
  box-shadow: 0 22px 50px rgba(0, 224, 181, 0.16);
  transform: translateY(-5px);
}


.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-icon.secondary {
  background: rgba(0, 200, 83, 0.1);
  color: var(--secondary-color);
}

.card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.badge {
  display: inline-block;
  background: rgba(0, 122, 255, 0.1);
  color: var(--primary-color);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.secondary {
  background: rgba(0, 200, 83, 0.1);
  color: var(--secondary-color);
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.section-light {
  background: var(--light-bg);
  padding: 5rem 0;
}

.section-dark {
  background: linear-gradient(135deg, #080d18 0%, #101f36 100%);
  color: #ffffff;
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.eyebrow i {
  margin-right: 0.5rem;
}

.eyebrow.light {
  color: var(--secondary-color);
}

.section-dark .eyebrow {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .section-light,
  .section-dark {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }
}

/* ============================================================================
   SERVICES GRID
   ============================================================================ */

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

.service-card {
  background: linear-gradient(180deg, rgba(0, 224, 181, 0.06), rgba(255, 170, 63, 0.06));
  border: 1px solid rgba(0, 224, 181, 0.16);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition);
  box-shadow: 0 18px 35px rgba(0, 224, 181, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(255, 170, 63, 0.4);
  box-shadow: 0 24px 50px rgba(0, 224, 181, 0.16);
  transform: translateY(-6px);
}


.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 224, 181, 0.15), rgba(255, 170, 63, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ============================================================================
   GOVERNMENT SECTION
   ============================================================================ */

.govt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.govt-content h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.govt-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.feature-list i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.govt-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.govt-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.govt-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 2rem 0;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 122, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(0, 122, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-box span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .govt-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.list-panel {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.list-panel h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.list-panel ul {
  list-style: none;
}

.list-panel li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.list-panel li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.list-panel i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */

.contact-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-content h2 {
  margin-bottom: 1.5rem;
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.info-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

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

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
  background: linear-gradient(180deg, #090c13 0%, #08101c 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}

.footer-section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

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

.footer-section a:hover {
  color: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand span {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 122, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================================================
   ANIMATIONS & UTILITIES
   ============================================================================ */

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: slideIn 0.6s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stats-grid {
    gap: 1rem;
  }
}