:root {
  --bg: #0f1724; /* deep navy */
  --card: #0b1220;
  --accent: #f6c84c; /* gold */
  --muted: #9aa7b2;
  --glass: rgba(255,255,255,0.04);
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}



@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}


* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: linear-gradient(180deg,#071028 0%,var(--bg) 60%);
  color: #e6eef6;
}

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

.container { max-width: 1100px; margin: 0 auto; padding: 28px; }

/* HEADER */
header { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; gap: 14px; align-items: center; }
.logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ffd77a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1220;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.site-title { line-height: 1; }
.site-title h1 { font-family: 'Playfair Display', serif; margin: 0; font-size: 18px; }
.site-title p { margin: 3px; font-size: 12px; color: var(--muted); }
nav { display: flex; gap: 14px; align-items: center; }
nav a { font-weight: 600; padding: 8px 12px; border-radius: 8px; }
.btn { background: var(--accent); color: #071028; padding: 10px 14px; border-radius: 10px; font-weight: 700; }

/* HERO */
.hero { display: grid; grid-template-columns: 1fr 420px; gap: 28px; align-items: center; padding: 44px 0; }
.hero-left h2 { font-family: 'Playfair Display', serif; font-size: 38px; margin: 0 0 12px; }
.hero-left p { color: var(--muted); margin: 0 0 20px; max-width: 62ch; }
.cta-row { display: flex; gap: 12px; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(2,6,23,0.6);
}

/* features */
.features { display: flex; gap: 14px; margin-top: 18px; }
.feature { flex: 1; padding: 14px; border-radius: 12px; background: var(--glass); }
.feature h4 { margin: 6px 0 0; }
.feature p { color: var(--muted); font-size: 14px; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.service-item {
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  height: 380px; /* uniform card height */
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.service-item img {
  width: 100%;
  height: 180px; /* uniform image height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.service-item h4 {
  margin: 8px 0 4px;
  text-align: center;
}

.service-item p {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  flex-grow: 1;
}

/* footer */
footer { margin-top: 36px; padding: 28px 0; color: var(--muted); font-size: 14px; border-top: 1px solid rgba(255,255,255,0.03); }

/* responsive */
@media (max-width:1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width:900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { order: 2; }
  nav { display: none; }
  header { gap: 12px; }
}
@media (max-width:800px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:500px) { .services-grid { grid-template-columns: 1fr; } }

/* small helper */
.muted { color: var(--muted); }
.pill { display: inline-block; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.03); font-weight: 600; }

/* hero slider */
.slider { height: 260px; width: 100%; overflow: hidden; position: relative; }
.slides { display: flex; flex-direction: row; width: max-content; animation: scrollHorizontal 16s linear infinite; }
.slides img { width: 420px; height: 260px; object-fit: cover; }
@keyframes scrollHorizontal { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
