/* ========================================
   Golden Bridge Staffing & Consulting
   ======================================== */

:root {
  --navy: #0c2340;
  --navy-dark: #081a30;
  --navy-light: #1a3a5c;
  --gold: #c8962e;
  --gold-hover: #b8862b;
  --white: #ffffff;
  --gray-100: #f5f7fa;
  --gray-200: #e8ecf1;
  --gray-400: #8a94a6;
  --gray-600: #5a6577;
  --text-body: #4a5568;
  --shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
  --radius: 4px;
  --transition: 0.3s ease;
  --container: 1200px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Top Bar */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.top-bar-contact a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-contact a:hover {
  color: var(--gold);
}

.top-bar-contact i {
  font-size: 12px;
  color: var(--gold);
}

.top-bar-social {
  display: flex;
  gap: 14px;
}

.top-bar-social a {
  color: var(--white);
  font-size: 14px;
}

.top-bar-social a:hover {
  color: var(--gold);
}

/* Header */
.site-header {
  background:#f4f6fa;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 32px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.logo-text small {
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}

/* Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  position: relative;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold);
}

.nav-list > li > a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold);
}

.nav-list > li > a i {
  font-size: 9px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.dropdown li a:hover {
  background: var(--gray-100);
  color: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
}

.hero-text {
  padding: 60px 40px 60px 0;
}

.hero-text h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.text-navy {
  color: var(--navy);
}

.text-gold {
  color: var(--gold);
}

.hero-desc {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 32px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.hero-features i {
  color: var(--navy);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image {
  height: 100%;
  min-height: 400px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* Services & Industries */
.services-industries {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 420px;
}

.services-panel {
  background: var(--navy);
  color: var(--white);
  position: relative;
  clip-path: ellipse(105% 100% at 0% 50%);
  padding-right: 40px;
}

.services-inner {
  padding: 50px 30px 50px 60px;
  max-width: 520px;
  margin-left: auto;
}

.services-inner h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}

.services-list i {
  color: var(--gold);
  font-size: 14px;
  width: 18px;
  flex-shrink: 0;
}

.badge {
  font-size: 11px;
  color: var(--gold);
  font-style: italic;
}

.industries-panel {
  background: var(--white);
  display: flex;
  align-items: center;
}

.industries-inner {
  padding: 50px 40px;
  width: 100%;
}

.industries-inner h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 36px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.industry-item i {
  font-size: 36px;
  color: var(--navy-light);
  opacity: 0.85;
}

.industry-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* Audience Section */
.audience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.audience-card {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 50px 40px;
  overflow: hidden;
}

.employers-card {
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=800&h=600&fit=crop&q=80');
}

.jobseekers-card {
  background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=800&h=600&fit=crop&q=80');
}

.audience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.audience-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.audience-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.audience-label i {
  font-size: 18px;
  color: var(--navy);
}

.audience-label span {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
}

.audience-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.audience-content p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.audience-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 40px 0 24px;
}

.footer-inner {
  text-align: center;
}

.footer-brand strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-400);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* ========================================
   Responsive Breakpoints
   ======================================== */

@media (max-width: 1100px) {
  .nav-list > li > a {
    padding: 8px 8px;
    font-size: 11px;
  }

  .services-inner {
    padding-left: 40px;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right var(--transition);
    overflow-y: auto;
    gap: 16px;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list > li > a {
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-list > li > a.active::after {
    display: none;
  }

  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .has-dropdown.open .dropdown {
    max-height: 200px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 40px 0 20px;
    order: 1;
  }

  .hero-image {
    order: 2;
    min-height: 300px;
  }

  .hero-image img {
    min-height: 300px;
  }

  .services-industries {
    grid-template-columns: 1fr;
  }

  .services-panel {
    clip-path: none;
    padding-right: 0;
  }

  .services-inner {
    padding: 40px 20px;
    max-width: none;
    margin: 0 auto;
  }

  .industries-inner {
    padding: 40px 20px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .audience-section {
    grid-template-columns: 1fr;
  }

  .audience-card {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .top-bar-contact a:last-child {
    display: none;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .top-bar-contact {
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .audience-buttons {
    flex-direction: column;
  }

  .audience-buttons .btn {
    width: 100%;
  }

  .logo-text small {
    display: none;
  }
}

@media (max-width: 400px) {
  .top-bar-contact a:first-child {
    font-size: 12px;
  }
}
