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

:root {
  --navy: #1a2332;
  --navy-light: #2a3a4e;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --text: #2d3436;
  --text-light: #636e72;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* ---- NAV ---- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 35, 50, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar .logo {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}
.navbar .logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light); }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(26, 35, 50, 0.75), rgba(26, 35, 50, 0.85)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 60px;
  color: var(--white);
}
.hero-content { max-width: 800px; }
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.25rem;
  color: #b0bec5;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }

/* ---- SEARCH BAR ---- */
.search-section {
  background: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 30px;
}
.search-section h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 1.1rem;
}
.search-bar {
  display: flex;
  gap: 10px;
}
.search-bar input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}
.search-bar input:focus { border-color: var(--gold); }
.search-bar button {
  padding: 14px 30px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.search-bar button:hover { background: var(--gold-light); }

/* ---- SECTIONS ---- */
section { padding: 80px 2rem; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.container { max-width: 1100px; margin: 0 auto; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ---- STATS ---- */
.stats-section {
  background: var(--navy);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-item .label {
  color: #b0bec5;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card .photo {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
}
.team-card .info {
  padding: 1.5rem;
}
.team-card h3 { color: var(--navy); margin-bottom: 0.25rem; }
.team-card .role { color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.team-card .contact-info { color: var(--text-light); font-size: 0.9rem; }
.team-card .contact-info a { color: var(--navy); text-decoration: none; }

/* ---- BPO ---- */
.bpo-section { background: var(--off-white); }
.bpo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.bpo-features { list-style: none; }
.bpo-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
}
.bpo-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1rem;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--gold); }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-info-block h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-detail .icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-detail .text { color: var(--text-light); }
.contact-detail .text strong { color: var(--text); display: block; margin-bottom: 2px; }
.contact-detail .text a { color: var(--navy); text-decoration: none; }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--navy); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: var(--navy);
  text-align: center;
  padding: 60px 2rem;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: #b0bec5;
  padding: 40px 2rem;
  text-align: center;
  font-size: 0.85rem;
}
footer a { color: var(--gold); text-decoration: none; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; }
.footer-links a { color: #b0bec5; }
.footer-links a:hover { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .navbar { padding: 0 1rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1rem 2rem; gap: 1rem; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bpo-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .search-bar { flex-direction: column; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
