/* --- Variables & Core Setup --- */
:root {
  --bg-dark: #1a1a1a;
  --bg-light: #2c2c2c;
  --text: #e0e0e0;
  --text-muted: #a0a0a0;
  --accent: #9C525A;
  --accent-hover: #83454c;
  --blue-muted: #7A9CB5;
  --border: #3a3a3a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark) url('../img/mound.png') center/cover fixed;
  background-blend-mode: overlay;
  color: var(--text);
  line-height: 1.6;
  padding-top: 85px;
  min-height: 100vh;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.home-box { max-width: auto; margin: 0 auto; padding: 0 auto; align-items: center;}

.mead { font-size: 1.6rem; font-weight: bold; }

.biggie { font-size: 3rem; }

a { color: var(--blue-muted); text-decoration: none; transition: .3s; }

/* --- Navigation & Header --- */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--bg-dark); border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

.navbar { display: flex; justify-content: space-between; align-items: center; }

.logo img { max-width: 120px; }

.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--text); padding: 10px; }

nav ul { display: flex; list-style: none; }

nav ul li { position: relative; margin-left: 30px; }

nav ul li a { color: var(--text); font-size: 1.5rem; padding: 10px 0; }

nav ul li a:hover { color: var(--accent); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0; z-index: 2000; display: none;
  background: var(--bg-light); min-width: 180px; padding: 5px 0;
  box-shadow: 0 8px 16px rgba(0,0,0,.5); border-top: 3px solid var(--accent);
}

.dropdown-menu li { border-bottom: 1px solid var(--border); margin: 0; }

.dropdown-menu li:last-child { border-bottom: none; }

.dropdown-menu li a { padding: 10px 15px; font-weight: 300; white-space: nowrap; font-size: 1rem; }

.dropdown-menu li a:hover { background: var(--border); }

/* --- Page Content & Layout --- */
#page-content { min-height: calc(100vh - 185px); padding: 60px 0; }

.content-section { animation: fadeIn .5s ease-out; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-block { background: var(--bg-light); padding: 30px; border-radius: 8px; margin-bottom: 20px; }

.content-block h3 { margin-bottom: 10px; }

.content-block p { color: var(--text-muted); }

/* --- Hero Section --- */
#hero {
  text-align: center; padding: 80px 20px; min-height: 70vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}

#hero h1 { font-size: 3.5rem; font-weight: 600; margin-bottom: 15px; max-width: 600px; }

#hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; max-width: 500px; }

.cta-button {
  background: var(--accent); color: #fff; border-radius: 5px; font-weight: 600;
  padding: 15px 35px; display: inline-block;
}

.cta-button:hover { background: var(--accent-hover); }

.section-title { font-size: 2.5rem; text-align: center; color: var(--accent); margin-top: 50px; margin-bottom: 30px; }

/* --- Pricing/Rates Grid --- */
.rates-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; margin-top: 30px; }

.rate-card {
  flex: 1; min-width: 320px; display: flex; flex-direction: column;
  background: var(--bg-light); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.3s ease;
}

.rate-card:hover { transform: translateY(-5px); border-color: var(--accent); }

.rate-header {
  padding: 25px 20px; text-align: center; font-weight: 600; font-size: 1.6rem;
  background: var(--accent); color: #fff; border-bottom: 1px solid var(--border);
}

.rate-body { padding: 25px; flex-grow: 1; }

.rate-item {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 14px; border-bottom: 1px solid var(--border); padding-bottom: 6px;
}

.rate-item .label { font-size: 0.9rem; color: var(--text); padding-right: 15px; }

.rate-item .price { font-weight: 600; color: var(--blue-muted); white-space: nowrap; }

.rate-note { font-size: 0.8rem; color: var(--text-muted); margin: -10px 0 15px 0; font-style: italic; }

/* --- Footer --- */
footer { text-align: center; padding: 40px 20px; border-top: 1px solid var(--border); background: var(--bg-dark); }

.social-links a { color: var(--text-muted); margin: 0 10px; font-size: 1.4rem; }

.social-links a:hover { color: var(--accent); }

/* --- Media Queries --- */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  nav {
    position: absolute; top: 85px; left: 0; width: 100%;
    background: var(--bg-dark); border-top: 1px solid var(--border);
  }
  nav ul { flex-direction: column; padding: 10px 0; }
  nav ul li { margin: 0; width: 100%; border-bottom: 1px solid var(--border); }
  nav ul li:last-child { border-bottom: none; }
  nav ul li a { padding: 15px 20px; }
  .dropdown-menu { position: static; background: var(--border); box-shadow: none; border: none; margin: 0; }
  .dropdown-menu li { padding-left: 40px; border-bottom: 1px solid var(--border); }
  .dropdown-menu li a { padding: 12px 15px; }
  #hero h1 { font-size: 2.5rem; }
  #hero p { font-size: 1rem; }
  .rate-card { min-width: 100%; }
}

@media (min-width: 901px) {
  nav { display: block !important; }
  li.has-dropdown:hover > .dropdown-menu { display: block; }
}

/* Alpine display fallback */
.dropdown-menu[style*="display: block"] { display: block !important; }

/* ==================================================================
   2026 SERVICE RATES – FINAL VERSION (clean, no conflicts)
   ================================================================== */

.section-title.rates {
  font-size: 2.8rem;
  text-align: center;
  color: var(--accent);
  margin: 80px auto 20px;
  font-weight: 600;
}

.rates-disclaimer {
  text-align: center;
  color: var(--text-muted);
  max-width: auto;
  margin: 0 auto 50px;
  font-size: 1.5rem;
  font-style: italic;
}

/* 3-card responsive grid – desktop = 3 cards, mobile = 1 card */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

.rate-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rate-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.rate-header {
  background: var(--accent);
  color: #fff;
  padding: 28px 20px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
}

.rate-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.rate-item:last-child {
  border-bottom: none;
}

.rate-item .label {
  color: var(--text);
  flex: 1;
}

.rate-item .price {
  color: var(--blue-muted);
  font-weight: 600;
  margin-left: 20px;
  white-space: nowrap;
}

.rate-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .section-title.rates { font-size: 2.3rem; margin-top: 60px; }
  .rates-grid { gap: 24px; padding: 0 10px; }
  .rate-card { min-width: 100%; }
  .rate-header { font-size: 1.5rem; padding: 24px 16px; }
  .rate-body { padding: 24px; }
}

/* ==================================================================
   MEET THE STAFF SECTION – matches your exact dark/red theme
   ================================================================== */

.team-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: 30px 20px 35px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.team-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.team-name {
  font-size: 2rem;
  color: var(--text);
  margin: 0 0 8px 0;
  font-weight: 600;
}

.team-title {
  font-size: 1rem;
  color: var(--blue-muted);
  margin: 0;
  font-weight: 500;
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .team-photo {
    width: 150px;
    height: 150px;
  }
  .team-card {
    padding: 25px 15px;
  }
}