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

/* THEME */
:root {
  --navy: #0D1B2A;
  --blue: #1F4FD8;
  --teal: #00A8C6;
  --green: #6CC24A;
  --bg-light: #F8F9FA;
  --text-dark: #212529;
  --text-muted: #6C757D;
}

/* BASE */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
}

h1, h2, h3 {
  font-family: 'Inter', sans-serif;
}

/* ===== HEADER (GLOBAL, LOCKED) ===== */
.site-header {
  background: white;
  border-bottom: 1px solid #eee;
}

.site-header .header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: 42px;       /* LOCK HEIGHT */
  width: auto;
  max-width: 160px;
  display: block;
}

.content img {
  width: 100%;
}

/* NAVBAR */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 45px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
}

.nav-cta {
  color: white !important;
  background: linear-gradient(90deg, var(--blue), var(--green));
  padding: 8px 18px;
  border-radius: 20px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #E0E6ED;
}

.hero-buttons {
  margin-top: 30px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
}

/* TRUST */
/* TRUST STRIP */
.trust {
  background: white;
  padding: 25px 15px;
}

.trust-items {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-items span {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  background: linear-gradient(
    135deg,
    rgba(31,79,216,0.08),
    rgba(108,194,74,0.12)
  );
  border: 1px solid rgba(31,79,216,0.15);
}


/* FEATURES */
.features {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--blue);
}

/* WHY */
.why {
  background: var(--navy);
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.why p {
  max-width: 700px;
  margin: auto;
  color: #D1D9E6;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  padding: 70px 20px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #0B1622;
  color: #9BA7B4;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

/* ANIMATION BASE */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* CARD HOVER MOTION */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* BUTTON MOTION */
.btn-primary,
.btn-secondary {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* INNER HERO (SERVICES PAGE) */
.hero-inner {
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.hero-inner h1 {
  font-size: 2.6rem;
}

.hero-inner p {
  max-width: 650px;
  margin: 15px auto 0;
  color: #DCE4F2;
}

/* SERVICES GRID */
.services-grid {
  max-width: 1200px;
  margin: 90px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

/* SERVICE CARD */
.service-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

.service-card h3 {
  color: var(--blue);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* DIAGRAM REFINEMENT */
.diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.box {
  background: #F8FAFC;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.box.highlight {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  border: none;
}

.arrow {
  font-size: 1.3rem;
  color: var(--text-muted);
}

/* Contact Page */
.contact-section {
  background: var(--bg-light);
}

.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-list a {
  color: var(--accent);
  text-decoration: none;
}

.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.site-footer a {
  color: var(--text-light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

/* Prevent page-specific overrides */
body header img {
  height: 42px !important;
  width: auto !important;
}



/* ===== FOOTER LIST HARD RESET ===== */
.site-footer ul {
  list-style: none;          /* remove bullets */
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 0.4rem 0;
}

.site-footer a {
  text-align: left;
}

/* Align footer links horizontally on desktop */
@media (min-width: 769px) {
  .footer-links ul {
    display: flex;
    align-items: flex-start;
  }
}

/* ===== FOOTER HORIZONTAL NAV ===== */
.footer-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-nav {
  flex: 1;
}


.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: var(--accent);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.3rem;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

/* Footer Meta */
.footer-meta {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 1.5rem;
}


/* ===== FORCE HORIZONTAL FOOTER LINKS (DESKTOP) ===== */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex !important;
  flex-direction: row !important;   /* 🔥 FORCE SINGLE LINE */
  align-items: center;
  gap: 1.5rem;

  text-align: left;
}

/* Prevent parent alignment from breaking layout */
.footer-nav {
  text-align: center;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column !important;
    gap: 0.75rem;
  }
}
