/* Import modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Clean B2B Brand color palette */
  --color-navy: #0F172A;
  --color-navy-light: #1E293B;
  --color-gold: #c5a059;
  --color-gold-bright: #d4af37;
  --color-light-gray: #F8FAFC;
  --color-white: #FFFFFF;
  --color-border: #E2E8F0;
  
  /* Text colors */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #F1F5F9;
  
  /* Fonts & Animations */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --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);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Utility Classes */
.bg-navy { background-color: var(--color-navy); color: var(--color-white); }
.bg-navy-light { background-color: var(--color-navy-light); }
.bg-light-gray { background-color: var(--color-light-gray); }
.bg-white { background-color: var(--color-white); }
.text-gold { color: var(--color-gold-bright) !important; }
.text-navy { color: var(--color-navy) !important; }
.text-white { color: var(--color-white) !important; }
.text-muted { color: var(--text-muted); }
.text-light-muted { color: rgba(255, 255, 255, 0.7); }
.text-center { text-align: center; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.rounded { border-radius: 8px; }
.rounded-image { border-radius: 12px; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.p-4 { padding: 1.5rem; }
.w-100 { width: 100%; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.border-top { border-top: 1px solid var(--color-border); }
.border-top-gold { border-top: 4px solid var(--color-gold-bright); }
.list-unstyled { list-style: none; padding-left: 0; }
.text-decoration-none { text-decoration: none; }
.fw-bold { font-weight: bold; }
.small { font-size: 0.875rem; }

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Bar */
.top-bar {
  background: var(--color-navy-light);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-contact a {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
}
.top-contact i { width: 14px; height: 14px; }

/* Header */
header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 40px;
}
.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-navy);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.nav-link:hover, .nav-link.active {
  color: var(--color-navy);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-navy);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition-smooth);
  gap: 8px;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--color-gold-bright);
  color: var(--color-navy);
}
.btn-primary:hover {
  background: #e5be48;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}
.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn-outline-navy:hover {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-nav {
  padding: 8px 20px;
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-nav:hover {
  background: var(--color-gold-bright);
  color: var(--color-navy);
}

/* Sections */
section {
  padding: 80px 0;
}
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-gold-bright);
  margin-bottom: 16px;
}
h1, h2, h3, h4 {
  line-height: 1.2;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}
.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 100px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold-bright);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  font-weight: 800;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
.hero-image-wrapper {
  position: relative;
}
.hero-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Leadership Section */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.leadership-video img {
  width: 100%;
  object-fit: cover;
}

/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  padding: 32px 24px;
  background: var(--color-white);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-bright);
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.icon-circle i {
  width: 28px;
  height: 28px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  padding: 40px 30px;
  border-radius: 12px;
  transition: var(--transition-smooth);
  border: 1px solid var(--color-border);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--color-gold-bright);
}
.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-secondary);
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.adv-item i {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.adv-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.adv-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}
.quote-icon {
  margin-bottom: 20px;
}
.quote-icon i {
  width: 32px;
  height: 32px;
}
.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.testimonial-author {
  display: flex;
  flex-direction: column;
}
.testimonial-author strong {
  color: var(--color-navy);
}
.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group.half {
  flex: 1;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-light-gray);
  transition: var(--transition-smooth);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-gold-bright);
  background: var(--color-white);
}

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--color-white);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1000;
  border-left: 4px solid #10b981;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .leadership-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* simple hidden state for mobile menu */
  }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .menu-toggle {
    display: block;
  }
  .services-grid, .pillars-grid, .advantages-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .top-bar {
    display: none;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
