/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7fafc;
  color: #1a202c;
  line-height: 1.7;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
:root {
  --primary: #1a365d;
  --primary-light: #2a4a7f;
  --gold: #d69e2e;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-gold {
  background: var(--gold);
  color: var(--primary);
}
.btn-gold:hover {
  background: #fff;
  color: var(--primary);
}
.btn-outline-gold {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary);
}

/* ===== HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}
.logo span { color: var(--gold); }
.logo small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: #4a5568;
  letter-spacing: 0.5px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
nav ul li a {
  font-weight: 600;
  color: #2d3748;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
nav ul li a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.admin-link {
  background: var(--primary);
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem !important;
  border-bottom: none !important;
}
.admin-link:hover {
  background: var(--gold);
  color: var(--primary) !important;
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
}
.section-subtitle {
  color: #4a5568;
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 1.15rem;
}

/* ===== HERO ===== */
#hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a6a 100%);
  color: #fff;
  padding: 120px 0 100px;
}
.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta a { color: #fff; text-decoration: none; transition: 0.3s; }
.hero-meta a:hover { color: var(--gold); }
.hero-meta i { color: var(--gold); margin-right: 10px; width: 20px; }
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.grid-2-small { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  border-top: 5px solid var(--gold);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card i { font-size: 2.6rem; color: var(--gold); margin-bottom: 16px; }
.card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.25rem; }

/* ===== TEAM ===== */
.team-card {
  text-align: center;
  background: #fff;
  padding: 28px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.team-card .avatar { font-size: 3.2rem; color: var(--gold); }
.team-card h4 { color: var(--primary); margin-top: 10px; font-size: 1.1rem; }
.team-card .title { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.team-card .bio { font-size: 0.9rem; color: #4a5568; margin-top: 6px; }

/* ===== CLIENTS ===== */
.client-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  border-bottom: 4px solid var(--gold);
  transition: 0.3s;
  font-size: 1.05rem;
}
.client-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ===== TESTIMONIAL ===== */
.testimonial-box {
  background: var(--primary);
  color: #fff;
  padding: 50px 40px;
  border-radius: 14px;
  margin-top: 30px;
}
.testimonial-box .quote-icon { font-size: 2.4rem; color: var(--gold); opacity: 0.6; }
.testimonial-box blockquote {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 20px auto 16px;
  font-style: italic;
  line-height: 1.8;
}
.testimonial-box .author { font-weight: 700; color: var(--gold); }

/* ===== VACANCIES ===== */
.vacancy-item {
  background: #fff;
  padding: 28px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  border-left: 6px solid var(--gold);
  transition: 0.3s;
}
.vacancy-item:hover { box-shadow: var(--shadow-hover); }
.vacancy-item h3 { color: var(--primary); font-size: 1.3rem; }
.vacancy-meta {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 6px 0 10px;
}
.vacancy-meta i { color: var(--gold); margin-right: 6px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.contact-card:hover { box-shadow: var(--shadow-hover); }
.contact-card h3 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 1.3rem;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 10px;
}
.contact-card h3 i { color: var(--gold); margin-right: 8px; }
.contact-card p { margin-bottom: 14px; font-size: 1.05rem; }
.contact-card i { width: 28px; color: var(--gold); }
.contact-card a { color: var(--primary); text-decoration: none; transition: 0.3s; font-weight: 500; }
.contact-card a:hover { color: var(--gold); }
.contact-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.contact-action-buttons .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.contact-action-buttons .btn-primary i { font-size: 1.3rem; color: inherit; width: auto; }
.office-hours {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}
.office-hours h4 { color: var(--primary); margin-bottom: 6px; }
.office-hours h4 i { color: var(--gold); margin-right: 6px; }
.kpmg-badge {
  margin-top: 18px;
  padding: 14px 18px;
  background: #edf2f7;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}
.kpmg-badge i { color: var(--gold); margin-right: 8px; }
.map-placeholder {
  background: #e2e8f0;
  border-radius: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  font-weight: 600;
  margin-top: 16px;
}
.map-placeholder a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-placeholder a i { font-size: 2.2rem; color: var(--gold); }
.map-placeholder a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 0 30px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.footer-grid h4 { color: var(--gold); margin-bottom: 12px; }
.footer-grid a { color: #cbd5e0; text-decoration: none; transition: 0.3s; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #2a4a7f;
  padding-top: 24px;
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2-small { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  nav ul { gap: 14px; margin-top: 8px; }
  .nav-container { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 50px 0; }
  #hero { padding: 80px 0 60px; }
  .testimonial-box { padding: 30px 20px; }
  .contact-action-buttons .btn-primary { font-size: 1rem; padding: 14px; }
  .grid-2-small { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .hero-meta { gap: 16px; font-size: 0.9rem; }
  .hero-buttons .btn-primary { width: 100%; text-align: center; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  padding: 4px 8px;
  transition: transform 0.3s ease;
  border-radius: 6px;
}
.hamburger:hover {
  background: rgba(214, 158, 46, 0.1);
}
.hamburger .fa-times {
  display: none;
}
.hamburger.open .fa-bars {
  display: none;
}
.hamburger.open .fa-times {
  display: inline;
}
/* Rotate animation on the hamburger button */
.hamburger.open {
  transform: rotate(90deg);
}

/* ===== NAVIGATION MENU (with slide/fade animation) ===== */
.nav-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-12px);
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              transform 0.35s ease;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  background: white;
  border-top: 1px solid #e2e8f0;
  margin-top: 14px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}
.nav-menu.open {
  max-height: 600px;   /* large enough for all links */
  opacity: 1;
  transform: translateY(0);
}
.nav-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 6px 0;
}
.nav-menu ul li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #f7fafc;
}
.nav-menu ul li:last-child {
  border-bottom: none;
}
.nav-menu ul li a {
  display: block;
  padding: 14px 16px;
  font-weight: 600;
  color: #2d3748;
  text-decoration: none;
  font-size: 1.05rem;
  transition: 0.3s;
  border-bottom: none;
  width: 100%;
}
.nav-menu ul li a:hover {
  background: #f7fafc;
  color: var(--gold);
}

/* ===== RESPONSIVE NAV (Mobile) ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: flex;         /* overrides the default 'none' so animation works */
  }
  /* On desktop, keep it as flex without animation */
}

/* On desktop, reset to normal horizontal layout */
@media (min-width: 769px) {
  .nav-menu {
    overflow: visible;
    max-height: none;
    opacity: 1;
    transform: none;
    transition: none;
    background: transparent;
    border-top: none;
    box-shadow: none;
    margin-top: 0;
    width: auto;
    flex-direction: row;
  }
  .nav-menu ul {
    flex-direction: row;
    gap: 24px;
    padding: 0;
  }
  .nav-menu ul li {
    border-bottom: none;
    width: auto;
  }
  .nav-menu ul li a {
    padding: 4px 0;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    background: transparent;
  }
  .nav-menu ul li a:hover {
    background: transparent;
    border-bottom-color: var(--gold);
  }
}

/* Logo image responsive */
.logo img {
  height: 100px;
  width: auto;
  max-height: 100px;
}
@media (max-width: 768px) {
  .logo img {
    height: 38px;
  }
  .admin-header img {
    height: 30px;
  }
}

