/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, a, button, input, textarea, [contenteditable="true"] {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- UTILITY ---------- */
.text-accent {
  color: #F5A623;
}

.text-dark {
  color: #1A1A1A;
}

.bg-light {
  background-color: #F8F9FA;
}

.btn {
  display: inline-block;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
  text-align: center;
}

.btn-primary {
  background-color: #F5A623;
  color: #1A1A1A;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #e09515;
  box-shadow: 0 6px 10px -2px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}

.btn-outline:hover {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.btn-blue {
  background-color: #3A7BD5;
  color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-blue:hover {
  background-color: #2c6ab8;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6C757D;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.text-center {
  text-align: center;
}

/* ---------- HEADER & NAV ---------- */
header {
  background-color: #1A1A1A;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.logo a span {
  color: #F5A623;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #F5A623;
}

nav a.active {
  color: #F5A623;
}

.nav-cta {
  background-color: #F5A623;
  color: #1A1A1A;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.nav-cta:hover {
  background-color: #e09515;
  color: #1A1A1A;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 3px;
  transition: 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.75)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  color: #FFFFFF;
  padding: 100px 0 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  color: #D1D5DB;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ---------- SEARCH BAR ---------- */
.search-section {
  background-color: #FFFFFF;
  padding: 3rem 0;
  border-bottom: 1px solid #E9ECEF;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.search-form input,
.search-form select {
  flex: 1 1 200px;
  padding: 14px 18px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background-color: #F8F9FA;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-form input:focus,
.search-form select:focus {
  outline: none;
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.25);
}

.search-form .btn {
  flex: 0 0 auto;
  padding: 14px 36px;
}

.search-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-top: 1.8rem;
}

.search-categories a {
  color: #3A7BD5;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.search-categories a:hover {
  color: #F5A623;
  text-decoration: underline;
}

/* ---------- SECTIONS COMMON ---------- */
section {
  padding: 80px 0;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

/* ---------- CARDS GRID ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #F1F3F5;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.07);
}

.card-icon {
  font-size: 2.8rem;
  color: #F5A623;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.card p {
  color: #6C757D;
  font-size: 0.95rem;
}

.card .btn {
  margin-top: 1.5rem;
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.team-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid #F1F3F5;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.07);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #F5A623;
}

.team-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.team-card .role {
  color: #F5A623;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.team-card p {
  color: #6C757D;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #E9ECEF;
  padding: 1.5rem 0;
}

.faq-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.faq-item p {
  color: #6C757D;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.final-cta p {
  font-size: 1.2rem;
  color: #D1D5DB;
  margin-bottom: 2rem;
}

.final-cta .btn {
  margin: 0 0.6rem 0.6rem 0.6rem;
}

/* ---------- FOOTER ---------- */
footer {
  background-color: #111111;
  color: #ADB5BD;
  padding: 50px 0 20px 0;
  border-top: 2px solid #1A1A1A;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin: 0.8rem 0 1.2rem 0;
  max-width: 300px;
  font-size: 0.9rem;
}

.footer-links h5 {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: #ADB5BD;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #F5A623;
}

.footer-bottom {
  border-top: 1px solid #2A2A2A;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1A1A1A;
    padding: 1.5rem 0;
    gap: 1.2rem;
    margin-top: 1rem;
    border-top: 1px solid #333;
  }
  
  nav.open {
    display: flex;
  }
  
  .header-container {
    flex-wrap: wrap;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .grid-2, .grid-3, .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .search-form input,
  .search-form select {
    flex: 1 1 100%;
  }
  
  .search-form .btn {
    width: 100%;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 100px 0;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
  }
  
  .container {
    padding: 0 16px;
  }
}