/* ---------------------------
   BASE / RESET
   --------------------------- */
   :root{
    --bg:#fff6ec;
    --card:#ffffff;
    --accent1:#ff7a33; /* primary accent */
    --accent2:#d35400; /* darker accent */
    --muted:#777;
    --text:#111;
    --radius:12px;
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html,body{height:100%}
  body{
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background:var(--bg);
    color:var(--text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.5;
    overflow-x:hidden;
  }
  .container{max-width:1100px;margin:0 auto;padding:1rem}
  
  /* header */
  .header{position:fixed;top:0;left:0;right:0;background:rgba(255,255,255,0.92);backdrop-filter:blur(6px);border-bottom:1px solid rgba(0,0,0,0.04);z-index:999}
  .nav{display:flex;align-items:center;justify-content:space-between;padding:0.8rem 0}
  .logo{font-weight:800;font-size:1.4rem;color:var(--accent2)}
  .menu-toggle{display:none;background:none;border:0;font-size:1.2rem;cursor:pointer}
  .nav-links{display:flex;gap:1.6rem;list-style:none}
  .nav-links a{color:var(--text);text-decoration:none;padding:0.6rem 0;display:inline-block}
  .nav-links a.active{color:var(--accent1)}
  
  @media(max-width:768px){
    .menu-toggle{display:block}
    .nav-links{position:absolute;top:100%;left:0;right:0;background:rgba(255,255,255,0.98);flex-direction:column;padding:1rem;display:none}
    .nav-links.show{display:flex}
  }
 /* Site search (header input) */
.site-search{display:flex;align-items:center;gap:6px}
.site-search-input{
  width:240px; max-width:40vw; padding:8px 10px; border-radius:10px; border:1px solid rgba(0,0,0,0.08);
  background:#fff; color:var(--text); font-weight:600; transition:box-shadow .18s;
}
.site-search-input:focus{box-shadow:0 8px 24px rgba(18,24,30,0.08);outline:none}
.site-search-clear{background:transparent;border:0;font-size:14px;cursor:pointer;color:#777}

/* Overlay */
.site-search-overlay{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,0.36);z-index:2200;padding:20px}
.site-search-overlay.show{display:flex}
.site-search-panel{width:100%;max-width:920px;background:var(--card);border-radius:12px;padding:14px;box-shadow:0 30px 80px rgba(2,6,23,0.6);max-height:80vh;overflow:auto}
.site-search-header{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(0,0,0,0.06);padding-bottom:8px;margin-bottom:10px}
.site-search-results{display:grid;gap:8px}
.site-search-item{display:flex;gap:12px;align-items:flex-start;padding:10px;border-radius:10px;cursor:pointer;border:1px solid rgba(0,0,0,0.03);transition:all .14s}
.site-search-item:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(18,24,30,0.06)}
.site-search-item .item-type{font-size:12px;padding:4px 8px;border-radius:8px;background:#f3f4f6;color:#111;font-weight:700}
.site-search-item .item-content{flex:1}
.item-title{font-weight:800;margin-bottom:3px}
.item-snippet{color:var(--muted);font-size:0.95rem}
.site-search-empty{padding:18px;color:var(--muted);text-align:center}
@media(max-width:700px){ .site-search-input{width:160px} .site-search-panel{padding:12px} }

  
/* ---------- HERO (updated) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg);
  background-position: center center;
  background-size: cover;
  transition: background-image 400ms ease, background-color 300ms ease;
  overflow: hidden;
}


/* desktop: soft light overlay so image still shows through */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.15)
  );
  pointer-events: none;
}

/* content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 1000px;
  margin-left: 5%;         /* magazine-style left offset on wide screens */
  text-align: left;
}

/* responsive heading + readable shadow */
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 0.6rem;
  line-height: 1.12;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* subtitle / lead */
.lead {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

/* CTA group */
.cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* animation for hero elements (fade + slide up) */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero .lead, .hero .cta-group .btn {
  opacity: 0;
  animation: fadeSlideUp 900ms ease-out forwards;
}
.hero h1 { animation-delay: 0.18s; }
.hero .lead { animation-delay: 0.45s; }
/* target buttons inside .cta-group; they appear slightly later */
.hero .cta-group .btn { animation-delay: 0.8s; }

/* ========== Mobile adjustments ========== */
@media (max-width: 768px) {
  /* darker overlay on mobile for readability */
  .hero::before {
    background: linear-gradient(180deg,
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.22)
    );
  }

  /* center the content on small screens */
  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 1rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    text-shadow: 0 2px 6px rgba(0,0,0,0.32);
  }

  .lead {
    font-size: clamp(0.9rem, 3.25vw, 1.05rem);
    text-shadow: 0 1px 5px rgba(0,0,0,0.28);
  }

  .cta-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .cta-group .btn {
    min-width: 140px;
  }
}

/* small tune for very large screens */
@media (min-width: 1600px) {
  .hero h1 { font-size: 4.2rem; }
}

  
  /* services grid */
  .services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.4rem;margin-top:1rem}
  .service-card{background:var(--card);padding:1.2rem;border-radius:var(--radius);box-shadow:0 12px 28px rgba(18,24,30,0.04)}
  .service-icon{width:56px;height:56px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:0.8rem;background:linear-gradient(90deg, rgba(255,122,51,0.08), rgba(211,84,0,0.06))}
  .service-card h3{margin-bottom:0.4rem}
  .service-price{color:var(--accent1);font-weight:700;margin-top:0.6rem}
  .book-btn{display:inline-block;margin-top:0.6rem}
  
  /* products */
  .products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.2rem}
  .product-card{background:var(--card);border-radius:var(--radius);overflow:hidden;box-shadow:0 12px 30px rgba(18,24,30,0.04);display:flex;flex-direction:column}
  .product-img{width:100%;height: 220px;object-fit:contain; display:block}
  .product-info{padding:1rem}
  .product-brand{color:var(--accent1);font-weight:700;font-size:0.85rem}
  .product-name{font-weight:700;margin:0.4rem 0}
  .product-price{color:var(--accent1);font-weight:800;margin-bottom:0.6rem}
  .product-ctas{display:flex;gap:0.6rem}
  
  
  /* blog */
  .blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.2rem}
  .blog-card{background:var(--card);padding:1rem;border-radius:var(--radius);box-shadow:0 12px 28px rgba(18,24,30,0.04)}
  .blog-card p{color:var(--muted)}
  .blog-card a.readmore{display:inline-block;margin-top:0.6rem;padding:0.45rem 1rem;border-radius:6px;background:#fff;border:2px solid var(--accent2);color:var(--accent2);text-decoration:none;font-weight:600;transition:all .25s}
  .blog-card a.readmore:hover{background:var(--accent2);color:#fff;transform:translateY(-2px);box-shadow:0 6px 14px rgba(0,0,0,0.12)}
  
  /* testimonials grid & ping-pong effect */
  .testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;align-items:start}
  .testimonial-card{background:var(--card);padding:1rem;border-radius:14px;box-shadow:0 12px 30px rgba(18,24,30,0.04);position:relative;overflow:visible}
  .testimonial-text{font-style:italic;color:#222;margin-bottom:0.9rem}
  .testimonial-author{display:flex;align-items:center;gap:0.8rem}
  .testimonial-avatar{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;flex-shrink:0}
  .author-info h4{font-size:1rem;margin-bottom:0}
  .author-location{font-size:0.85rem;color:var(--muted)}
  
  /* ping-pong animation for testimonials */
  @keyframes pingpong {
    0% { transform: translateY(0) }
    50% { transform: translateY(-6px) }
    100% { transform: translateY(0) }
  }
  .testimonial-card:nth-child(odd){ animation: pingpong 6s ease-in-out infinite; }
  .testimonial-card:nth-child(even){ animation: pingpong 7s ease-in-out infinite; }
  
  /* contact layout */
  .section-title{font-size:1.6rem;font-weight:800;margin-bottom:0.8rem}
  .contact-grid{display:grid;grid-template-columns:1fr 420px;gap:20px;align-items:start}
  .contact-form-panel, .contact-info-panel{background:var(--card);padding:1rem;border-radius:var(--radius);box-shadow:0 12px 30px rgba(18,24,30,0.04)}
  .contact-form-panel form{display:flex;flex-direction:column;gap:12px}
  .contact-form-panel input, .contact-form-panel textarea{padding:12px;border-radius:8px;border:1px solid rgba(0,0,0,0.06);font-size:15px;background:#fff}
  .contact-form-panel textarea{min-height:120px;resize:vertical}
  .map-wrap{border-radius:10px;overflow:hidden}
  .map-iframe{width:100%;height:300px;border:0;display:block}
  .map-placeholder img{width:100%;display:block;border-radius:8px}
  .load-map-btn{position:absolute;right:18px;bottom:18px;background:linear-gradient(90deg,var(--accent1),var(--accent2));color:#fff;border:0;padding:.6rem 0.9rem;border-radius:8px;cursor:pointer;box-shadow:0 8px 18px rgba(0,0,0,0.12)}
  
  /* footer */
  .footer{padding:2rem 0;background:transparent}
  .footer-links{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center;margin-bottom:1rem}
  
  /* floating call button */
  .call-float{position:fixed;right:28px;bottom:28px;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--accent1);color:#fff;font-size:1.3rem;z-index:1000;box-shadow:0 12px 26px rgba(0,0,0,0.12);text-decoration:none}
  .call-float:hover{transform:scale(1.06);box-shadow:0 18px 36px rgba(0,0,0,0.14)}
  
  /* buttons - global */
  .btn{display:inline-flex;align-items:center;justify-content:center;padding:.6rem 1rem;border-radius:10px;font-weight:700;cursor:pointer;border:0;transition:all .25s ease;position:relative;overflow:hidden;text-decoration:none}
  .btn::after{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(120deg,rgba(255,255,255,0.35),transparent 60%);transition:all .4s}
  .btn:hover::after{left:100%}
  .btn-primary{background:linear-gradient(90deg,var(--accent1),var(--accent2));color:#fff;box-shadow:0 12px 30px rgba(211,84,0,0.12)}
  .btn-secondary{background:#fff;color:var(--accent2);border:2px solid var(--accent2)}
  .btn:hover{transform:translateY(-3px);box-shadow:0 18px 40px rgba(0,0,0,0.08)}
  .btn:active{transform:translateY(0)}
  .btn.fullwidth{width:100%;padding:.85rem 1rem}
  
  /* responsive tweaks */
  @media(max-width:1000px){
    .contact-grid{grid-template-columns:1fr}
    .product-img{height:180px}
    .hero-content{padding:2rem 0}
    .nav-links{gap:1rem}
  }
  
  /* accessibility focus */
  input:focus, textarea:focus, a:focus, button:focus{outline:3px solid rgba(255,122,51,0.15);outline-offset:3px}
  
  /* small visual tuning */
  .section{padding:1rem 0}
  
  /* ===== Hero visual + mobile centering fixes ===== */

/* reduce the heavy white overlay so the background image reads better */
.hero::before {
  /* lighter overlay so background is visible but text remains readable */
  background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.28) 100%);
}

/* ensure hero image focuses central area (better cropping) */
.hero {
  background-position: center center;
  background-size: cover;
}

/* hero content sizing and spacing */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;       /* keep content readable on wide screens */
  padding: 3rem 1rem;     /* create breathing room */
  margin-left: 0;         /* reset any left bias */
  color: #111;
}

/* subheading styling — clearer, slightly larger and darker for contrast */
.hero .lead {
  color: #5e5e5e;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

/* buttons group: default left-aligned on desktop */
.cta-group { display:flex; gap:1rem; align-items:center; }

/* responsive: center everything on smaller screens */
@media (max-width: 900px) {
  .hero {
    /* nudge background a bit so important part is visible on mobile */
    background-position: center 30%;
    min-height: 70vh; /* a slightly shorter hero on small screens */
  }

  .hero-content {
    text-align: center;      /* center title, subtitle & buttons */
    padding: 2.4rem 1rem;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6.5vw, 2.6rem);
    line-height: 1.05;
  }

  .cta-group {
    justify-content: center; /* center the buttons */
    flex-wrap:wrap;
    gap:0.8rem;
  }

  .btn { min-width: 140px; } /* keep buttons large enough on mobile */
}

/* small adjustment to hero text on very large screens */
@media (min-width: 1600px) {
  .hero h1 { font-size: 4.2rem; }
}
/* ---------------------------
   Hero alignment: keep centered on mobile but left-aligned on desktop
   --------------------------- */
   @media (min-width: 1000px) {
    .hero-content.container {
      /* move the content slightly right from left edge (a pleasant magazine layout) */
      max-width: 820px;            /* keep line-length readable */
      margin-left: 5%;             /* shift right on large screens */
      text-align: left;            /* ensure left aligned on desktop */
      padding-left: 2rem;
    }
  
    /* make the CTA group sit left under text on desktop */
    .hero .cta-group {
      justify-content: flex-start;
    }
  
    /* reduce huge h1 size on ultra-wide screens so it doesn't wrap awkwardly */
    .hero h1 {
      font-size: clamp(2.6rem, 5vw, 3.2rem);
    }
  }
  
  /* Mobile: keep everything centered and wide for tap targets */
  @media (max-width: 999px) {
    .hero-content.container {
      margin: 0 auto;
      text-align: center;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  
    .hero .cta-group { justify-content: center; }
  }
  
  /* ---------------------------
     Button / Call Now fixes
     --------------------------- */
  
  /* ensure link-buttons in cards use the .btn styles and remove default underline */
  .book-btn,
  .product-ctas a,
  .service-card a.book-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none !important;
    padding:0.55rem 0.9rem;
    border-radius:10px;
    font-weight:700;
    background:linear-gradient(90deg,var(--accent1),var(--accent2));
    color:#fff;
    border: 0;
    box-shadow:0 10px 24px rgba(211,84,0,0.12);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  
  /* hover/active */
  .book-btn:hover,
  .product-ctas a:hover {
    transform: translateY(-3px);
    box-shadow:0 16px 36px rgba(18,24,30,0.12);
  }
  
  /* secondary style (outline) for "Call Expert" / subtle buttons */
  .book-btn.outline,
  .product-ctas a.outline {
    background: #fff;
    color: var(--accent2);
    border: 2px solid var(--accent2);
    box-shadow: 0 6px 18px rgba(18,24,30,0.06);
  }
  
  /* make sure small inline links don't show underline */
  .service-card a,
  .product-ctas a { text-decoration:none; }
  
  /* small visual tweak: ensure service-price and call button spacing */
  .service-price { margin-bottom: 0.6rem; display:block; font-weight:700; color:var(--accent1) }
  .service-card .book-btn { margin-top: 0.4rem; }
  
  /* ensure cards keep consistent padding and the icon sits correctly */
  .service-icon { margin-bottom: 12px; }
  
  /* accessibility: keyboard focus for card buttons */
  .book-btn:focus, .product-ctas a:focus { outline:3px solid rgba(255,122,51,0.14); outline-offset:3px; }
  /* Site logo - desktop + responsive */
  .site-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
    color: inherit;
  }
  
  .logo-line {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .logo-mark {
    color: var(--accent2); /* orange */
    font-weight: 900;
    font-size: 1.4rem;
  }
  
  .logo-word {
    color: #222;
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .logo-sub {
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    margin-top: -2px;
    letter-spacing: 0.3px;
  }
  
  /* mobile adjustments */
  @media (max-width: 480px) {
    .logo-mark { font-size: 1.25rem; }
    .logo-word { font-size: 1rem; }
    .logo-sub  { font-size: 0.9rem; }
  }
  
/* FAB svg color white */
.fab svg{width:26px;height:26px;fill:#fff}

/* Hours styling */
.hours{margin-top:14px;background:#232323;color:#f5f5f5;padding:12px;border-radius:10px}
.hours h3{margin:0 0 6px 0;font-size:1rem}
.hours-list{list-style:none;margin:0;padding:0;display:grid;gap:6px}
.hours-list li{display:flex;justify-content:space-between;gap:12px}
.hours-list li.current .day{font-weight:800}
.hours-list .time{font-weight:700}

/* Contact photo */
.contact-photo{width:100%;display:block;margin-top:12px;border-radius:10px;box-shadow:0 8px 20px rgba(0,0,0,.08)}
/* Re-affirm FAB positions in case base CSS differs */
.fab{position:fixed;right:18px;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 22px rgba(0,0,0,.18);text-decoration:none;z-index:1000}
.fab--call{background:#ff7a33;bottom:22px}
.fab--wa{background:#25D366;bottom:86px}


/* About section layout */
.about-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:1.5rem;align-items:center;margin-top:.6rem}
.about-media img{width:100%;display:block;border-radius:18px;box-shadow:0 12px 40px rgba(0,0,0,.08)}
.about-content h3{margin:0 0 .4rem 0}
.why-list{list-style:none;margin:.4rem 0 0 0;padding:0;display:grid;gap:.4rem}
.why-list li{background:#eef6ff;border-radius:12px;padding:.6rem .8rem}
@media(max-width:900px){.about-grid{grid-template-columns:1fr}}

/* Social links */
.social-links{display:flex;gap:10px;margin-top:10px}
.social-links a{text-decoration:none;display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:#fff;box-shadow:0 4px 10px rgba(0,0,0,.08)}
.social-links svg{width:18px;height:18px;fill:#333}
.social-links a:hover svg{fill:var(--accent1)}

/* Make contact links inherit color and no underline */
.contact-info-panel a{color:inherit;text-decoration:none}
.contact-info-panel a:hover{text-decoration:underline}


/* --- Professional Services: modern cards --- */
.services-grid-modern{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.25rem}
.service-card.modern{background:var(--card);border-radius:18px;padding:1.1rem 1.1rem 1.0rem;border:1px solid rgba(0,0,0,.06);box-shadow:0 10px 30px rgba(18,24,30,0.06)}
.service-card.modern h3{font-size:1.25rem;margin:.4rem 0 .25rem}
.service-card.modern p{color:#222;margin:0 0 .6rem}
.service-card.modern .service-price{font-weight:800;color:#d35400;margin:.2rem 0 .7rem}
.service-badge-wrap{width:56px;height:56px;border-radius:14px;background:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(18,24,30,.08);margin-bottom:.5rem}
.service-badge{width:36px;height:36px;display:block;object-fit:contain}

/* Button polish to match screenshot */
.product-ctas{display:flex;gap:.6rem;align-items:center}
.btn{border-radius:12px;box-shadow:0 8px 18px rgba(211,84,0,.20)}
.btn.btn-secondary{background:#fff;color:#111;border:2px solid var(--accent1);box-shadow:0 8px 18px rgba(0,0,0,.06)}


.review-meta{margin-top:8px;font-size:.9rem;color:#555;display:flex;gap:8px;align-items:center}
.review-rating::before{content:"★★★★★";letter-spacing:2px;display:inline-block;color:#ffb400}
.review-rating[data-stars="4"]::before{content:"★★★★☆"}
.review-rating[data-stars="3"]::before{content:"★★★☆☆"}
.review-rating[data-stars="2"]::before{content:"★★☆☆☆"}
.review-rating[data-stars="1"]::before{content:"★☆☆☆☆"}
.review-date{color:#777}
.review-form-wrap{margin-top:18px;background:#fff;padding:16px;border-radius:var(--radius);box-shadow:0 4px 10px rgba(0,0,0,.05)}
.review-form-wrap form{display:grid;gap:10px;grid-template-columns:1fr 120px}
.review-form-wrap textarea{grid-column:1/-1}
.review-form-wrap button{justify-self:flex-start}
@media(max-width:640px){.review-form-wrap form{grid-template-columns:1fr}}


/* --- Layout spacing fixes --- */
.section{padding:48px 0;}
.container{padding-left:20px;padding-right:20px;}
.section-title{margin-bottom:14px;}
.section .section-subtitle{margin-bottom:18px;color:#555;}
/* Ensure cards don't stick to edges on small screens */
@media(max-width:640px){
  .container{padding-left:16px;padding-right:16px;}
  .section{padding:36px 0;}
}


/* === v10 layout fixes === */
.section{padding-top:56px !important; padding-bottom:56px !important;}
.container{max-width:1200px; margin-left:auto; margin-right:auto;
  padding-left:clamp(16px,4vw,28px) !important; padding-right:clamp(16px,4vw,28px) !important;}
.section-title{margin:0 0 16px 0 !important;}
.section .section-subtitle{margin:0 0 20px 0 !important; color:#555;}
.about-grid{row-gap:18px}
.about-media img{border-radius:16px; display:block; width:100%;}
.review-meta{display:flex; gap:10px; align-items:center; margin-top:8px}
.review-date{color:#666}
.map-wrap iframe{width:100% !important; height:320px !important; border:0; border-radius:8px}


/* v11: minimal styles for reviews + map */
.review-meta{display:flex;gap:10px;align-items:center;margin-top:8px;font-size:.95rem;color:#555}
.review-rating::before{content:"★★★★★";letter-spacing:2px;color:#ffb400}
.review-rating[data-stars="4"]::before{content:"★★★★☆"}
.review-rating[data-stars="3"]::before{content:"★★★☆☆"}
.review-rating[data-stars="2"]::before{content:"★★☆☆☆"}
.review-rating[data-stars="1"]::before{content:"★☆☆☆☆"}
.review-date{color:#777}
.map-container{width:100%;height:320px;border-radius:8px;background:#f1f1f1;display:block}

/* Polished: translucent content panel + stronger overlay on mobile */
.hero {
  position: relative;
  overflow: hidden;
}

/* subtle light overlay for desktop (keeps image visible) */
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.12));
  z-index:1;
  pointer-events:none;
}

/* translucent panel behind text (ensures contrast without blocking image) */
.hero .hero-content {
  position: relative;
  z-index: 3;
  display: inline-block;
  max-width: 980px;
  padding: 1.4rem 1.2rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.82));
  box-shadow: 0 14px 40px rgba(15,20,25,0.08);
}

/* Use darker text when panel present */
.hero h1, .hero .lead { color: #111; text-shadow: none; }

/* Mobile: use darker global overlay and transparent panel (so image shows but text contrasts) */
@media (max-width:900px) {
  .hero::before{
    background: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.36));
  }
  .hero .hero-content {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    backdrop-filter: blur(1px);
    padding: 1.2rem;
    margin: 0 auto;
    width: min(92%, 640px);
  }
  .hero h1 { color: #fff; text-shadow: 0 6px 18px rgba(0,0,0,0.6); }
  .hero .lead { color: rgba(255,255,255,0.88); text-shadow: 0 4px 12px rgba(0,0,0,0.45); }
}

