:root {
  --bg-primary: #070b14;
  --bg-secondary: #0f1725;
  --bg-card: rgba(255, 255, 255, 0.05);

  --gold: #d4af37;
  --gold-light: #f5d67b;

  --silver: #c9ced8;
  --silver-dark: #9da5b4;

  --blue: #4da6ff;

  --text-primary: #f5f7fb;
  --text-secondary: #b5bcc8;

  --border: rgba(255, 255, 255, 0.08);

  --shadow:
    0 15px 50px rgba(0, 0, 0, 0.45);

  --gradient:
    linear-gradient(
      135deg,
      #070b14 0%,
      #111827 40%,
      #1b2538 100%
    );
}

/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;

  background: var(--gradient);

  color: var(--text-primary);

  line-height: 1.7;

  overflow-x: hidden;
}

/* GLOBAL */

img {
  width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

section {
  padding: 100px 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 999;

  background:
    rgba(5, 10, 18, 0.92);

  backdrop-filter: blur(12px);

  border-bottom:
    1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    display: block;
}

.logo h1 {
  font-size: 30px;
  color: var(--gold);

  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 24px;
}

nav ul li a {
  color: var(--text-primary);

  font-weight: 600;

  transition: 0.3s ease;
}

nav ul li a:hover {
  color: var(--gold);
}

/* HERO */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;

  position: relative;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.82)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 60%;
}

.hero-content h2 {
  font-size: 68px;

  line-height: 1.1;

  margin-bottom: 24px;

  color: white;
}

.hero-content p {
  font-size: 20px;

  color: var(--text-secondary);

  margin-bottom: 35px;

  max-width: 850px;
}

/* BUTTONS */

.btn {
  display: inline-block;

  padding: 15px 34px;

  border-radius: 40px;

  font-weight: 700;

  transition: 0.3s ease;

  margin-right: 12px;
}

.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-light)
    );

  color: #111;

  box-shadow:
    0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--gold);

  color: var(--gold);

  background: transparent;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
}

/* SECTION TITLES */

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 46px;

  color: var(--gold);

  margin-bottom: 16px;
}

.section-title p {
  color: var(--text-secondary);

  max-width: 900px;

  margin: auto;
}

/* GRID */

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* CARDS */

.card {
  background: var(--bg-card);

  border:
    1px solid var(--border);

  border-radius: 22px;

  overflow: hidden;

  backdrop-filter: blur(12px);

  box-shadow: var(--shadow);

  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card-content {
  padding: 30px;
}

.card h3 {
  color: var(--gold);

  font-size: 26px;

  margin-bottom: 14px;
}

.card p {
  color: var(--text-secondary);
}

.photo-card img {
  height: 340px;

  object-fit: cover;
}

/* PAGE HERO */

.page-banner {
  padding: 150px 0 100px;

  text-align: center;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.82)
    ),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop")
    center/cover;
}

.page-banner h1 {
  font-size: 60px;

  color: var(--gold);

  margin-bottom: 18px;
}

.page-banner p {
  max-width: 950px;

  margin: auto;

  color: var(--text-secondary);

  font-size: 20px;
}

/* STATS */

.stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.stat-box {
  background: var(--bg-card);

  border:
    1px solid var(--border);

  border-radius: 20px;

  padding: 40px 25px;

  text-align: center;
}

.stat-box h3 {
  font-size: 48px;

  color: var(--gold);

  margin-bottom: 12px;
}

.stat-box p {
  color: var(--text-secondary);
}

/* JOBS */

.job-box {
  background: var(--bg-card);

  border:
    1px solid var(--border);

  border-radius: 22px;

  padding: 35px;

  margin-bottom: 30px;

  box-shadow: var(--shadow);
}

.job-box h3 {
  color: var(--gold);

  margin-bottom: 12px;

  font-size: 28px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  margin-bottom: 22px;

  color: var(--text-secondary);
}

/* BLOG */

.blog-content {
  max-width: 1100px;
  margin: auto;
}

.blog-content h2 {
  color: var(--gold);

  margin: 40px 0 20px;

  font-size: 40px;
}

.blog-content h3 {
  color: var(--gold);

  margin: 30px 0 15px;

  font-size: 30px;
}

.blog-content p,
.blog-content li {
  color: var(--text-secondary);

  margin-bottom: 18px;

  font-size: 18px;
}

.blog-content ul {
  padding-left: 20px;
}

/* CONTACT */

.contact-box {
  background: var(--bg-card);

  border:
    1px solid var(--border);

  border-radius: 22px;

  padding: 40px;

  box-shadow: var(--shadow);
}

.contact-box h3 {
  color: var(--gold);

  margin-bottom: 18px;

  font-size: 30px;
}

.contact-box a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-box a:hover {
    color: #d4af37;
}

/* FOOTER */

.footer {
  background: #05070d;

  border-top:
    1px solid var(--border);

  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 40px;
}

.footer a {
  color: var(--text-secondary);

  transition: 0.3s ease;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 45px;

  padding-top: 20px;

  border-top:
    1px solid var(--border);

  text-align: center;

  color: var(--text-secondary);
}

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0f19;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);

  border-radius: 20px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .grid-2,
  .grid-3,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h2 {
    font-size: 50px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .hero-content h2 {
    font-size: 42px;
  }

  .page-banner h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .card-content {
    padding: 24px;
  }

  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  nav ul {
    gap: 14px;
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
  }

  .mobile-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 5%;
    width: 240px;
    flex-direction: column;
    gap: 18px;
    background: rgba(5, 10, 18, 0.98);
    padding: 24px;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  nav ul.mobile-nav-open {
    display: flex;
  }
}

@media (min-width: 769px) {
  .navbar {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 0 !important;
    gap: 0 !important;
  }

  nav ul {
    display: flex !important;
    position: static !important;
    width: auto !important;
    flex-direction: row !important;
    gap: 24px !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .mobile-toggle {
    display: none !important;
  }
}

.job-box .btn {
  margin-top: 24px;
  display: inline-block;
}

.office-showcase {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.office-showcase img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: 0.4s ease;
}

.office-showcase:hover img {
  transform: scale(1.03);
}

.office-badge {
  margin-bottom: 18px;
}

.office-badge span {
  background:
    rgba(212,175,55,0.22);

  border:
    1px solid rgba(212,175,55,0.45);

  color: #f7d978;

  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.35);
}

.office-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 50px;

  background:
    linear-gradient(
      to top,
      rgba(2, 6, 15, 0.97) 0%,
      rgba(2, 6, 15, 0.88) 28%,
      rgba(2, 6, 15, 0.58) 55%,
      rgba(2, 6, 15, 0.18) 100%
    );
}

.office-overlay h3 {
  font-size: 52px;
  line-height: 1.15;

  color: #ffffff;

  margin-bottom: 24px;

  text-shadow:
    0 4px 18px rgba(0,0,0,0.85);
}

.office-overlay p {
  color: rgba(255,255,255,0.92);

  font-size: 20px;

  line-height: 1.9;

  max-width: 760px;

  margin-bottom: 32px;

  text-shadow:
    0 3px 14px rgba(0,0,0,0.85);
}

.office-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.office-features span {
  padding: 10px 18px;

  border-radius: 30px;

  background:
    rgba(255,255,255,0.08);

  border:
    1px solid rgba(255,255,255,0.08);

  color: white;

  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(10px);
}

.photo-card {
  overflow: hidden;
  position: relative;
}

.photo-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;

  transition: transform 0.4s ease;
}

.photo-card:hover img {
  transform: scale(1.03);
}

.case-image-card {
  height: 100%;
}

.case-image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}