:root {
  --geez-dark: #0f0f0f;
  --geez-darker: #0a0a0a;
  --geez-blue: #2c5f7a;
  --geez-blue-light: #3d7a9a;
  --geez-tan: #c9a87c;
  --geez-tan-light: #e0c9a8;
  --geez-steel: #4a5a6a;
  --geez-text: #e8e4df;
  --geez-muted: #a0a0a0;
}

body {
  background-color: var(--geez-dark);
  color: var(--geez-text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Navbar */
.navbar {
  background: linear-gradient(180deg, #121212 0%, #0f0f0f 100%);
  border-bottom: 1px solid rgba(201, 168, 124, 0.15);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  transition: transform 0.2s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: var(--geez-text) !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--geez-tan) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--geez-tan);
}

/* Hero */
.hero-section {
  background: radial-gradient(ellipse at center, #1a2a35 0%, var(--geez-dark) 70%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/logo.png') no-repeat center right;
  background-size: 45%;
  opacity: 0.08;
  pointer-events: none;
}

.hero-logo {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--geez-tan);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--geez-muted);
  max-width: 520px;
}

.btn-geez {
  background: linear-gradient(135deg, var(--geez-blue) 0%, var(--geez-blue-light) 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.75rem;
  border-radius: 0.375rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(44, 95, 122, 0.35);
}

.btn-geez:hover {
  background: linear-gradient(135deg, var(--geez-blue-light) 0%, var(--geez-blue) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 122, 0.45);
}

.btn-outline-geez {
  border: 2px solid var(--geez-tan);
  color: var(--geez-tan);
  background: transparent;
  font-weight: 600;
  padding: 0.7rem 1.75rem;
  border-radius: 0.375rem;
  transition: all 0.25s ease;
}

.btn-outline-geez:hover {
  background: var(--geez-tan);
  color: var(--geez-dark);
}

/* Cards */
.card-geez {
  background: #161616;
  border: 1px solid rgba(201, 168, 124, 0.12);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  height: 100%;
}

.card-geez:hover {
  border-color: rgba(201, 168, 124, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.card-geez .card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--geez-blue) 0%, #1e3a4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--geez-tan);
  margin-bottom: 1.25rem;
}

.section-title {
  color: var(--geez-tan);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--geez-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Services list */
.service-item {
  background: #141414;
  border-left: 4px solid var(--geez-blue);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  transition: all 0.2s ease;
}

.service-item:hover {
  background: #1a1a1a;
  border-left-color: var(--geez-tan);
}

/* About */
.about-badge {
  display: inline-block;
  background: rgba(44, 95, 122, 0.25);
  color: var(--geez-tan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(201, 168, 124, 0.25);
  margin-bottom: 1rem;
}

/* Contact form */
.form-control, .form-select {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: var(--geez-text);
  padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
  background-color: #1f1f1f;
  border-color: var(--geez-blue);
  color: var(--geez-text);
  box-shadow: 0 0 0 0.2rem rgba(44, 95, 122, 0.25);
}

.form-label {
  color: var(--geez-tan-light);
  font-weight: 500;
}

/* Footer */
footer {
  background: var(--geez-darker);
  border-top: 1px solid rgba(201, 168, 124, 0.1);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

footer a {
  color: var(--geez-muted);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--geez-tan);
}

.footer-brand img {
  height: 40px;
  opacity: 0.9;
}

.social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 50%;
  color: var(--geez-muted);
  margin-right: 0.5rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--geez-blue);
  color: #fff;
}

/* Utilities */
.text-tan {
  color: var(--geez-tan) !important;
}

.text-muted-geez {
  color: var(--geez-muted) !important;
}

.bg-section {
  background: #121212;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,124,0.3), transparent);
  margin: 2rem 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-section::before {
    background-size: 70%;
    opacity: 0.05;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .navbar-brand img {
    height: 40px;
  }
}
