/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAFA;
  --accent: #cc0000;
  --accent-light: #e60000;
  --text: #1a1a1a;
  --text-secondary: #666666;
  --border: #e5e5e5;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
}
.btn-white:hover {
  background: #f0f0f0;
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1000;
}

.header-top {
  background: var(--accent);
  color: var(--white);
  padding: 6px 0;
  font-size: 0.85rem;
  text-align: center;
}

.header-top a { color: var(--white); font-weight: 500; }
.header-top a:hover { color: #ddd; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 175px; width: auto; border-radius: 0; margin: 8px 0; }
.logo-text { font-size: 1.15rem; font-weight: 700; color: var(--accent); line-height: 1.2; }
.logo-text small { display: block; font-size: 0.7rem; font-weight: 400; color: var(--text-secondary); letter-spacing: 0.05em; text-transform: uppercase; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(204, 0, 0, 0.06);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.phone-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .logo img { height: 90px; margin: 4px 0; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 24px 40px;
    transition: right var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .main-nav a { padding: 12px 16px; font-size: 1rem; }

  .header-cta { display: none; }

  .mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
  }
  .mobile-nav-buttons a {
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .mobile-nav-btn-primary {
    background: var(--accent);
    color: #fff !important;
  }
  .mobile-nav-btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent) !important;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }
  .nav-overlay.active { display: block; }
}

@media (min-width: 901px) {
  .nav-overlay { display: none !important; }
  .mobile-nav-buttons { display: none !important; }
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  padding: 12px 20px;
  z-index: 998;
  text-align: center;
}

.mobile-cta-bar a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg {
  background: linear-gradient(135deg, var(--accent) 0%, #990000 50%, #b30000 100%);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-placeholder {
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero { padding: 50px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero h1 { font-size: 1.8rem !important; }
  .hero p { font-size: 0.95rem; }
  .hero-buttons { justify-content: center; flex-direction: row !important; flex-wrap: nowrap; }
  .hero-buttons .btn { font-size: 0.85rem; padding: 12px 20px; white-space: nowrap; }
  .hero-image-placeholder { min-height: 200px; }
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--accent) 0%, #990000 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 1.8rem; }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-alt { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.6rem; }
  .section-header { margin-bottom: 30px; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(204, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-items { gap: 8px 16px; justify-content: center; }
  .trust-item { font-size: 0.75rem; gap: 6px; }
  .trust-icon { width: 28px; height: 28px; font-size: 0.9rem; }
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(204, 0, 0, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== SERVICES OVERVIEW ===== */
.service-card {
  text-align: center;
  padding: 40px 28px;
}

.service-card .card-icon { margin: 0 auto 20px; }

.service-card .btn {
  margin-top: 20px;
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: #e8eef0;
  border: 2px dashed #c5d3d8;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  min-height: 250px;
}

.img-placeholder-sm { min-height: 180px; }
.img-placeholder-lg { min-height: 350px; }

/* ===== PRICING ===== */
.pricing-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  margin: 16px 0 4px;
}

.pricing-period {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin: 24px 0;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.review-card {
  padding: 28px;
}

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== AMENITIES LIST ===== */
.amenity-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.amenity-item:last-child { border-bottom: none; }

.amenity-icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 0, 0, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.amenity-item h4, .amenity-item .h4-style {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.amenity-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(204, 0, 0, 0.03); }

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: unset;
  border-radius: 0;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT FORM ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== MAP EMBED ===== */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #990000 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .cta-section h2 { font-size: 1.5rem; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col h4, .footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ===== CONTENT LAYOUTS ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  /* Force text-first order on mobile: text block always comes before image */
  .content-grid .content-block { order: 1 !important; }
  .content-grid > div:not(.content-block),
  .content-grid > img,
  .content-grid > .hero-image { order: 2 !important; }
}

.content-block h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .content-block h2 { font-size: 1.4rem; }
  .section-header h2 { font-size: 1.5rem; }
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-block ul { margin: 16px 0; }
.content-block ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.content-block ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== DETAIL TABLE ===== */
.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table th,
.detail-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.detail-table th {
  background: rgba(204, 0, 0, 0.05);
  font-weight: 600;
  color: var(--text);
}

.detail-table td { color: var(--text-secondary); }

/* ===== PROCESS STEPS ===== */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child { border-bottom: none; }

.step-number {
  counter-increment: step;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process-step h4, .process-step .h4-style {
  font-weight: 700;
  margin-bottom: 4px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== HOURS TABLE ===== */
.hours-table {
  width: 100%;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-secondary);
}

.hours-table .closed td { color: #c00; }

/* ===== AREA / SEO PAGE ===== */
.area-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.area-highlights .card {
  padding: 24px;
}

@media (max-width: 600px) {
  .area-highlights { grid-template-columns: 1fr; }
}

/* ===== INLINE REVIEW STRIP ===== */
.review-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.review-strip .review-card {
  border: none;
  box-shadow: none;
  padding: 0;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ===== GROOMING PROCESS / INCLUDED ===== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
}

.included-item .check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* Google Review Widget */
.google-review-badge {
  text-align: center;
  margin-bottom: 32px;
}
.grb-rating {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.grb-stars {
  font-size: 1.8rem;
  color: #FBBC05;
  margin: 4px 0;
}
.grb-count {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.grb-logo { margin-top: 4px; }

/* Review Slider */
.review-slider {
  position: relative;
  overflow: hidden;
  padding: 0 4px;
}
.review-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.review-slide {
  width: 33.333%;
  flex: 0 0 33.333%;
  padding: 0 10px;
  box-sizing: border-box;
}
.rs-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.rs-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.rs-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rs-meta {
  flex: 1;
}
.rs-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.rs-meta span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.rs-google {
  flex-shrink: 0;
}
.rs-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.rs-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: var(--white);
  color: var(--text-secondary);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
  transition: all 0.2s;
  line-height: 1;
}
.slider-arrow:hover {
  background: #f9fafb;
  color: var(--text-primary);
}
.slider-arrow-right { right: -8px; }
@media (max-width: 500px) {
  .review-slide { width: 100%; flex: 0 0 100%; }
  .slider-arrow-right { right: 4px; }
}

/* Read More / Owner Reply */
.read-more, .read-reply {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
}
.read-more:hover, .read-reply:hover { text-decoration: underline; }
.owner-reply {
  margin-top: 12px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.owner-reply-header { margin-bottom: 6px; font-size: 0.8rem; color: var(--text-secondary); }
.owner-reply p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.read-reply { display: inline-block; margin-top: 8px; }

/* ===== ROOM IMAGE SLIDER ===== */
.room-slider { position: relative; width: 100%; height: 100%; min-height: 350px; }
.room-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.5s ease; }
.room-slide.active { opacity: 1; position: relative; }
.room-slide img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.room-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: background 0.3s;
}
.room-slider-btn:hover { background: rgba(0,0,0,0.75); }
.room-slider-prev { left: 10px; }
.room-slider-next { right: 10px; }
.room-slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.room-slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  transition: background 0.3s;
  padding: 8px; background-clip: content-box;
  box-sizing: content-box;
}
.room-slider-dot.active { background: #fff; }
@media (max-width: 768px) {
  .room-slider { min-height: 250px; }
}
