/* --- Global Variables & Reset --- */
:root {
  --brand-red: #c8102e;
  --brand-red-dark: #a00d25;
  --dark-bg: #111827;
  --darker-bg: #030712;
  --light-bg: #f3f4f6;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Kills white space at the bottom */
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* --- Header & Navigation (Fixed Centering) --- */
header {
  background-color: var(--darker-bg);
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid var(--brand-red);
  width: 100%;
}

.brandmark {
  max-width: 350px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Keeps logo centered */
}

nav {
  background-color: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  width: 100%;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

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

nav a.active-link {
  background: var(--brand-red);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 4px;
}

/* --- Section Foundations --- */
section {
  width: 100%;
  padding: 100px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center; /* Default centering for all sections */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.kicker {
  color: var(--brand-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

/* --- Hero Section Fixes --- */
.hero {
  background-color: var(--darker-bg);
  color: var(--white);
  padding: 140px 20px;
}

.hero h1 { 
  font-size: clamp(2.5rem, 6vw, 4.5rem); 
  text-transform: uppercase; 
  margin-bottom: 20px; 
  letter-spacing: -1px; 
  line-height: 1.1; 
}

.hero .btn {
  margin-top: 50px; /* More space between text and button */
}

/* --- Service Area (No Bullets) --- */
.service-area { background-color: var(--light-bg); }

.city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  max-width: 1000px;
  margin: 40px auto 0;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.9rem;
}

/* --- Grid Systems (About & Contact) --- */
.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left; /* Cards internal text stays left-aligned */
}

.about-card, .contact-panel {
  background: var(--white);
  padding: 40px;
  border-top: 5px solid var(--brand-red);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-panel h3 { font-size: 1.3rem; margin-bottom: 25px; text-transform: uppercase; }

.info-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-bg);
}

/* --- Buttons & Centering Fix --- */
.btn-container {
  text-align: center;
  width: 100%;
  margin-top: 50px;
}

.btn {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  padding: 22px 50px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--brand-red-dark); transform: scale(1.05); }

/* --- Booking Page Fixes --- */
.booking-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left; /* Keep requirements left-aligned */
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-section .btn {
  display: inline-block;
  margin-top: 30px; /* Optional: adds breathing room above the button */
}

.disclaimer-box {
  background: var(--white);
  border-left: 6px solid var(--brand-red);
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.about-footer-note {
  margin-top: 60px; /* Adjust this number to increase or decrease the gap */
  display: block;
  text-align: center;
}

.booking-footer-note {
  display: block;
  text-align: center;
  margin: 40px auto 0; /* 40px gap on top, centered, 0 on bottom */
  max-width: 800px;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.5;
}

strong {
  color: var(--brand-red); /* Makes 'non-obligation' pop in your brand color */
}

/* --- Footer & Facebook Pop --- */
footer {
  flex-shrink: 0;
  background-color: var(--darker-bg);
  color: #9ca3af;
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid #374151;
  width: 100%;
}

.footer-social { margin-top: 20px; }

.footer-social a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}


.footer-social a:hover {
  color: var(--brand-red);
  transform: scale(1.1); /* The "Pop" effect */
}

/* --- Responsive --- */
@media (max-width: 768px) {
  section { padding: 60px 15px; }
  nav { gap: 15px; }
  nav a { font-size: 0.8rem; }
  .hero { padding: 80px 20px; }
}
