:root {
  --primary-blue: #1E3A8A;
  --primary-yellow: #FACC15;
  --text-dark: #1F2937;
  --text-light: #4B5563;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --bg-gray: #F3F4F6;
  --border-color: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Badges / Pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background-color: rgba(30, 58, 138, 0.1);
  color: var(--primary-blue);
  transition: var(--transition);
}

.badge:hover {
  background-color: rgba(30, 58, 138, 0.15);
}

.badge-yellow {
  background-color: rgba(250, 204, 21, 0.2);
  color: #B45309; 
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
  font-size: 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: #152d6b;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
  color: var(--bg-white);
}

.btn-secondary {
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: #eab308;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
  color: var(--primary-blue);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-size: 0.875rem;
  padding: 0.6rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar a {
  color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar a:hover {
  color: var(--primary-yellow);
}

/* Header & Navbar */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-blue);
  line-height: 1.2;
}

.logo .subtext {
  font-size: 0.75rem;
  color: #B45309;
  font-weight: 500;
  display: block;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

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

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

.nav-links a.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-blue);
  transition: var(--transition);
}

.nav-links a.nav-link:hover, .nav-links a.nav-link.active {
  color: var(--primary-blue);
}

.nav-links a.nav-link:hover::after, .nav-links a.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  background: none;
  border: none;
}

/* HERO SECTION (NEW LAYOUT) */
.hero {
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, rgba(30,58,138,0.05) 0%, rgba(250,204,21,0.08) 100%);
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

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

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #B45309;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: #4B5563;
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-locations-container {
  background-color: var(--bg-gray);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.locations-label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.coverage-grid-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge-pill {
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-blue);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.badge-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
  background-color: rgba(30, 58, 138, 0.05);
}

.hero-buttons-new {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.btn-hero {
  padding: 0.875rem 2.25rem;
  font-size: 1.125rem;
}

.btn-hero-whatsapp {
  font-weight: 500;
  background-color: var(--bg-white);
  color: #128C7E;
  border: 1px solid #128C7E;
  box-shadow: var(--shadow-md);
  padding: 0.875rem 2.25rem;
  font-size: 1.125rem;
}

.btn-hero-whatsapp:hover {
  background-color: #128C7E;
  color: var(--bg-white);
}

.hero-trust-line {
  margin-top: 2.5rem;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* TRUST STRIP / STATS SECTION */
.trust-strip {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 2.5rem 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-item i {
  font-size: 2.25rem;
  color: var(--primary-yellow);
}

.trust-item h4 {
  color: var(--bg-white);
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0;
}

/* Sections */
.section {
  padding: 5rem 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-yellow);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.section-title p {
  color: #B45309;
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 58, 138, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(30, 58, 138, 0.05);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: scale(1.1) rotate(5deg);
}

.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.coverage-badge {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.coverage-badge i {
  color: var(--primary-yellow);
}

.coverage-badge:hover {
  border-color: var(--primary-blue);
  background-color: rgba(30, 58, 138, 0.02);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #152d6b 100%);
  color: var(--bg-white);
  text-align: center;
  padding: 4rem 1rem;
  border-radius: var(--radius-xl);
  margin: 4rem auto;
  max-width: 1280px;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  background-color: var(--bg-white);
}

.footer {
  background-color: #111827;
  color: #D1D5DB;
  padding: 5rem 0 2rem;
}

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

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-about img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-yellow);
  bottom: 0;
  left: 0;
}

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

.footer-links a {
  color: #D1D5DB;
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-yellow);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--primary-yellow);
  margin-top: 0.25rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #9CA3AF;
}

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  color: white;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.job-card {
  padding: 1.5rem;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.job-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.job-company {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.job-detail i {
  color: var(--primary-blue);
  width: 16px;
  text-align: center;
}

.job-salary {
  font-weight: 600;
  color: #059669;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(30, 58, 138, 0.3);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-blue);
  background-color: rgba(249, 250, 251, 0.5);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
  margin-top: 1rem;
  padding-top: 1rem;
}

.testimonial-card {
  padding: 2rem;
  text-align: center;
}

.testimonial-stars {
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--primary-blue);
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  /* ── Mobile Header ── */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    min-height: 56px;
    gap: 0.5rem;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.2;
    flex: 1;
    min-width: 0;        /* allow text to shrink/truncate if needed */
  }

  .logo > div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .logo img {
    height: 38px;
    width: auto;
    flex-shrink: 0;
  }

  .logo .subtext {
    font-size: 0.7rem;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    font-size: 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-blue);
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links .btn {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-locations-container {
    text-align: left;
  }
  
  .hero-buttons-new {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons-new .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust-line {
    justify-content: center;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .cta-banner {
    margin: 2rem 1rem;
    padding: 3rem 1.5rem;
  }

  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .consultant-content {
    text-align: center;
  }

  .consultant-content ul {
    align-items: center;
    padding-left: 0;
  }

  .consultant-content .consultant-btns {
    justify-content: center;
  }

  .consultant-content .btn {
    width: 100%;
    justify-content: center;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.w-full { width: 100%; }
.font-bold { font-weight: 700; }
