@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #F9F9F9;
  background-color: #0B0B0B;
}


a {
  color: #D91E18;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 16px 40px;
}

/* Header */

header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.logo img {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #333333;
  font-size: 0.85rem;
  background-color: #1D1D1D;
}

.nav a:hover {
  background-color: #F9F9F9;
  color: #F9F9F9;
  text-decoration: none;
}

/* Hero */

.hero-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 18px;
  color: #F9F9F9;
  background: radial-gradient(circle at top left, rgba(0,0,0,0.4), rgba(0,0,0,0.9)), url('hero-roof.jpeg') center/cover no-repeat;
}


.hero-banner::before {content:"";position:absolute;inset:0;background:rgba(0,0,0,0.55);z-index:0;}


.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}


.hero-inner {
  position: relative;
  padding: 26px 20px 22px;
}

.hero-inner h1 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.9rem;
}

.hero-inner h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-inner p {
  margin: 0;
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.trust-icons span {
  font-size: 0.8rem;
  background: rgba(0,0,0,0.4);
  border-radius: 999px;
  padding: 4px 10px;
}

.city-select {
  margin-top: 14px;
}

.city-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.city-bubble {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.35);
  color: #F9F9F9;
  padding: 8px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.city-bubble span {
  font-size: 1rem;
}

.city-bubble:hover {
  background: rgba(0,0,0,0.55);
}

.city-select-instruction {
  font-size: 0.8rem;
  opacity: 0.95;
}

.city-panels {
  margin-top: 8px;
}

.city-panel {
  display: none;
  background: rgba(0,0,0,0.45);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.85rem;
}

.city-panel.active {
  display: block;
}

.city-panel h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.city-panel a {
  color: #F9F9F9;
}

.city-panel a.btn-link {
  display: inline-block;
  margin: 3px 6px 3px 0;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  font-size: 0.8rem;
}

.city-panel a.btn-link:hover {
  background: rgba(0,0,0,0.65);
  text-decoration: none;
}

/* Sections */

.section {
  margin-bottom: 26px;
}

.section h2 {
  margin-top: 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(0,2fr);
  gap: 18px;
}

.card {
  background-color: #1D1D1D;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.badges-row span {
  font-size: 0.8rem;
  background-color: #F9F9F9;
  color: #F9F9F9;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Buttons */

.btn {
  display: inline-block;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: #D91E18;
  color: #F9F9F9;
}


.btn-primary:hover {
  background-color: #B51912;
  color: #F9F9F9;
  text-decoration: none;
}


.btn-secondary {
  background-color: #1D1D1D;
  color: #F9F9F9;
  border: 1px solid #333333;
}


.btn-secondary:hover {
  background-color: #333333;
  text-decoration: none;
}


.btn-outline {
  background: transparent;
  color: #F9F9F9;
  border: 1px solid #ffffff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #F9F9F9;
}

/* Forms */

form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea,
form select {
  width: 100%;
  padding: 7px 8px;
  border-radius: 8px;
  border: 1px solid #333333;
  font-size: 0.9rem;
}

form textarea {
  min-height: 110px;
}

.form-note {
  font-size: 0.8rem;
  color: #E5E5E5;
}

.privacy-note {
  font-size: 0.75rem;
  color: #E5E5E5;
  margin-top: 4px;
}

/* Portrait */

.portrait-small {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

/* Footer */

.footer {
  font-size: 0.85rem;
  color: #E5E5E5;
}

.footer p {
  margin: 4px 0;
}

/* Rachel widget */

.rachel-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  font-family: inherit;
}

.rachel-toggle {
  background: #111111;
  color: #F9F9F9;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rachel-toggle span {
  font-size: 1.1rem;
}

.rachel-panel {
  position: fixed;
  right: 18px;
  bottom: 70px;
  width: 320px;
  max-height: 80vh;
  background: #1D1D1D;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  display: none;
}


.rachel-widget.open .rachel-panel {
  position: fixed;
  right: 18px;
  bottom: 70px;
  width: 320px;
  max-height: 80vh;
  background: #1D1D1D;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  display: block;
}


.rachel-header {
  background: #D91E18;
  color: #F9F9F9;
  padding: 10px 12px;
  font-size: 0.9rem;
}


.rachel-header small {
  display: block;
  font-weight: normal;
  font-size: 0.75rem;
  opacity: 0.95;
}

.rachel-body {
  padding: 10px 12px 12px;
  font-size: 0.85rem;
}

.rachel-body p {
  margin-top: 0;
  margin-bottom: 8px;
}

.rachel-body form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rachel-body input[type="text"],
.rachel-body input[type="tel"],
.rachel-body input[type="email"],
.rachel-body select,
.rachel-body textarea {
  font-size: 0.8rem;
  padding: 6px;
}

.rachel-body textarea {
  min-height: 70px;
}

.rachel-body button {
  font-size: 0.85rem;
  padding: 8px 10px;
}

.rachel-note {
  font-size: 0.7rem;
  color: #E5E5E5;
}

/* Responsive */

@media (max-width: 720px) {
  .hero-inner {
    padding: 22px 16px 18px;
  }
  .two-col {
    grid-template-columns: minmax(0,1fr);
  }
}


.hero-inner h1,
.hero-inner h2,
.hero-inner p,
.trust-icons span,
.city-select-instruction {
  color: #F9F9F9 !important;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}


.city-bubble,
.trust-icons span {
  background-color: #D91E18 !important;
  color: #F9F9F9 !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.city-bubble:hover,
.trust-icons span:hover {
  background-color: #D91E18 !important;
  color: #F9F9F9 !important;
}


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

.gallery-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  background-color: #1D1D1D;
  border-radius: 12px;
  padding: 10px 10px 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-bottom: 8px;
}

.gallery-item h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.gallery-item p {
  margin: 0;
  font-size: 0.8rem;
  color: #E5E5E5;
}


/* About section */
.about-section {
  background: #1D1D1D;
}

.about-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.about-mission,
.about-story {
  background: #1D1D1D;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.about-mission h2,
.about-story h2 {
  margin-top: 0;
}

.text-link {
  color: #D91E18;
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* Compact hero style for inner pages */
.hero-banner.small-hero {
  min-height: auto;
  margin-top: 16px;
  margin-bottom: 20px;
}

.hero-banner.small-hero .hero-inner {
  padding: 26px 20px 22px;
}

.hero-banner.small-hero .hero {
  max-width: 680px;
}

/* On larger screens, split mission and story side by side */
@media (min-width: 880px) {
  .about-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

/* Slightly stronger city bubble styling so they feel clickable */
.city-bubble {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.55);
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
}

.city-bubble:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-1px);
}

/* Rachel chat-style layout */
.rachel-chat {
  background: #0B0B0B;
}

.rachel-message {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.rachel-message p {
  margin: 0;
}

.rachel-message.from-rachel p {
  display: inline-block;
  background: #1D1D1D;
  padding: 8px 10px;
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.rachel-message.from-user {
  text-align: right;
}

.rachel-message.from-user label {
  display: inline-block;
  background: #D91E18;
  color: #F9F9F9;
  padding: 8px 10px;
  border-radius: 14px 14px 4px 14px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.rachel-message.from-user input,
.rachel-message.from-user select,
.rachel-message.from-user textarea {
  margin-top: 4px;
  width: 100%;
  background: #1D1D1D;
  color: #F9F9F9;
}

.rachel-chat .btn-primary {
  background-color: #D91E18;
  color: #F9F9F9;
}


/* Social icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.social-icon svg {
  display: block;
}

/* Hero meta row under main buttons */
.hero-meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-top: 16px;
  margin-bottom: 10px;
}

.hero-meta-item {
  font-size: 0.85rem;
  background: rgba(0,0,0,0.55);
  border-radius: 999px;
  padding: 6px 12px;
  color: #F9F9F9;
  display: flex;
  flex-direction: column;
}

.hero-meta-item strong {
  font-size: 0.85rem;
}

.hero-meta-item span {
  font-size: 0.78rem;
  opacity: 0.9;
}

/* On larger screens, spread meta across 4 columns */
@media (min-width: 880px) {
  .hero-meta-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* FAQ accordion */
.faq-section {
  background: #1D1D1D;
}

.faq-section .section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq-intro {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.faq-accordion details {
  background: #1D1D1D;
  border-radius: 10px;
  margin-bottom: 6px;
  padding: 8px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.faq-accordion summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion p {
  margin-top: 6px;
  font-size: 0.9rem;
}

.faq-footer-note {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Rachel widget – interactive chat */
.rachel-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  font-family: inherit;
}

.rachel-toggle {
  background: #111111;
  color: #F9F9F9;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.rachel-toggle .rachel-avatar svg {
  display: block;
}

.rachel-panel {
  position: fixed;
  right: 18px;
  bottom: 70px;
  width: 320px;
  max-height: 80vh;
  background: #1D1D1D;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  display: none;
}


.rachel-widget.open .rachel-panel {
  position: fixed;
  right: 18px;
  bottom: 70px;
  width: 320px;
  max-height: 80vh;
  background: #1D1D1D;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  display: block;
}


.rachel-header {
  background: #D91E18;
  color: #F9F9F9;
  padding: 10px 12px;
  font-size: 0.9rem;
}


.rachel-close {
  background: transparent;
  border: none;
  color: #F9F9F9;
  font-size: 1.1rem;
  cursor: pointer;
  margin-right: 8px; /* X on the left */
}

.rachel-header-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rachel-avatar-header {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #D91E18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rachel-avatar-header svg {
  width: 18px;
  height: 18px;
  color: #F9F9F9;
}

.rachel-header-text small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.85;
}

.rachel-body.rachel-chat {
  padding: 8px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #0B0B0B;
  flex: 1;
  min-height: 0;
}

.rachel-messages {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.rachel-message {
  margin-bottom: 6px;
  font-size: 0.8rem;
}

.rachel-message.from-rachel {
  text-align: left;
}

.rachel-message.from-user {
  text-align: right;
}

.rachel-bubble {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  max-width: 90%;
}

.from-rachel .rachel-bubble {
  background: #1D1D1D;
  border-radius: 14px 14px 14px 4px;
}

.from-user .rachel-bubble {
  background: #D91E18;
  color: #F9F9F9;
  border-radius: 14px 14px 4px 14px;
}

.rachel-input-area {
  margin-top: 4px;
}

.rachel-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rachel-option,
.rachel-option-done {
  border-radius: 999px;
  border: 1px solid #D91E18;
  background: #1D1D1D;
  color: #D91E18;
  font-size: 0.78rem;
  padding: 4px 10px;
  cursor: pointer;
}

.rachel-option.selected {
  background: #D91E18;
  color: #F9F9F9;
}

.rachel-option-done {
  background: #111111;
  border-color: #F9F9F9;
  color: #F9F9F9;
}

.rachel-input-row {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

.rachel-input-row label {
  flex: 1;
  font-size: 0.75rem;
}

.rachel-input-row input,
.rachel-input-row textarea {
  width: 100%;
  font-size: 0.8rem;
  padding: 4px 6px;
  margin-top: 2px;
}

.rachel-input-row textarea {
  min-height: 48px;
}

.rachel-send {
  border-radius: 999px;
  border: none;
  background: #D91E18;
  color: #F9F9F9;
  padding: 6px 10px;
  font-size: 0.8rem;
  cursor: pointer;
}

.rachel-hidden-form {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .rachel-panel {
  position: fixed;
  right: 18px;
  bottom: 70px;
  width: 320px;
  max-height: 80vh;
  background: #1D1D1D;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  display: none;
}

}

/* Ensure footer text doesn't clash with FAQ section */
.section.footer {
  padding-top: 16px;
}

.rachel-restart {
  margin-top: 4px;
  text-align: center;
  font-size: 0.75rem;
  color: #C4C7CC;
}
.rachel-restart button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #D91E18;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.75rem;
}

.rachel-input-row-alt {
  margin-top: 4px;
  font-size: 0.75rem;
}
.rachel-input-row-alt label {
  font-size: 0.75rem;
}

/* Clean nav styling v45 */
.nav-clean {
  display:flex;
  gap:18px;
  align-items:center;
  font-size:17px;
  padding:10px 0;
}
.nav-clean a {
  text-decoration: none;
  color: #F9F9F9;
  font-weight: 500;
}

.nav-clean a:hover {
  border-bottom: 2px solid #D91E18;
}

.nav-clean .nav-cta {
  padding: 7px 16px;
  background: #D91E18;
  color: #F9F9F9 !important;
  border-radius: 999px;
  border: none;
}


/* v46 clean nav + footer + rating styles */
.nav-clean {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px 22px;
  align-items:center;
  font-size:16px;
  padding:14px 0 6px;
}

.nav-clean a {
  text-decoration: none;
  color: #F9F9F9;
  font-weight: 500;
}


.nav-clean a:hover {
  border-bottom: 2px solid #D91E18;
}


.nav-clean .nav-cta {
  padding: 7px 16px;
  background: #D91E18;
  color: #F9F9F9 !important;
  border-radius: 999px;
  border: none;
}


.section.footer {
  text-align:center;
}

.footer-social {
  margin-top:0.5rem;
}

.footer-facebook-link {
  display:inline-flex;
  align-items:center;
  gap:0.35rem;
  text-decoration:none;
  color:inherit;
}

.footer-facebook-link span:last-child {
  font-weight:500;
}

.footer-facebook-link:hover span:last-child {
  text-decoration:underline;
}

.fb-icon svg {
  width:20px;
  height:20px;
  display:block;
}

/* Rating widget styling */
.rating-section {
  padding:3rem 1.5rem;
  text-align:center;
  background:#0f1117;
  color: #F9F9F9;
}

.rating-section h2 {
  font-size:1.6rem;
  margin-bottom:0.75rem;
}

.rating-widget {
  max-width:420px;
  margin:0 auto;
}

.rating-stars {
  display:inline-flex;
  gap:0.5rem;
  margin:1rem 0;
}

.rating-star {
  font-size:2.3rem;
  background:none;
  border:none;
  cursor:pointer;
  opacity:0.35;
  transition:transform 0.15s ease, opacity 0.15s ease;
}

.rating-star.is-active {
  opacity:1;
  transform:scale(1.05);
}

.rating-message {
  font-size:0.95rem;
  opacity:0.8;
}

/* v47 form star style */
.form-stars {
  display:flex;
  gap:0.4rem;
  margin:0.5rem 0 1rem;
}
.form-stars .rating-star {
  font-size:1.8rem;
  background:none;
  border:none;
  cursor:pointer;
  opacity:0.35;
}
.form-stars .rating-star.is-active {
  opacity:1;
}




/* Hamburger base */
.site-header {background:#000;color:#fff;position:sticky;top:0;z-index:50;}
.site-header .header-inner{max-width:1100px;margin:0 auto;padding:12px 20px;display:flex;align-items:center;justify-content:space-between;}
.site-header .logo img {height:120px;max-height:120px;width:auto;}
.nav-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
}

/* Hamburger bars */
.nav-toggle span:not(.nav-toggle-label) {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 4px;
}

/* Visually hide the text label but keep it for screen readers */
.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



.site-nav{display:none;font-family:"Montserrat";}

 /* Full-screen overlay */
.site-header.nav-style-overlay .site-nav{position:fixed;inset:0;background:rgba(0,0,0,0.94);display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .2s;}
.site-header.nav-style-overlay .site-nav ul{text-align:center;}
.site-header.nav-style-overlay .site-nav ul li{margin:10px 0;}
.site-header.nav-style-overlay .site-nav a{font-size:1.3rem;color:#fff;}
.site-header.nav-style-overlay .nav-cta-link{font-weight:600;color:#000;background:#D91E18;padding:10px 20px;border-radius:999px;display:inline-block;margin-top:10px;}
.site-header.nav-style-overlay.nav-open .site-nav{opacity:1;pointer-events:auto;}

/* Final hero typography tweaks */
.hero h1, .hero-inner h1 {
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
}

.hero h2, .hero-inner h2 {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
  max-width: 40rem;
}

.site-header .header-inner {
  display:flex;
  align-items:center;
}
.site-header .logo {
  flex:0 0 auto;
}
.nav-toggle {
  margin-left:auto;
}

.nav-toggle {
  align-items:center;
}
.nav-toggle .nav-toggle-label {
  font-size:0.9rem;
  margin-left:8px;
}
.site-header .header-inner{max-width:1100px;margin:0 auto;padding:12px 20px;display:flex;align-items:center;justify-content:space-between;width:100%;}
/* Navbar spacing refinements */
.site-header .logo{flex:0 0 auto;}
.nav-toggle{margin-left:auto;align-items:center;}
.nav-toggle .nav-toggle-label{font-size:0.9rem;margin-left:8px;}


/* Sticky header shadow */
body.has-scrolled .site-header {
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Page hero styling */
.page-hero {
  position: relative;
  padding: 36px 20px 30px;
  margin: 0 auto 20px;
}

.page-hero-dark {
  background: #000;
  color: #F9F9F9;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 34px);
}

.page-hero-tagline {
  margin: 0 0 14px;
  max-width: 40rem;
  font-size: 0.98rem;
  color: #E5E5E5;
}

.page-hero .btn {
  margin-top: 4px;
}

.page-hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: url('logo.png') center right/220px no-repeat;
  pointer-events: none;
}

/* Quick services */
.quick-services .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.quick-services h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.quick-service-item {
  border-radius: 12px;
  background: #1D1D1D;
  color: #F9F9F9;
  padding: 14px 14px 12px;
}

.quick-service-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.quick-service-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #E5E5E5;
}

/* Badge row under hero meta */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.badge-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.trust-badge {
  height: 32px;
  width: auto;
  display: block;
}

.badge-text-group {
  gap: 6px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.55);
  font-size: 0.78rem;
  background: rgba(0,0,0,0.4);
}

/* Education section */
.education-section .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.education-card {
  border-radius: 12px;
  background: #111111;
  color: #F9F9F9;
  padding: 14px;
}

.education-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.education-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #E5E5E5;
}

.education-cta-note {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Footer additions */
.footer-emergency-note {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-left: 6px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.footer-separator {
  opacity: 0.6;
}

/* Floating call button */
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.floating-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #D91E18;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.65);
}

.floating-call-btn:focus-visible {
  outline: 2px solid #F9F9F9;
  outline-offset: 2px;
}

.floating-call-menu {
  position: absolute;
  right: 0;
  bottom: 52px;
  min-width: 220px;
  padding: 8px;
  border-radius: 12px;
  background: #000;
  color: #F9F9F9;
  border: 1px solid #333;
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
  display: none;
}

.floating-call.open .floating-call-menu {
  display: block;
}

.floating-call-menu a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.floating-call-menu a:hover {
  background: #181818;
}

/* Subtle fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-banner,
.section,
.page-hero,
.card {
  animation: fadeUp 0.4s ease both;
}


/* Before/after layout */
.before-after-pair {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin:22px 0 10px;
}

.before-after-pair h3 {
  margin:0 0 6px;
  font-size:0.95rem;
}

.before-after-pair img {
  width:100%;
  border-radius:10px;
  display:block;
}


/* === Rachel layout fix (2025-12-05) === */
/* Make the chat panel and body flex containers so the messages area can scroll properly on small screens */
.rachel-panel {
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.rachel-widget.open .rachel-panel {
  display: flex;
}

.rachel-body.rachel-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
