
/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 55%, #020314 100%);
  color: #e5e7eb;
}

/* Global links */
a {
  color: inherit;
  text-decoration: none;
}

/* Images */
img {
  max-width: 100%;
  display: block;
}

/* ===== COLORS & TOKENS ===== */
:root {
  --bg-main: #020617;
  --bg-panel: #02081c;
  --bg-panel-soft: #071426;
  --accent-gold: #facc15;
  --accent-blue: #2563eb;
  --accent-soft: #38bdf8;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --border-soft: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.85);
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 12px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 18, 0.98),
    rgba(3, 7, 18, 0.88),
    transparent
  );
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 26px;
  height: 26px;
}

.brand-text {
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.85rem;
}

.main-nav a {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover {
  background: rgba(148, 163, 184, 0.10);
  color: var(--text-main);
}

.main-nav a.active {
  background: rgba(37, 99, 235, 0.15);
  color: #f9fafb;
}

/* ===== COMMON LAYOUT ===== */

.section {
  padding: 4.2rem 6vw 3.8rem;
}

.section-tight {
  padding-top: 3rem;
  padding-bottom: 3.2rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1.4rem;
  color: #cbd5f5;
}

.section-text {
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 1.4rem;
}

.info-card {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16) 0, #02081c 55%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.5rem 1.6rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.info-card h3 {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: #e5e7eb;
}

.info-card p {
  margin-top: 0.4rem;
  line-height: 1.7;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.95);
  border-color: rgba(56, 189, 248, 0.45);
}

/* ===== SERVICE CARD ICONS (CSS ONLY, NO IMAGE FILES) ===== */

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  margin-bottom: 0.7rem;
  display: inline-block;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

/* variations per service */
.icon-rentals {
  background: linear-gradient(135deg, #1f2940, #3c6fd1);
}

.icon-management {
  background: linear-gradient(135deg, #1f2940, #26a69a);
}

.icon-document {
  background: linear-gradient(135deg, #1f2940, #f4b400);
}

.icon-renovation {
  background: linear-gradient(135deg, #1f2940, #e53935);
}

.icon-structure {
  background: linear-gradient(135deg, #1f2940, #8e24aa);
}

.icon-consulting {
  background: linear-gradient(135deg, #1f2940, #6a82fb);
}

.icon-import {
  background: linear-gradient(135deg, #1f2940, #00c9a7);
}

/* ===== HERO – HOME ===== */

.hero-main {
  padding: 5.5rem 6vw 4.2rem;
  background: radial-gradient(circle at top left, #1d283a 0, #020617 55%, #020314 100%);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 0.6rem;
}

.hero-caption,
.image-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

/* Small summary blocks on right of hero */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-aside-card {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.24) 0, #020921 60%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-aside-card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: #e5e7eb;
}

/* ===== PAGE HERO (inner pages) ===== */

.page-hero {
  padding: 4rem 6vw 2.6rem;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #020314 100%);
}

.page-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero-inner h1,
.page-hero > h1 {
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.page-hero-inner p,
.page-hero > p {
  max-width: 720px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
}

.btn.primary {
  background: radial-gradient(circle at 20% 0, #fde047 0, #facc15 35%, #b45309 100%);
  color: #111827;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.9);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 1);
}

.btn.secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-main);
}

.btn.secondary:hover {
  background: rgba(30, 64, 175, 0.75);
}

/* Uiverse style ghost button */
.btn-ghost {
  position: relative;
  overflow: hidden;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  color: var(--text-main);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translate3d(-20%, -20%, 0);
}

.btn-ghost:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.hero-title {
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
  font-weight: 650; /* added for a bit more weight */
}

/* ===== TAG / PILL CHIPS ===== */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.pill {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: none;
}

/* you can keep pill-strong if you ever need it, but it's not used now */
.pill-strong {
  border-color: rgba(250, 204, 21, 0.5);
}

/* ===== STATS ROW ===== */

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.1rem;
  margin-bottom: 0.4rem;
}

.stat-item {
  min-width: 160px;
  padding: 0.8rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
}

.stat-number {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f9fafb;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  text-transform: none;
  letter-spacing: 0;
}


/* ===== SOFT GRADIENT DIVIDER ===== */

.soft-divider {
  height: 1px;
  width: 100%;
  max-width: 720px;
  margin: 2.2rem auto 1.8rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 163, 184, 0.6),
    transparent
  );
}

/* ===== FOOTER ===== */

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #020617;
  padding: 1.4rem 6vw 1.8rem;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-end;
  color: var(--text-muted);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  width: 18px;
  height: 18px;
}

.footer-brand-text {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.82rem;
}

.footer-right a {
  margin-left: 12px;
}

/* ===== TEAM PROFILES ===== */

.team-people {
  padding-top: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 1.4rem;
}

.team-card {
  text-align: center;
  background: radial-gradient(circle at top, rgba(255,255,255,0.05) 0, rgba(5,10,30,0.9) 55%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 1.3rem 1.6rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.85);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.9rem;
  border: 2px solid rgba(255,255,255,0.14);
}

.team-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}

/* ===== SERVICES VISUAL BLOCKS (ABSTRACT ILLUSTRATIONS) ===== */

.service-visual {
  width: 100%;
  height: 70px;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  background: radial-gradient(circle at top left, #3b82f6, #111827);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

.visual-ops {
  background: radial-gradient(circle at top left, #3b82f6, #0b1220);
}

.visual-management {
  background: radial-gradient(circle at top left, #22c55e, #0b1220);
}

.visual-docs {
  background: radial-gradient(circle at top left, #facc15, #0b1220);
}

.visual-renovation {
  background: radial-gradient(circle at top left, #f97316, #0b1220);
}

.visual-structure {
  background: radial-gradient(circle at top left, #a855f7, #0b1220);
}

.visual-consulting {
  background: radial-gradient(circle at top left, #38bdf8, #0b1220);
}

.visual-import {
  background: radial-gradient(circle at top left, #2dd4bf, #0b1220);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-aside {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-main {
    padding: 3.2rem 1.6rem 2.6rem;
  }

  .section {
    padding: 2.6rem 1.6rem 2.2rem;
  }

  .page-hero {
    padding: 3.2rem 1.6rem 2.2rem;
  }
}
/* ===== SERVICE IMAGE BLOCKS ===== */

/* If some cards still use <div class="service-visual visual-...">,
   these keep them working, but now with your real photos. */

.service-visual {
  width: 100%;
  height: 70px;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

/* map each service to its photo (note: assets, not assest) */
.visual-ops {
  background-image: url("images/assets.png");
}

.visual-management {
  background-image: url("images/rental.png");
}

.visual-structure {
  background-image: url("images/business.png");
}

.visual-import {
  background-image: url("images/cross market.png");
}

/* If you use <img class="service-image" ...> instead of <div>,
   this keeps the same look. You can use either pattern. */

.service-image {
  width: 100%;
  height: 70px; /* make this bigger if you want taller windows */
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}
