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

:root {
  --bg: #0b0b0b;
  --card: #141414;
  --soft: #1d1d1d;
  --text: #f5f1e8;
  --muted: #b9ae96;
  --accent: #d6a84f;
  --accent-2: #f0c76d;
  --border: rgba(214, 168, 79, 0.22);
  --shadow: 0 15px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --container: 1180px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,11,11,.78);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.98rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  box-shadow: 0 12px 25px rgba(214,168,79,.18);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card,
.service-card,
.why-card,
.reference-card,
.contact-box {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.mini-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214,168,79,.12);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
}

section {
  padding: 70px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.service-grid,
.why-grid,
.reference-grid {
  display: grid;
  gap: 20px;
}

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

.why-grid,
.reference-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.reference-card,
.why-card {
  padding: 24px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.reference-card,
.why-card,
.contact-box p {
  color: var(--muted);
}

.contact-box {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-grid,
  .service-grid,
  .why-grid,
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 60px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .contact-buttons {
    width: 100%;
  }
}
.logo img {
  height: 42px;
  object-fit: contain;
}
.service-link{
  display: inline-block;
  margin-top: 14px;

  background: linear-gradient(135deg, #d4af37, #f1d36b);
  color: #111;

  padding: 10px 18px;
  border-radius: 8px;

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

  text-decoration: none;

  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
  transition: all 0.3s ease;
}

.service-link:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.5);
}
.reference-card {
  display: block;
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.ref-overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
}

.ref-overlay h3 {
  margin: 0;
  font-size: 20px;
}

.ref-overlay p {
  margin: 5px 0;
  color: #d4af37;
}

.ref-overlay span {
  font-size: 14px;
  opacity: 0.8;
}