
:root {
  --black: #050505;
  --dark: #111111;
  --charcoal: #181818;
  --neon: #39ff14;
  --neon-soft: #b8ff9f;
  --white: #ffffff;
  --muted: #d4d4d4;
  --border: rgba(57,255,20,.28);
  --shadow: 0 10px 30px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: #ffffff;
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(1120px, 92%);
  margin: auto;
}

/* BIG TOP CALL BAR */
.top-call-bar {
  background: var(--neon);
  color: #000;
  text-align: center;
  font-weight: 900;
  letter-spacing: .2px;
  padding: 13px 10px;
  font-size: clamp(18px, 4vw, 30px);
  line-height: 1.2;
  border-bottom: 4px solid #000;
}

.top-call-bar a {
  color: #000;
  text-decoration: none;
}

/* HEADER / LOGO */
header {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-wrap img {
  height: 95px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.logo-text {
  display: none;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-weight: 800;
  color: #fff;
}

nav a:hover {
  color: var(--neon);
}

.btn, .btn-primary {
  display: inline-block;
  background: var(--neon);
  color: #000;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid var(--neon);
  cursor: pointer;
}

.btn:hover, .btn-primary:hover {
  background: #000;
  color: var(--neon);
}

.btn-outline {
  display:inline-block;
  border: 2px solid var(--neon);
  color: var(--neon);
  padding: 11px 17px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:900;
  background:#000;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(57,255,20,.22), transparent 35%),
    linear-gradient(135deg, #050505, #171717 55%, #000);
  color: white;
  padding: 85px 0;
  border-bottom: 4px solid var(--neon);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.03;
  max-width: 900px;
  margin: 0 0 18px;
}

.hero p {
  font-size: 21px;
  max-width: 790px;
  color: #e7e7e7;
}

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

.section {
  padding: 58px 0;
  color: #1f2937;
  background: #fff;
}

.section h1,
.section h2 {
  font-size: 34px;
  margin: 0 0 12px;
  color: #000;
}

.lead {
  color: #475569;
  font-size: 18px;
  max-width: 780px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.card {
  border: 1px solid #d7fdd0;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.card-img {
  height: 190px;
  background:
    linear-gradient(135deg, rgba(57,255,20,.22), rgba(0,0,0,.88)),
    #111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color: var(--neon);
  text-align:center;
  padding:20px;
  font-size: 25px;
}

.card-body {
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 23px;
  color: #000;
}

.badge {
  display:inline-block;
  background:#f0ffe9;
  color:#064e00;
  border:1px solid #8cff72;
  padding:5px 11px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  margin-bottom:12px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: start;
}

.panel {
  border: 1px solid #d7fdd0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  background:#fff;
  color: #1f2937;
}

.calendar-wrap {
  min-height: 520px;
}

#calendar {
  margin-top: 16px;
}

.legend {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
  color:#475569;
}

.legend span {
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.dot {
  width:12px;
  height:12px;
  border-radius:50%;
  display:inline-block;
}

.dot-red {
  background:#fecaca;
  border:1px solid #ef4444;
}

.dot-green {
  background:#dcfce7;
  border:1px solid #22c55e;
}

form {
  display:grid;
  gap: 13px;
}

label {
  font-weight:900;
  color: #000;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(57,255,20,.45);
  border-color: var(--neon);
}

textarea {
  min-height: 115px;
}

.form-row {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.notice {
  background:#f7fff5;
  border:1px solid #b8ff9f;
  padding:14px;
  border-radius:12px;
  color:#334155;
  font-size:14px;
}

footer {
  background: #000;
  color: white;
  padding: 38px 0;
  margin-top: 40px;
  border-top: 4px solid var(--neon);
}

footer p {
  color:#d4d4d4;
}

.footer-phone {
  color: var(--neon);
  font-size: 24px;
  font-weight: 900;
}

.fc .fc-button-primary {
  background: #000;
  border-color: #000;
}

.fc .fc-button-primary:hover {
  background: var(--neon);
  color: #000;
  border-color: var(--neon);
}

.fc .fc-daygrid-day {
  background: #f0fdf4;
}

.fc .fc-bg-event {
  background: #fecaca !important;
  opacity: .9 !important;
}

/* Existing older homepage compatibility */
.btn-nav {
  background: var(--neon);
  color:#000 !important;
  padding: 10px 16px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .property-grid, .two-col, .form-row {
    grid-template-columns: 1fr;
  }

  nav {
    display:none;
  }

  .hero {
    padding: 55px 0;
  }

  .nav {
    justify-content: center;
  }

  .logo-wrap {
    justify-content: center;
  }

  .top-call-bar {
    position: sticky;
    top: 0;
    z-index: 80;
  }
}
