/* ================= GLOBAL ================= */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --bg-main: #0f172a;        /* DARK BACKGROUND */
  --bg-section: #111827;
  --card-bg: #1f2937;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --radius: 12px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Roboto', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: var(--primary) !important;
  font-weight: 700;
}

.nav-link {
  color: var(--text-main) !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* ================= HERO ================= */
.hero-bg {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url("https://images.unsplash.com/photo-1492724441997-5dc865305da7");

  background-size: cover;
  background-position: center;

  border-radius: var(--radius);
  padding: 100px 20px;
  margin-top: 20px;

  text-align: center;
  color: white;
}

/* TITLE */
.hero-bg h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

/* BLUE TEXT */
.brand-text {
  color: var(--primary);
}

/* SUBTITLE */
.hero-subtext {
  color: #e5e7eb;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* ================= BUTTON ================= */
.btn-custom {
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 10px 20px;
  border: none;
}

.btn-custom:hover {
  background-color: var(--primary-dark);
}

/* ================= SECTIONS ================= */
.section-padding {
  padding: 60px 0;
}

/* ================= SERVICES ================= */
.card-custom {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  color: white;
  transition: 0.3s;
}

.card-custom:hover {
  transform: translateY(-5px);
  background-color: #273549;
}

h2 {
  color: white;
}

/* ================= IMAGES ================= */
.img-rounded {
  border-radius: var(--radius);
}

/* ================= FOOTER ================= */
footer {
  background-color: #020617;
  color: var(--text-muted);
  padding: 30px 0;
  text-align: center;
  margin-top: 40px;
}

footer p {
  margin: 0;
}

/* ================= LINKS ================= */
a {
  text-decoration: none;
}

/* ================= MAP ================= */
.map-placeholder iframe {
  border-radius: var(--radius);
}

.section-padding {
  padding: 80px 0;
}

h2 {
  font-weight: 700;
}

.text-muted {
  color: #9ca3af !important;
}

/* HERO TITLES (About + Contact SAME STYLE) */
.hero-simple h1 {
  font-size: 56px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.hero-simple p {
  font-size: 18px;
  color: #6b7280;
}
