/* Base */
:root {
  --bg: linear-gradient(145deg, #f6f7f8 0%, #eceef1 28%, #e2e5e9 56%, #d8dde2 100%);
  --bg-accent:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 42%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 38%);
  --card: rgba(255, 255, 255, 0.78);
  --text: #0f172a;
  --muted: #475569;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 1.25rem;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  background-attachment: fixed;
  color: var(--text);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg-accent);
  pointer-events: none;
  z-index: -1;
}

/* Navbar */
.site-navbar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.site-navbar .nav-link {
  color: #0f172a;
  font-weight: 600;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: #000;
}
.site-navbar .navbar-brand {
  letter-spacing: 0.2px;
}

/* Sections */
.section-pad {
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .section-pad {
    padding: 4rem 0;
  }
}

/* Hero */
.hero-section {
  padding: 2rem 0 0;
}
.hero-card {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.06);
  color: #111827;
}
.mini-stat {
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.mini-stat__label {
  font-size: 0.75rem;
  color: var(--muted);
}
.mini-stat__value {
  font-weight: 700;
}

/* Thumbnails */
.thumb-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.7);
}
.thumb-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0));
}
.thumb-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
}
.play-badge {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Contact */
.section-contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(6px);
}
.icon-bubble {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.06);
}

/* Buttons */
.btn-dark,
.btn-outline-dark {
  border-radius: 999px;
}
.form-control {
  border-radius: 1rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.text-secondary {
  color: black !important;
}
.hot-email {
  color: #0d6efd;
  font-weight: 700;
  text-decoration: none;
}
.hot-email:hover,
.hot-email:focus {
  text-decoration: underline;
}

/* Opportunity resource layout */
.opportunity-resources-row {
  margin-top: 1rem;
}
.resource-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
}
.resource-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}
.resource-list {
  display: grid;
  gap: 1rem;
}
.resource-link {
  display: block;
  width: 100%;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.resource-link:hover,
.resource-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.16);
  color: #000;
}
.resource-link span {
  display: block;
}
.resource-link strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.resource-link small {
  display: block;
  color: #475569;
  line-height: 1.4;
}
.resource-link__icon {
  display: none;
}
.property-carousel {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}
.carousel-property-img {
  height: 430px;
  object-fit: cover;
  display: block;
}
.property-carousel .carousel-indicators {
  margin-bottom: 0.6rem;
}
.property-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.property-carousel .carousel-control-prev,
.property-carousel .carousel-control-next {
  width: 12%;
}
@media (max-width: 991px) {
  .carousel-property-img {
    height: 340px;
  }
}
@media (max-width: 575px) {
  .resource-link {
    padding: 0.95rem;
  }
  .carousel-property-img {
    height: 280px;
  }
}

h1 {
  font-size: 34px !important;
}
