
:root{
  --primary-color:#0f172a;
  --secondary-color:#ffffff;
  --accent-color:#f59e0b;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#0f172a;
}

.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 36px;
  background:var(--primary-color);
  color:#ffffff;
}

.site-logo{
  font-size:22px;
  font-weight:900;
}

.site-logo img{
  max-height:64px;
  max-width:220px;
  object-fit:contain;
}

.site-header nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  flex-wrap:wrap;
}

.site-header nav a{
  color:#ffffff;
  text-decoration:none;
  font-weight:800;
  font-size:15px;
}

.hero{
  min-height:70vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:60px 24px;
  background:linear-gradient(135deg,var(--primary-color),#1e293b);
  color:#ffffff;
}

.hero h1{
  font-size:clamp(2.4rem,6vw,5rem);
  line-height:1.05;
  margin:0 0 16px;
  font-weight:900;
}

.hero p{
  max-width:760px;
  margin:0 auto;
  font-size:20px;
  line-height:1.6;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:26px;
  padding:16px 28px;
  border-radius:12px;
  background:var(--accent-color);
  color:#111827;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.section{
  padding:70px 28px;
}

.section h2{
  text-align:center;
  font-size:clamp(2rem,4vw,2.7rem);
  margin:0 0 28px;
  font-weight:900;
}

.section p{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.7;
}

.services-grid,
.testimonials-grid,
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  margin-top:32px;
}

.service-card,
.testimonial-card,
.gallery-item{
  background:#ffffff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 10px 30px rgba(15,23,42,.08);
  overflow:hidden;
}

.service-card{
  text-align:center;
}

.service-icon{
  font-size:48px;
  margin-bottom:14px;
}

.gallery-item{
  padding:0;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.testimonial-stars{
  font-size:22px;
  margin-bottom:16px;
}

.testimonial-text{
  color:#334155;
}

.testimonial-name{
  font-weight:900;
  color:var(--primary-color);
}

.hidden{
  display:none !important;
}

/* CLEAN RESTAURANT MENU */
#menuSection{
  overflow:hidden;
}

#menuGrid.nwp-menu-carousel{
  display:flex;
  flex-direction:row;
  gap:14px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:16px 8px 26px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.nwp-menu-thumb{
  flex:0 0 150px;
  width:150px;
  height:115px;
  padding:8px;
  background:#ffffff;
  border-radius:14px;
  box-shadow:0 8px 22px rgba(15,23,42,.14);
  overflow:hidden;
  cursor:pointer;
  scroll-snap-align:start;
}

.nwp-menu-thumb-img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  background:#f8fafc;
  border-radius:10px;
  display:block;
}

.contact-section{
  background:#f1f5f9;
  text-align:center;
}

.social-links{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

.social-links a{
  font-weight:900;
  text-decoration:none;
}

/* LIGHTBOX */
.lightbox-overlay{
  position:fixed;
  inset:0;
  z-index:99999;
  background:rgba(0,0,0,.88);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.lightbox-overlay.hidden{
  display:none !important;
}

.lightbox-overlay img{
  max-width:96vw;
  max-height:92vh;
  object-fit:contain;
  border-radius:12px;
}

.lightbox-close{
  position:fixed;
  top:20px;
  right:28px;
  color:#ffffff;
  font-size:42px;
  cursor:pointer;
  z-index:100000;
}

/* TEMPLATE RESTAURANT BASIC */
body.template-restaurant-basic{
  background:#fff7ed;
}

body.template-restaurant-basic .site-header{
  background:linear-gradient(90deg,#7c2d12,#991b1b);
}

body.template-restaurant-basic .cta-button{
  background:#f59e0b;
  color:#111827;
}

body.template-restaurant-basic .section h2{
  color:#7c2d12;
}

body.template-restaurant-basic .contact-section{
  background:#7c2d12;
  color:#ffffff;
}

body.template-restaurant-basic .contact-section h2,
body.template-restaurant-basic .contact-section p{
  color:#ffffff;
}

/* MOBILE CLEAN */
@media(max-width:640px){
  .site-header{
    position:relative;
    flex-direction:column;
    padding:16px 14px;
  }

  .site-logo img{
    max-height:58px;
    max-width:190px;
  }

  .site-header nav{
    justify-content:center;
    gap:10px;
  }

  .site-header nav a{
    font-size:14px;
  }

  .hero{
    min-height:62vh;
    padding:50px 18px;
  }

  .hero p{
    font-size:16px;
  }

  .section{
    padding:48px 16px;
  }

  .gallery-item img{
    height:190px;
  }

  #menuGrid.nwp-menu-carousel{
    gap:12px;
    padding:14px 4px 22px;
  }

  .nwp-menu-thumb{
    flex:0 0 135px;
    width:135px;
    height:105px;
    padding:7px;
  }
}


/* CLEAN PUBLIC GALLERY THUMBNAIL GRID */
.gallery-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,minmax(140px,160px)) !important;
  justify-content:center !important;
  gap:16px !important;
}

.gallery-item{
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  padding:8px !important;
  background:#ffffff !important;
  border-radius:14px !important;
  box-shadow:0 8px 22px rgba(15,23,42,.14) !important;
  overflow:hidden !important;
  cursor:pointer !important;
}

.gallery-item img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#f8fafc !important;
  border-radius:10px !important;
  display:block !important;
}

@media(max-width:640px){
  .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
  }

  .gallery-item{
    aspect-ratio:1 / 1 !important;
    padding:7px !important;
  }
}


/* TEMPLATE RESTAURANT MEXICAN */
body.template-restaurant-mexican{
  background:#fff1dc;
  color:#24110a;
}

body.template-restaurant-mexican .site-header{
  background:linear-gradient(90deg,#3b0a0a,#8b0000,#b91c1c);
  border-bottom:4px solid #f59e0b;
  box-shadow:0 8px 28px rgba(59,10,10,.28);
}

body.template-restaurant-mexican .site-logo{
  color:#fff7ed;
  text-shadow:0 2px 10px rgba(0,0,0,.3);
}

body.template-restaurant-mexican .site-header nav a{
  color:#fff7ed;
  font-weight:900;
}

body.template-restaurant-mexican .hero{
  min-height:78vh;
  background:
    radial-gradient(circle at top left,rgba(245,158,11,.32),transparent 34%),
    linear-gradient(135deg,rgba(59,10,10,.88),rgba(127,29,29,.72));
}

body.template-restaurant-mexican .hero h1{
  color:#ffffff;
  text-shadow:0 10px 35px rgba(0,0,0,.5);
}

body.template-restaurant-mexican .hero p{
  color:#fde68a;
  font-weight:700;
}

body.template-restaurant-mexican .cta-button{
  background:linear-gradient(135deg,#fbbf24,#f97316);
  color:#2b0b08;
  border:2px solid rgba(255,255,255,.45);
  box-shadow:0 14px 34px rgba(249,115,22,.38);
}

body.template-restaurant-mexican .section h2{
  color:#8b0000;
  text-transform:uppercase;
  letter-spacing:.04em;
}

body.template-restaurant-mexican .service-card,
body.template-restaurant-mexican .testimonial-card,
body.template-restaurant-mexican .gallery-item,
body.template-restaurant-mexican .nwp-menu-thumb{
  border:2px solid rgba(185,28,28,.16);
  background:#fffaf2;
  box-shadow:0 12px 34px rgba(127,29,29,.13);
}

body.template-restaurant-mexican .service-icon{
  filter:drop-shadow(0 6px 12px rgba(185,28,28,.18));
}

body.template-restaurant-mexican .testimonial-name{
  color:#8b0000;
}

body.template-restaurant-mexican .contact-section{
  background:linear-gradient(135deg,#3b0a0a,#7f1d1d);
  color:#fff7ed;
  border-top:5px solid #f59e0b;
}

body.template-restaurant-mexican .contact-section h2,
body.template-restaurant-mexican .contact-section p{
  color:#fff7ed;
}

/* RESTAURANT MEXICAN LAYOUT UPGRADE */
body.template-restaurant-mexican .hero{
  min-height:86vh;
  border-bottom:8px solid #f59e0b;
}

body.template-restaurant-mexican .hero h1{
  max-width:980px;
  font-size:clamp(3rem,7vw,6rem);
  letter-spacing:.02em;
}

body.template-restaurant-mexican .section{
  position:relative;
  margin:28px auto;
  max-width:1180px;
  border-radius:28px;
  background:rgba(255,250,242,.82);
}

body.template-restaurant-mexican #about{
  border:2px solid rgba(245,158,11,.35);
  box-shadow:0 18px 45px rgba(127,29,29,.10);
}

body.template-restaurant-mexican #services,
body.template-restaurant-mexican #menuSection,
body.template-restaurant-mexican #gallery,
body.template-restaurant-mexican #testimonials{
  box-shadow:0 18px 45px rgba(127,29,29,.10);
}

body.template-restaurant-mexican .service-card{
  border-radius:28px;
  transform:translateY(0);
  transition:.25s ease;
}

body.template-restaurant-mexican .service-card:hover{
  transform:translateY(-7px);
}

body.template-restaurant-mexican .service-icon{
  width:84px;
  height:84px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#fde68a,#fb923c);
}

body.template-restaurant-mexican .gallery-item,
body.template-restaurant-mexican .nwp-menu-thumb{
  border:3px solid #f59e0b;
}

body.template-restaurant-mexican .testimonial-card{
  border-left:7px solid #b91c1c;
}

body.template-restaurant-mexican .contact-section{
  max-width:none;
  border-radius:0;
  margin-bottom:0;
}

@media(max-width:640px){
  body.template-restaurant-mexican .section{
    margin:16px 10px;
    border-radius:20px;
    padding-left:16px;
    padding-right:16px;
  }

  body.template-restaurant-mexican .hero{
    min-height:70vh;
  }
}

/* FIX RESTAURANT MEXICAN CONTACT CONTRAST */
body.template-restaurant-mexican #contact.contact-section{
  background:linear-gradient(135deg,#3b0a0a,#7f1d1d) !important;
  color:#fff7ed !important;
  border-top:6px solid #f59e0b !important;
}

body.template-restaurant-mexican #contact.contact-section h2,
body.template-restaurant-mexican #contact.contact-section p,
body.template-restaurant-mexican #contact.contact-section a{
  color:#fff7ed !important;
}

/* TEMPLATE RESTAURANT DARK */
body.template-restaurant-dark{
  background:#050505;
  color:#f8fafc;
}

body.template-restaurant-dark .site-header{
  background:linear-gradient(90deg,#000000,#111827,#000000);
  border-bottom:2px solid #d4af37;
  box-shadow:0 10px 30px rgba(0,0,0,.55);
}

body.template-restaurant-dark .site-logo{
  color:#f8fafc;
  text-shadow:0 2px 18px rgba(212,175,55,.25);
}

body.template-restaurant-dark .site-header nav a{
  color:#facc15;
  font-weight:900;
}

body.template-restaurant-dark .hero{
  min-height:88vh;
  background:
    radial-gradient(circle at top right,rgba(212,175,55,.15),transparent 30%),
    linear-gradient(135deg,#020617,#111827,#000000);
  border-bottom:4px solid #d4af37;
}

body.template-restaurant-dark .hero h1{
  color:#ffffff;
  text-shadow:0 12px 40px rgba(0,0,0,.75);
  font-size:clamp(3rem,7vw,6.4rem);
}

body.template-restaurant-dark .hero p{
  color:#d1d5db;
}

body.template-restaurant-dark .cta-button{
  background:linear-gradient(135deg,#d4af37,#facc15);
  color:#111827;
  border:2px solid rgba(255,255,255,.15);
  box-shadow:0 12px 34px rgba(212,175,55,.35);
}

body.template-restaurant-dark .section{
  background:#0f172a;
  border:1px solid rgba(212,175,55,.12);
  border-radius:28px;
  max-width:1180px;
  margin:28px auto;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
}

body.template-restaurant-dark .section h2{
  color:#facc15;
  text-transform:uppercase;
  letter-spacing:.05em;
}

body.template-restaurant-dark .service-card,
body.template-restaurant-dark .testimonial-card,
body.template-restaurant-dark .gallery-item,
body.template-restaurant-dark .nwp-menu-thumb{
  background:#111827;
  border:1px solid rgba(212,175,55,.18);
  box-shadow:0 10px 28px rgba(0,0,0,.42);
}

body.template-restaurant-dark .service-card h3,
body.template-restaurant-dark .testimonial-name{
  color:#facc15;
}

body.template-restaurant-dark .testimonial-text,
body.template-restaurant-dark .section p{
  color:#cbd5e1;
}

body.template-restaurant-dark .service-icon{
  filter:drop-shadow(0 6px 16px rgba(212,175,55,.24));
}

body.template-restaurant-dark .gallery-item img,
body.template-restaurant-dark .nwp-menu-thumb-img{
  background:#020617;
}

body.template-restaurant-dark .contact-section{
  background:linear-gradient(135deg,#000000,#111827);
  border-top:4px solid #d4af37;
  color:#f8fafc;
}

body.template-restaurant-dark .contact-section h2,
body.template-restaurant-dark .contact-section p,
body.template-restaurant-dark .contact-section a{
  color:#f8fafc;
}

@media(max-width:640px){
  body.template-restaurant-dark .section{
    margin:16px 10px;
    border-radius:22px;
  }

  body.template-restaurant-dark .hero{
    min-height:72vh;
  }
}

/* TEMPLATE RESTAURANT NEON */
body.template-restaurant-neon{
  background:#050816;
  color:#f8fafc;
}

body.template-restaurant-neon .site-header{
  background:rgba(3,7,18,.82);
  backdrop-filter:blur(14px);
  border-bottom:2px solid #00e5ff;
  box-shadow:
    0 0 18px rgba(0,229,255,.22),
    0 0 36px rgba(168,85,247,.14);
}

body.template-restaurant-neon .site-logo{
  color:#ffffff;
  text-shadow:
    0 0 12px #00e5ff,
    0 0 24px #a855f7;
}

body.template-restaurant-neon .site-header nav a{
  color:#67e8f9;
  font-weight:900;
  text-shadow:0 0 10px rgba(0,229,255,.45);
}

body.template-restaurant-neon .hero{
  min-height:90vh;
  background:
    radial-gradient(circle at top left,rgba(168,85,247,.28),transparent 28%),
    radial-gradient(circle at top right,rgba(0,229,255,.22),transparent 30%),
    linear-gradient(135deg,#020617,#111827,#000000);
  border-bottom:3px solid #00e5ff;
}

body.template-restaurant-neon .hero h1{
  color:#ffffff;
  font-size:clamp(3rem,7vw,6.6rem);
  text-shadow:
    0 0 18px rgba(0,229,255,.55),
    0 0 42px rgba(168,85,247,.35);
}

body.template-restaurant-neon .hero p{
  color:#c4b5fd;
  font-weight:700;
}

body.template-restaurant-neon .cta-button{
  background:linear-gradient(135deg,#00e5ff,#a855f7);
  color:#020617;
  border:2px solid rgba(255,255,255,.18);
  box-shadow:
    0 0 18px rgba(0,229,255,.38),
    0 0 34px rgba(168,85,247,.28);
}

body.template-restaurant-neon .section{
  background:rgba(15,23,42,.72);
  backdrop-filter:blur(10px);
  border:1px solid rgba(0,229,255,.18);
  border-radius:30px;
  max-width:1180px;
  margin:28px auto;
  box-shadow:
    0 0 18px rgba(0,229,255,.12),
    0 0 36px rgba(168,85,247,.10);
}

body.template-restaurant-neon .section h2{
  color:#67e8f9;
  text-transform:uppercase;
  letter-spacing:.08em;
  text-shadow:0 0 16px rgba(0,229,255,.35);
}

body.template-restaurant-neon .service-card,
body.template-restaurant-neon .testimonial-card,
body.template-restaurant-neon .gallery-item,
body.template-restaurant-neon .nwp-menu-thumb{
  background:rgba(15,23,42,.92);
  border:1px solid rgba(168,85,247,.24);
  box-shadow:
    0 0 16px rgba(0,229,255,.10),
    0 0 28px rgba(168,85,247,.08);
}

body.template-restaurant-neon .service-card h3,
body.template-restaurant-neon .testimonial-name{
  color:#c084fc;
}

body.template-restaurant-neon .testimonial-text,
body.template-restaurant-neon .section p{
  color:#cbd5e1;
}

body.template-restaurant-neon .service-icon{
  filter:
    drop-shadow(0 0 14px rgba(0,229,255,.38))
    drop-shadow(0 0 22px rgba(168,85,247,.28));
}

body.template-restaurant-neon .gallery-item img,
body.template-restaurant-neon .nwp-menu-thumb-img{
  background:#020617;
}

body.template-restaurant-neon .contact-section{
  background:linear-gradient(135deg,#020617,#111827);
  border-top:3px solid #00e5ff;
  color:#f8fafc;
}

body.template-restaurant-neon .contact-section h2,
body.template-restaurant-neon .contact-section p,
body.template-restaurant-neon .contact-section a{
  color:#f8fafc;
}

@media(max-width:640px){
  body.template-restaurant-neon .section{
    margin:16px 10px;
    border-radius:22px;
  }

  body.template-restaurant-neon .hero{
    min-height:74vh;
  }
}

/* TEMPLATE BUSINESS CLEAN */
body.template-business-clean{
  background:#f8fafc;
  color:#0f172a;
}

body.template-business-clean .site-header{
  background:#ffffff;
  color:#0f172a;
  border-bottom:1px solid #e2e8f0;
  box-shadow:0 8px 24px rgba(15,23,42,.06);
}

body.template-business-clean .site-logo{
  color:#0f172a;
}

body.template-business-clean .site-header nav a{
  color:#1e40af;
  font-weight:900;
}

body.template-business-clean .hero{
  min-height:76vh;
  background:
    radial-gradient(circle at top right,rgba(37,99,235,.16),transparent 32%),
    linear-gradient(135deg,#ffffff,#eff6ff);
  color:#0f172a;
  border-bottom:1px solid #dbeafe;
}

body.template-business-clean .hero h1{
  color:#0f172a;
  font-size:clamp(3rem,7vw,6rem);
  letter-spacing:-.04em;
}

body.template-business-clean .hero p{
  color:#475569;
  font-weight:600;
}

body.template-business-clean .cta-button{
  background:#2563eb;
  color:#ffffff;
  box-shadow:0 14px 34px rgba(37,99,235,.25);
}

body.template-business-clean .section{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  max-width:1180px;
  margin:28px auto;
  box-shadow:0 14px 38px rgba(15,23,42,.06);
}

body.template-business-clean .section h2{
  color:#0f172a;
  letter-spacing:-.03em;
}

body.template-business-clean .service-card,
body.template-business-clean .testimonial-card,
body.template-business-clean .gallery-item,
body.template-business-clean .nwp-menu-thumb{
  background:#ffffff;
  border:1px solid #e2e8f0;
  box-shadow:0 10px 28px rgba(15,23,42,.07);
}

body.template-business-clean .service-card h3,
body.template-business-clean .testimonial-name{
  color:#2563eb;
}

body.template-business-clean .testimonial-text,
body.template-business-clean .section p{
  color:#475569;
}

body.template-business-clean .contact-section{
  background:#0f172a;
  color:#ffffff;
}

body.template-business-clean .contact-section h2,
body.template-business-clean .contact-section p,
body.template-business-clean .contact-section a{
  color:#ffffff;
}

@media(max-width:640px){
  body.template-business-clean .section{
    margin:16px 10px;
    border-radius:22px;
  }

  body.template-business-clean .hero{
    min-height:70vh;
  }
}

/* TEMPLATE CONSTRUCTION BOLD */
body.template-construction-bold{
  background:#111111;
  color:#f8fafc;
}

body.template-construction-bold .site-header{
  background:linear-gradient(90deg,#000000,#1a1a1a,#000000);
  border-bottom:4px solid #facc15;
  box-shadow:0 10px 28px rgba(0,0,0,.55);
}

body.template-construction-bold .site-logo{
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:.06em;
}

body.template-construction-bold .site-header nav a{
  color:#facc15;
  font-weight:900;
  text-transform:uppercase;
}

body.template-construction-bold .hero{
  min-height:88vh;
  background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.72)),
    linear-gradient(135deg,#111111,#1f2937,#000000);
  border-bottom:6px solid #facc15;
}

body.template-construction-bold .hero h1{
  color:#ffffff;
  font-size:clamp(3.2rem,8vw,7rem);
  text-transform:uppercase;
  letter-spacing:.04em;
  text-shadow:0 10px 34px rgba(0,0,0,.75);
}

body.template-construction-bold .hero p{
  color:#fde68a;
  font-weight:800;
  text-transform:uppercase;
}

body.template-construction-bold .cta-button{
  background:#facc15;
  color:#111111;
  border:2px solid #ffffff;
  font-weight:900;
  text-transform:uppercase;
  box-shadow:0 14px 34px rgba(250,204,21,.34);
}

body.template-construction-bold .section{
  background:#1a1a1a;
  border-left:8px solid #facc15;
  border-radius:0;
  max-width:1220px;
  margin:28px auto;
  box-shadow:0 12px 36px rgba(0,0,0,.34);
}

body.template-construction-bold .section h2{
  color:#facc15;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:clamp(2.2rem,5vw,3.6rem);
}

body.template-construction-bold .service-card,
body.template-construction-bold .testimonial-card,
body.template-construction-bold .gallery-item,
body.template-construction-bold .nwp-menu-thumb{
  background:#222222;
  border:2px solid rgba(250,204,21,.18);
  border-radius:0;
  box-shadow:0 10px 24px rgba(0,0,0,.38);
}

body.template-construction-bold .service-card h3,
body.template-construction-bold .testimonial-name{
  color:#facc15;
  text-transform:uppercase;
}

body.template-construction-bold .testimonial-text,
body.template-construction-bold .section p{
  color:#d1d5db;
}

body.template-construction-bold .service-icon{
  filter:drop-shadow(0 6px 14px rgba(250,204,21,.28));
}

body.template-construction-bold .gallery-item img,
body.template-construction-bold .nwp-menu-thumb-img{
  background:#111111;
}

body.template-construction-bold .contact-section{
  background:#000000;
  border-top:6px solid #facc15;
  color:#ffffff;
}

body.template-construction-bold .contact-section h2,
body.template-construction-bold .contact-section p,
body.template-construction-bold .contact-section a{
  color:#ffffff;
}

@media(max-width:640px){
  body.template-construction-bold .section{
    margin:16px 8px;
    border-left:4px solid #facc15;
  }

  body.template-construction-bold .hero{
    min-height:74vh;
  }
}

/* TEMPLATE BARBER LUXURY */
body.template-barber-luxury{
  background:#050505;
  color:#f8fafc;
}

body.template-barber-luxury .site-header{
  background:rgba(0,0,0,.86);
  backdrop-filter:blur(16px);
  border-bottom:2px solid #d4af37;
  box-shadow:0 12px 34px rgba(0,0,0,.55);
}

body.template-barber-luxury .site-logo{
  color:#f8fafc;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-shadow:0 2px 14px rgba(212,175,55,.24);
}

body.template-barber-luxury .site-header nav a{
  color:#d4af37;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

body.template-barber-luxury .hero{
  min-height:92vh;
  background:
    radial-gradient(circle at top right,rgba(212,175,55,.14),transparent 28%),
    linear-gradient(135deg,#000000,#111111,#020617);
  border-bottom:2px solid #d4af37;
}

body.template-barber-luxury .hero h1{
  color:#ffffff;
  font-size:clamp(3.2rem,8vw,7rem);
  text-transform:uppercase;
  letter-spacing:.06em;
  text-shadow:
    0 0 12px rgba(212,175,55,.18),
    0 10px 36px rgba(0,0,0,.75);
}

body.template-barber-luxury .hero p{
  color:#d1d5db;
  font-weight:600;
  max-width:760px;
}

body.template-barber-luxury .cta-button{
  background:linear-gradient(135deg,#d4af37,#facc15);
  color:#111111;
  border:2px solid rgba(255,255,255,.16);
  font-weight:900;
  box-shadow:
    0 0 16px rgba(212,175,55,.24),
    0 14px 34px rgba(0,0,0,.42);
}

body.template-barber-luxury .section{
  background:rgba(17,17,17,.92);
  backdrop-filter:blur(10px);
  border:1px solid rgba(212,175,55,.18);
  border-radius:34px;
  max-width:1180px;
  margin:30px auto;
  box-shadow:
    0 0 18px rgba(212,175,55,.08),
    0 18px 42px rgba(0,0,0,.42);
}

body.template-barber-luxury .section h2{
  color:#facc15;
  text-transform:uppercase;
  letter-spacing:.08em;
  text-align:center;
}

body.template-barber-luxury .service-card,
body.template-barber-luxury .testimonial-card,
body.template-barber-luxury .gallery-item,
body.template-barber-luxury .nwp-menu-thumb{
  background:linear-gradient(135deg,#111111,#1f2937);
  border:1px solid rgba(212,175,55,.18);
  border-radius:24px;
  box-shadow:
    0 10px 28px rgba(0,0,0,.44),
    0 0 12px rgba(212,175,55,.05);
}

body.template-barber-luxury .service-card h3,
body.template-barber-luxury .testimonial-name{
  color:#facc15;
  letter-spacing:.03em;
}

body.template-barber-luxury .testimonial-text,
body.template-barber-luxury .section p{
  color:#d1d5db;
}

body.template-barber-luxury .service-icon{
  filter:
    drop-shadow(0 0 10px rgba(212,175,55,.22))
    drop-shadow(0 0 20px rgba(212,175,55,.12));
}

body.template-barber-luxury .gallery-item img,
body.template-barber-luxury .nwp-menu-thumb-img{
  background:#000000;
}

body.template-barber-luxury .contact-section{
  background:linear-gradient(135deg,#000000,#111827);
  border-top:3px solid #d4af37;
  color:#f8fafc;
}

body.template-barber-luxury .contact-section h2,
body.template-barber-luxury .contact-section p,
body.template-barber-luxury .contact-section a{
  color:#f8fafc;
}

@media(max-width:640px){
  body.template-barber-luxury .section{
    margin:16px 10px;
    border-radius:24px;
  }

  body.template-barber-luxury .hero{
    min-height:76vh;
  }
}

/* TEMPLATE COFFEE WARM */
body.template-coffee-warm{
  background:#f6efe7;
  color:#3b2a22;
}

body.template-coffee-warm .site-header{
  background:linear-gradient(90deg,#4b2e24,#6f4e37,#4b2e24);
  border-bottom:3px solid #d6a77a;
  box-shadow:0 10px 28px rgba(75,46,36,.28);
}

body.template-coffee-warm .site-logo{
  color:#fff7ed;
  letter-spacing:.03em;
}

body.template-coffee-warm .site-header nav a{
  color:#fde7cf;
  font-weight:800;
}

body.template-coffee-warm .hero{
  min-height:84vh;
  background:
    radial-gradient(circle at top right,rgba(214,167,122,.18),transparent 30%),
    linear-gradient(135deg,#4b2e24,#6f4e37,#8b5e3c);
  border-bottom:4px solid #d6a77a;
}

body.template-coffee-warm .hero h1{
  color:#fffaf5;
  font-size:clamp(3rem,7vw,6rem);
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}

body.template-coffee-warm .hero p{
  color:#fce7d3;
  font-weight:600;
}

body.template-coffee-warm .cta-button{
  background:linear-gradient(135deg,#d6a77a,#c08457);
  color:#2b1d17;
  border:2px solid rgba(255,255,255,.18);
  font-weight:900;
  box-shadow:0 14px 34px rgba(192,132,87,.28);
}

body.template-coffee-warm .section{
  background:#fffaf5;
  border:1px solid rgba(111,78,55,.10);
  border-radius:28px;
  max-width:1180px;
  margin:28px auto;
  box-shadow:0 14px 36px rgba(75,46,36,.08);
}

body.template-coffee-warm .section h2{
  color:#6f4e37;
  letter-spacing:.02em;
}

body.template-coffee-warm .service-card,
body.template-coffee-warm .testimonial-card,
body.template-coffee-warm .gallery-item,
body.template-coffee-warm .nwp-menu-thumb{
  background:#fff7ed;
  border:1px solid rgba(192,132,87,.16);
  border-radius:24px;
  box-shadow:0 10px 28px rgba(75,46,36,.08);
}

body.template-coffee-warm .service-card h3,
body.template-coffee-warm .testimonial-name{
  color:#8b5e3c;
}

body.template-coffee-warm .testimonial-text,
body.template-coffee-warm .section p{
  color:#5b4638;
}

body.template-coffee-warm .service-icon{
  filter:drop-shadow(0 6px 12px rgba(192,132,87,.18));
}

body.template-coffee-warm .gallery-item img,
body.template-coffee-warm .nwp-menu-thumb-img{
  background:#f5ebe0;
}

body.template-coffee-warm .contact-section{
  background:linear-gradient(135deg,#4b2e24,#6f4e37);
  border-top:4px solid #d6a77a;
  color:#fff7ed;
}

body.template-coffee-warm .contact-section h2,
body.template-coffee-warm .contact-section p,
body.template-coffee-warm .contact-section a{
  color:#fff7ed;
}

@media(max-width:640px){
  body.template-coffee-warm .section{
    margin:16px 10px;
    border-radius:22px;
  }

  body.template-coffee-warm .hero{
    min-height:72vh;
  }
}

/* TEMPLATE MODERN MINIMAL */
body.template-modern-minimal{
  background:#ffffff;
  color:#0f172a;
}

body.template-modern-minimal .site-header{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid #e5e7eb;
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}

body.template-modern-minimal .site-logo{
  color:#0f172a;
  letter-spacing:-.03em;
}

body.template-modern-minimal .site-header nav a{
  color:#334155;
  font-weight:800;
}

body.template-modern-minimal .hero{
  min-height:92vh;
  background:
    radial-gradient(circle at top right,rgba(148,163,184,.10),transparent 30%),
    linear-gradient(135deg,#ffffff,#f8fafc);
  border-bottom:1px solid #e5e7eb;
}

body.template-modern-minimal .hero h1{
  color:#0f172a;
  font-size:clamp(3.5rem,8vw,7rem);
  letter-spacing:-.08em;
  line-height:.95;
  max-width:1000px;
}

body.template-modern-minimal .hero p{
  color:#475569;
  font-size:1.2rem;
  max-width:760px;
}

body.template-modern-minimal .cta-button{
  background:#0f172a;
  color:#ffffff;
  border-radius:999px;
  box-shadow:0 12px 28px rgba(15,23,42,.12);
}

body.template-modern-minimal .section{
  background:#ffffff;
  border:none;
  border-radius:34px;
  max-width:1180px;
  margin:36px auto;
  box-shadow:0 12px 38px rgba(15,23,42,.05);
}

body.template-modern-minimal .section h2{
  color:#0f172a;
  font-size:clamp(2.4rem,5vw,4rem);
  letter-spacing:-.06em;
}

body.template-modern-minimal .service-card,
body.template-modern-minimal .testimonial-card,
body.template-modern-minimal .gallery-item,
body.template-modern-minimal .nwp-menu-thumb{
  background:#ffffff;
  border:none;
  border-radius:28px;
  box-shadow:0 10px 28px rgba(15,23,42,.06);
}

body.template-modern-minimal .service-card h3,
body.template-modern-minimal .testimonial-name{
  color:#0f172a;
}

body.template-modern-minimal .testimonial-text,
body.template-modern-minimal .section p{
  color:#64748b;
}

body.template-modern-minimal .service-icon{
  filter:drop-shadow(0 4px 10px rgba(15,23,42,.08));
}

body.template-modern-minimal .gallery-item img,
body.template-modern-minimal .nwp-menu-thumb-img{
  background:#f8fafc;
}

body.template-modern-minimal .contact-section{
  background:#f8fafc;
  border-top:1px solid #e5e7eb;
  color:#0f172a;
}

body.template-modern-minimal .contact-section h2,
body.template-modern-minimal .contact-section p,
body.template-modern-minimal .contact-section a{
  color:#0f172a;
}

@media(max-width:640px){
  body.template-modern-minimal .section{
    margin:16px 10px;
    border-radius:24px;
  }

  body.template-modern-minimal .hero{
    min-height:76vh;
  }

  body.template-modern-minimal .hero h1{
    letter-spacing:-.05em;
  }
}

/* TEMPLATE LUXURY GOLD */
body.template-luxury-gold{
  background:#060606;
  color:#f8fafc;
}

body.template-luxury-gold .site-header{
  background:linear-gradient(90deg,#000000,#111111,#000000);
  border-bottom:1px solid #d4af37;
  box-shadow:
    0 10px 30px rgba(0,0,0,.62),
    0 0 20px rgba(212,175,55,.08);
}

body.template-luxury-gold .site-logo{
  color:#f8fafc;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-shadow:
    0 0 10px rgba(212,175,55,.18),
    0 0 24px rgba(212,175,55,.10);
}

body.template-luxury-gold .site-header nav a{
  color:#f5d77b;
  font-weight:800;
  letter-spacing:.04em;
}

body.template-luxury-gold .hero{
  min-height:94vh;
  background:
    radial-gradient(circle at top right,rgba(212,175,55,.12),transparent 28%),
    radial-gradient(circle at bottom left,rgba(212,175,55,.08),transparent 30%),
    linear-gradient(135deg,#020202,#0f172a,#000000);
  border-bottom:2px solid #d4af37;
}

body.template-luxury-gold .hero h1{
  color:#ffffff;
  font-size:clamp(3.6rem,8vw,7.4rem);
  letter-spacing:.08em;
  text-transform:uppercase;
  text-shadow:
    0 0 16px rgba(212,175,55,.12),
    0 12px 42px rgba(0,0,0,.78);
}

body.template-luxury-gold .hero p{
  color:#e5e7eb;
  font-size:1.2rem;
  max-width:760px;
}

body.template-luxury-gold .cta-button{
  background:linear-gradient(135deg,#d4af37,#facc15);
  color:#111111;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:
    0 0 16px rgba(212,175,55,.18),
    0 14px 34px rgba(0,0,0,.42);
}

body.template-luxury-gold .section{
  background:linear-gradient(135deg,#111111,#1a1a1a);
  border:1px solid rgba(212,175,55,.12);
  border-radius:38px;
  max-width:1180px;
  margin:34px auto;
  box-shadow:
    0 14px 40px rgba(0,0,0,.52),
    0 0 20px rgba(212,175,55,.06);
}

body.template-luxury-gold .section h2{
  color:#f5d77b;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:clamp(2.5rem,5vw,4.4rem);
}

body.template-luxury-gold .service-card,
body.template-luxury-gold .testimonial-card,
body.template-luxury-gold .gallery-item,
body.template-luxury-gold .nwp-menu-thumb{
  background:linear-gradient(135deg,#111111,#1f2937);
  border:1px solid rgba(212,175,55,.14);
  border-radius:30px;
  box-shadow:
    0 10px 30px rgba(0,0,0,.48),
    0 0 12px rgba(212,175,55,.05);
}

body.template-luxury-gold .service-card h3,
body.template-luxury-gold .testimonial-name{
  color:#f5d77b;
  letter-spacing:.04em;
}

body.template-luxury-gold .testimonial-text,
body.template-luxury-gold .section p{
  color:#d1d5db;
}

body.template-luxury-gold .service-icon{
  filter:
    drop-shadow(0 0 10px rgba(212,175,55,.18))
    drop-shadow(0 0 22px rgba(212,175,55,.08));
}

body.template-luxury-gold .gallery-item img,
body.template-luxury-gold .nwp-menu-thumb-img{
  background:#020617;
}

body.template-luxury-gold .contact-section{
  background:linear-gradient(135deg,#000000,#111111);
  border-top:2px solid #d4af37;
  color:#f8fafc;
}

body.template-luxury-gold .contact-section h2,
body.template-luxury-gold .contact-section p,
body.template-luxury-gold .contact-section a{
  color:#f8fafc;
}

@media(max-width:640px){
  body.template-luxury-gold .section{
    margin:16px 10px;
    border-radius:26px;
  }

  body.template-luxury-gold .hero{
    min-height:76vh;
  }
}


/* BUSINESS HOURS PUBLIC */
#businessHoursPublic{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.business-hours-public-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:14px 18px;
  border:1px solid rgba(148,163,184,.18);
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.business-hours-public-row strong{
  text-transform:capitalize;
}

@media(max-width:640px){

  .business-hours-public-row{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* PUBLIC MOBILE HAMBURGER MENU */
.public-menu-btn{
  display:none;
  border:none;
  background:rgba(255,255,255,.12);
  color:inherit;
  font-size:30px;
  width:46px;
  height:46px;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
}

@media(max-width:760px){
  .site-header{
    position:sticky;
    top:0;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }

  .public-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .site-header nav{
    position:absolute;
    top:100%;
    left:12px;
    right:12px;
    display:none;
    flex-direction:column;
    gap:0;
    padding:10px;
    background:rgba(15,23,42,.96);
    border-radius:16px;
    box-shadow:0 18px 38px rgba(0,0,0,.28);
    z-index:99999;
  }

  .site-header nav.open{
    display:flex !important;
  }

  .site-header nav a{
    display:block;
    width:100%;
    padding:14px 16px;
    border-radius:12px;
    color:#ffffff !important;
    text-align:left;
  }

  .site-header nav a:hover{
    background:rgba(255,255,255,.10);
  }
}


/* PUBLIC CONTACT FORM */
.public-contact-form-wrapper{
  max-width:760px;
  margin:0 auto;
}

.public-contact-subtitle{
  opacity:.82;
  margin-top:10px;
  margin-bottom:22px;
}

.public-contact-form{
  display:grid;
  gap:16px;
}

.public-contact-form input,
.public-contact-form textarea{
  width:100%;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.25);
  background:rgba(255,255,255,.06);
  color:inherit;
  font-size:16px;
}

.public-contact-form textarea{
  min-height:160px;
  resize:vertical;
}

.public-contact-form input::placeholder,
.public-contact-form textarea::placeholder{
  color:rgba(255,255,255,.55);
}

#publicLeadMessage{
  margin-top:10px;
  font-weight:800;
}

@media(max-width:640px){

  .public-contact-form input,
  .public-contact-form textarea{
    padding:14px;
  }
}





/* DYNAMIC THEMED CONTACT BUTTON */
.themed-contact-btn{
  position:relative;
  overflow:hidden;
  border:none;
  border-radius:18px;
  padding:18px 24px;
  font-size:17px;
  font-weight:900;
  letter-spacing:-0.02em;
  cursor:pointer;
  color:#ffffff;
  background:
    linear-gradient(
      135deg,
      var(--primary-color,#2563eb),
      var(--secondary-color,#7c3aed)
    );
  box-shadow:
    0 12px 30px rgba(0,0,0,.28),
    0 0 22px rgba(255,255,255,.08);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    opacity .18s ease;
}

.themed-contact-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.20) 45%,
      transparent 85%
    );
  transform:translateX(-120%);
  transition:transform .6s ease;
}

.themed-contact-btn:hover{
  transform:translateY(-2px) scale(1.01);
  box-shadow:
    0 18px 36px rgba(0,0,0,.34),
    0 0 28px rgba(255,255,255,.12);
}

.themed-contact-btn:hover::before{
  transform:translateX(120%);
}

.themed-contact-btn:active{
  transform:scale(.98);
}

@media(max-width:640px){

  .themed-contact-btn{
    width:100%;
    padding:16px 20px;
    font-size:16px;
  }
}

/* TEMPLATE: NIGHTCLUB ULTRA */
body.template-nightclub-ultra{
  background:
    radial-gradient(circle at 20% 10%, rgba(0,245,255,.20), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(255,0,255,.22), transparent 34%),
    linear-gradient(135deg,#030014,#090018 45%,#020617);
  color:#ffffff;
}

body.template-nightclub-ultra .site-header{
  background:rgba(3,0,20,.86);
  border-bottom:1px solid rgba(0,245,255,.28);
  box-shadow:0 0 30px rgba(255,0,255,.18);
  backdrop-filter:blur(14px);
}

body.template-nightclub-ultra .site-logo{
  color:#00f5ff;
  text-shadow:0 0 18px rgba(0,245,255,.75);
}

body.template-nightclub-ultra .site-header nav a{
  color:#f5d0fe;
}

body.template-nightclub-ultra .hero{
  background:
    radial-gradient(circle at 30% 30%, rgba(0,245,255,.22), transparent 34%),
    radial-gradient(circle at 75% 20%, rgba(255,0,255,.25), transparent 32%),
    linear-gradient(135deg,#090018,#020617);
}

body.template-nightclub-ultra .hero h1{
  color:#ffffff;
  text-shadow:
    0 0 18px rgba(0,245,255,.75),
    0 0 32px rgba(255,0,255,.55);
}

body.template-nightclub-ultra .hero p{
  color:#e9d5ff;
}

body.template-nightclub-ultra .cta-button,
body.template-nightclub-ultra .themed-contact-btn{
  background:linear-gradient(135deg,#00f5ff,#ff00ff);
  color:#050014;
  box-shadow:
    0 0 22px rgba(0,245,255,.45),
    0 0 34px rgba(255,0,255,.34);
}

body.template-nightclub-ultra .section{
  background:rgba(3,0,20,.74);
  border-top:1px solid rgba(0,245,255,.12);
}

body.template-nightclub-ultra .section h2{
  color:#00f5ff;
  text-shadow:0 0 18px rgba(0,245,255,.45);
}

body.template-nightclub-ultra .service-card,
body.template-nightclub-ultra .testimonial-card,
body.template-nightclub-ultra .gallery-item,
body.template-nightclub-ultra .nwp-menu-thumb{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(0,245,255,.25);
  box-shadow:
    0 16px 40px rgba(0,0,0,.34),
    inset 0 0 20px rgba(255,0,255,.06);
}

body.template-nightclub-ultra .service-card h3,
body.template-nightclub-ultra .testimonial-name{
  color:#f0abfc;
}

body.template-nightclub-ultra .section p,
body.template-nightclub-ultra .testimonial-text{
  color:#e9d5ff;
}

body.template-nightclub-ultra .service-icon{
  color:#00f5ff;
  text-shadow:0 0 14px rgba(0,245,255,.75);
}

body.template-nightclub-ultra .contact-section{
  background:linear-gradient(135deg,#090018,#0f0326);
  border-top:1px solid rgba(255,0,255,.28);
}

body.template-nightclub-ultra .contact-section h2,
body.template-nightclub-ultra .contact-section p,
body.template-nightclub-ultra .contact-section a{
  color:#ffffff;
}


/* TEMPLATE: DETAILING CARBON */
body.template-detailing-carbon{
  background:
    radial-gradient(circle at 20% 15%, rgba(239,68,68,.16), transparent 30%),
    linear-gradient(135deg,#050505,#111827 45%,#030712);
  color:#f8fafc;
}

body.template-detailing-carbon .site-header{
  background:rgba(5,5,5,.88);
  border-bottom:1px solid rgba(239,68,68,.28);
  backdrop-filter:blur(12px);
  box-shadow:0 0 24px rgba(239,68,68,.12);
}

body.template-detailing-carbon .site-logo{
  color:#ef4444;
  text-shadow:0 0 12px rgba(239,68,68,.55);
}

body.template-detailing-carbon .hero{
  background:
    linear-gradient(135deg,rgba(0,0,0,.88),rgba(17,24,39,.92)),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 2px,
      transparent 2px,
      transparent 10px
    );
}

body.template-detailing-carbon .hero h1{
  color:#ffffff;
  text-shadow:
    0 0 16px rgba(239,68,68,.45),
    0 0 28px rgba(255,255,255,.12);
}

body.template-detailing-carbon .hero p{
  color:#d1d5db;
}

body.template-detailing-carbon .cta-button,
body.template-detailing-carbon .themed-contact-btn{
  background:linear-gradient(135deg,#ef4444,#991b1b);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 14px 34px rgba(239,68,68,.22),
    inset 0 1px 0 rgba(255,255,255,.08);
}

body.template-detailing-carbon .section{
  background:rgba(10,10,10,.86);
  border-top:1px solid rgba(255,255,255,.05);
}

body.template-detailing-carbon .section h2{
  color:#ef4444;
  text-transform:uppercase;
  letter-spacing:.04em;
}

body.template-detailing-carbon .service-card,
body.template-detailing-carbon .testimonial-card,
body.template-detailing-carbon .gallery-item,
body.template-detailing-carbon .nwp-menu-thumb{
  background:
    linear-gradient(135deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04);
}

body.template-detailing-carbon .service-card:hover,
body.template-detailing-carbon .gallery-item:hover{
  transform:translateY(-4px);
  border-color:rgba(239,68,68,.28);
  box-shadow:
    0 22px 48px rgba(0,0,0,.52),
    0 0 24px rgba(239,68,68,.12);
}

body.template-detailing-carbon .service-card h3,
body.template-detailing-carbon .testimonial-name{
  color:#ffffff;
}

body.template-detailing-carbon .section p,
body.template-detailing-carbon .testimonial-text{
  color:#d1d5db;
}

body.template-detailing-carbon .service-icon{
  color:#ef4444;
}

body.template-detailing-carbon .contact-section{
  background:
    linear-gradient(135deg,#050505,#111827);
  border-top:1px solid rgba(239,68,68,.22);
}

body.template-detailing-carbon .contact-section h2{
  color:#ffffff;
}


/* TEMPLATE: LAWFIRM DARK */
body.template-lawfirm-dark{
  background:
    linear-gradient(135deg,#0f172a,#111827 45%,#1e293b);
  color:#f8fafc;
}

body.template-lawfirm-dark .site-header{
  background:rgba(15,23,42,.92);
  border-bottom:1px solid rgba(212,175,55,.22);
  backdrop-filter:blur(10px);
}

body.template-lawfirm-dark .site-logo{
  color:#d4af37;
  letter-spacing:.04em;
}

body.template-lawfirm-dark .site-header nav a{
  color:#e5e7eb;
}

body.template-lawfirm-dark .hero{
  background:
    linear-gradient(
      135deg,
      rgba(15,23,42,.95),
      rgba(17,24,39,.92)
    );
}

body.template-lawfirm-dark .hero h1{
  color:#ffffff;
  font-weight:900;
  letter-spacing:-0.03em;
}

body.template-lawfirm-dark .hero p{
  color:#cbd5e1;
}

body.template-lawfirm-dark .cta-button,
body.template-lawfirm-dark .themed-contact-btn{
  background:linear-gradient(135deg,#d4af37,#b0892f);
  color:#111827;
  font-weight:900;
  box-shadow:
    0 12px 30px rgba(212,175,55,.18);
}

body.template-lawfirm-dark .section{
  background:rgba(15,23,42,.88);
  border-top:1px solid rgba(255,255,255,.04);
}

body.template-lawfirm-dark .section h2{
  color:#d4af37;
  text-transform:uppercase;
  letter-spacing:.05em;
}

body.template-lawfirm-dark .service-card,
body.template-lawfirm-dark .testimonial-card,
body.template-lawfirm-dark .gallery-item,
body.template-lawfirm-dark .nwp-menu-thumb{
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.01)
    );
  border:1px solid rgba(212,175,55,.10);
  box-shadow:
    0 12px 36px rgba(0,0,0,.30);
}

body.template-lawfirm-dark .service-card h3,
body.template-lawfirm-dark .testimonial-name{
  color:#ffffff;
}

body.template-lawfirm-dark .section p,
body.template-lawfirm-dark .testimonial-text{
  color:#cbd5e1;
}

body.template-lawfirm-dark .service-icon{
  color:#d4af37;
}

body.template-lawfirm-dark .contact-section{
  background:
    linear-gradient(135deg,#111827,#0f172a);
  border-top:1px solid rgba(212,175,55,.18);
}

body.template-lawfirm-dark .contact-section h2{
  color:#ffffff;
}


/* TEMPLATE: ROOFING STEEL */
body.template-roofing-steel{
  background:
    linear-gradient(135deg,#1e293b,#334155 45%,#0f172a);
  color:#f8fafc;
}

body.template-roofing-steel .site-header{
  background:rgba(15,23,42,.92);
  border-bottom:2px solid #facc15;
}

body.template-roofing-steel .site-logo{
  color:#facc15;
  text-transform:uppercase;
  letter-spacing:.06em;
}

body.template-roofing-steel .hero{
  background:
    linear-gradient(
      135deg,
      rgba(15,23,42,.95),
      rgba(51,65,85,.92)
    );
}

body.template-roofing-steel .hero h1{
  color:#ffffff;
  text-transform:uppercase;
}

body.template-roofing-steel .hero p{
  color:#cbd5e1;
}

body.template-roofing-steel .cta-button,
body.template-roofing-steel .themed-contact-btn{
  background:linear-gradient(135deg,#facc15,#ca8a04);
  color:#111827;
  font-weight:900;
}

body.template-roofing-steel .section{
  background:rgba(30,41,59,.88);
}

body.template-roofing-steel .section h2{
  color:#facc15;
  text-transform:uppercase;
}

body.template-roofing-steel .service-card,
body.template-roofing-steel .testimonial-card,
body.template-roofing-steel .gallery-item,
body.template-roofing-steel .nwp-menu-thumb{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(250,204,21,.16);
  box-shadow:0 12px 32px rgba(0,0,0,.28);
}

body.template-roofing-steel .service-icon{
  color:#facc15;
}

body.template-roofing-steel .section p,
body.template-roofing-steel .testimonial-text{
  color:#e2e8f0;
}

body.template-roofing-steel .contact-section{
  background:
    linear-gradient(135deg,#0f172a,#334155);
}


/* OVERRIDE: ROOFING STEEL MORE INDUSTRIAL */
body.template-roofing-steel{
  background:
    repeating-linear-gradient(
      45deg,
      rgba(250,204,21,.06) 0px,
      rgba(250,204,21,.06) 10px,
      transparent 10px,
      transparent 24px
    ),
    linear-gradient(135deg,#111827,#475569 48%,#1f2937);
}

body.template-roofing-steel .site-header{
  background:#111827;
  border-bottom:4px solid #facc15;
  box-shadow:0 8px 0 rgba(250,204,21,.18);
}

body.template-roofing-steel .hero{
  background:
    linear-gradient(135deg,rgba(17,24,39,.88),rgba(71,85,105,.92)),
    repeating-linear-gradient(
      -45deg,
      rgba(250,204,21,.12) 0px,
      rgba(250,204,21,.12) 12px,
      transparent 12px,
      transparent 28px
    );
  border-bottom:6px solid #facc15;
}

body.template-roofing-steel .hero h1{
  color:#facc15;
  text-shadow:4px 4px 0 rgba(0,0,0,.45);
  letter-spacing:.02em;
}

body.template-roofing-steel .cta-button,
body.template-roofing-steel .themed-contact-btn{
  background:
    linear-gradient(135deg,#facc15,#f97316);
  color:#111827;
  border:2px solid #111827;
  box-shadow:6px 6px 0 rgba(0,0,0,.45);
}

body.template-roofing-steel .section h2{
  color:#facc15;
  text-shadow:3px 3px 0 rgba(0,0,0,.35);
}

body.template-roofing-steel .service-card,
body.template-roofing-steel .testimonial-card,
body.template-roofing-steel .gallery-item,
body.template-roofing-steel .nwp-menu-thumb{
  background:
    linear-gradient(135deg,rgba(51,65,85,.92),rgba(17,24,39,.92));
  border:2px solid rgba(250,204,21,.35);
  box-shadow:8px 8px 0 rgba(0,0,0,.32);
}


/* TEMPLATE: TREE SERVICE HEAVY */
body.template-treeservice-heavy{
  background:
    radial-gradient(circle at 20% 20%, rgba(34,197,94,.18), transparent 32%),
    linear-gradient(135deg,#052e16,#0f172a 55%,#020617);
  color:#f8fafc;
}

body.template-treeservice-heavy .site-header{
  background:rgba(5,46,22,.92);
  border-bottom:3px solid #22c55e;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}

body.template-treeservice-heavy .site-logo{
  color:#86efac;
  text-transform:uppercase;
  letter-spacing:.05em;
  text-shadow:0 0 16px rgba(34,197,94,.45);
}

body.template-treeservice-heavy .hero{
  background:
    linear-gradient(135deg,rgba(5,46,22,.94),rgba(15,23,42,.92)),
    repeating-linear-gradient(
      90deg,
      rgba(34,197,94,.08) 0px,
      rgba(34,197,94,.08) 8px,
      transparent 8px,
      transparent 22px
    );
  border-bottom:5px solid #22c55e;
}

body.template-treeservice-heavy .hero h1{
  color:#86efac;
  text-shadow:3px 3px 0 rgba(0,0,0,.45);
  text-transform:uppercase;
}

body.template-treeservice-heavy .hero p{
  color:#dcfce7;
}

body.template-treeservice-heavy .cta-button,
body.template-treeservice-heavy .themed-contact-btn{
  background:linear-gradient(135deg,#22c55e,#15803d);
  color:#052e16;
  font-weight:950;
  border:2px solid rgba(220,252,231,.35);
  box-shadow:0 16px 34px rgba(34,197,94,.18);
}

body.template-treeservice-heavy .section{
  background:rgba(5,46,22,.82);
  border-top:1px solid rgba(34,197,94,.22);
}

body.template-treeservice-heavy .section h2{
  color:#86efac;
  text-transform:uppercase;
}

body.template-treeservice-heavy .service-card,
body.template-treeservice-heavy .testimonial-card,
body.template-treeservice-heavy .gallery-item,
body.template-treeservice-heavy .nwp-menu-thumb{
  background:linear-gradient(135deg,rgba(20,83,45,.86),rgba(2,6,23,.82));
  border:2px solid rgba(34,197,94,.24);
  box-shadow:8px 8px 0 rgba(0,0,0,.28);
}

body.template-treeservice-heavy .service-icon{
  color:#86efac;
}

body.template-treeservice-heavy .section p,
body.template-treeservice-heavy .testimonial-text{
  color:#dcfce7;
}

body.template-treeservice-heavy .contact-section{
  background:linear-gradient(135deg,#052e16,#020617);
  border-top:4px solid #22c55e;
}


/* TEMPLATE: HVAC TECH */
body.template-hvac-tech{
  background:
    radial-gradient(circle at 80% 10%, rgba(14,165,233,.18), transparent 30%),
    linear-gradient(135deg,#082f49,#0f172a 50%,#020617);
  color:#f8fafc;
}

body.template-hvac-tech .site-header{
  background:rgba(8,47,73,.92);
  border-bottom:3px solid #38bdf8;
  backdrop-filter:blur(12px);
}

body.template-hvac-tech .site-logo{
  color:#7dd3fc;
  text-shadow:0 0 16px rgba(56,189,248,.45);
}

body.template-hvac-tech .hero{
  background:
    linear-gradient(135deg,rgba(8,47,73,.94),rgba(15,23,42,.92)),
    radial-gradient(circle at 20% 20%, rgba(56,189,248,.12), transparent 35%);
  border-bottom:4px solid #38bdf8;
}

body.template-hvac-tech .hero h1{
  color:#e0f2fe;
  text-shadow:0 0 18px rgba(56,189,248,.35);
}

body.template-hvac-tech .hero p{
  color:#bae6fd;
}

body.template-hvac-tech .cta-button,
body.template-hvac-tech .themed-contact-btn{
  background:linear-gradient(135deg,#38bdf8,#0ea5e9);
  color:#082f49;
  font-weight:900;
  box-shadow:
    0 14px 34px rgba(56,189,248,.20);
}

body.template-hvac-tech .section{
  background:rgba(8,47,73,.78);
  border-top:1px solid rgba(56,189,248,.18);
}

body.template-hvac-tech .section h2{
  color:#7dd3fc;
  text-transform:uppercase;
}

body.template-hvac-tech .service-card,
body.template-hvac-tech .testimonial-card,
body.template-hvac-tech .gallery-item,
body.template-hvac-tech .nwp-menu-thumb{
  background:
    linear-gradient(135deg,rgba(14,165,233,.08),rgba(15,23,42,.82));
  border:1px solid rgba(56,189,248,.20);
  box-shadow:
    0 12px 32px rgba(0,0,0,.28);
}

body.template-hvac-tech .service-card:hover,
body.template-hvac-tech .gallery-item:hover{
  transform:translateY(-4px);
  box-shadow:
    0 18px 38px rgba(0,0,0,.36),
    0 0 24px rgba(56,189,248,.12);
}

body.template-hvac-tech .service-icon{
  color:#38bdf8;
}

body.template-hvac-tech .section p,
body.template-hvac-tech .testimonial-text{
  color:#dbeafe;
}

body.template-hvac-tech .contact-section{
  background:
    linear-gradient(135deg,#082f49,#020617);
  border-top:4px solid #38bdf8;
}


/* TEMPLATE: PLUMBING CLEAN */
body.template-plumbing-clean{
  background:
    linear-gradient(135deg,#e0f2fe,#f8fafc 45%,#dbeafe);
  color:#0f172a;
}

body.template-plumbing-clean .site-header{
  background:rgba(255,255,255,.92);
  border-bottom:3px solid #38bdf8;
  backdrop-filter:blur(12px);
  box-shadow:0 6px 24px rgba(0,0,0,.08);
}

body.template-plumbing-clean .site-logo{
  color:#0284c7;
  text-shadow:none;
}

body.template-plumbing-clean .site-header nav a{
  color:#0f172a;
}

body.template-plumbing-clean .hero{
  background:
    radial-gradient(circle at 15% 20%, rgba(56,189,248,.12), transparent 30%),
    linear-gradient(135deg,#ffffff,#e0f2fe);
  border-bottom:4px solid #38bdf8;
}

body.template-plumbing-clean .hero h1{
  color:#0f172a;
  text-shadow:none;
}

body.template-plumbing-clean .hero p{
  color:#334155;
}

body.template-plumbing-clean .cta-button,
body.template-plumbing-clean .themed-contact-btn{
  background:linear-gradient(135deg,#38bdf8,#0ea5e9);
  color:#ffffff;
  font-weight:900;
  box-shadow:
    0 12px 28px rgba(56,189,248,.20);
}

body.template-plumbing-clean .section{
  background:rgba(255,255,255,.78);
  border-top:1px solid rgba(56,189,248,.12);
}

body.template-plumbing-clean .section h2{
  color:#0284c7;
  text-transform:uppercase;
}

body.template-plumbing-clean .service-card,
body.template-plumbing-clean .testimonial-card,
body.template-plumbing-clean .gallery-item,
body.template-plumbing-clean .nwp-menu-thumb{
  background:#ffffff;
  border:1px solid rgba(56,189,248,.14);
  box-shadow:
    0 10px 24px rgba(15,23,42,.08);
}

body.template-plumbing-clean .service-card:hover,
body.template-plumbing-clean .gallery-item:hover{
  transform:translateY(-4px);
  box-shadow:
    0 18px 36px rgba(15,23,42,.12);
}

body.template-plumbing-clean .service-card h3,
body.template-plumbing-clean .testimonial-name{
  color:#0f172a;
}

body.template-plumbing-clean .section p,
body.template-plumbing-clean .testimonial-text{
  color:#475569;
}

body.template-plumbing-clean .service-icon{
  color:#0ea5e9;
}

body.template-plumbing-clean .contact-section{
  background:
    linear-gradient(135deg,#ffffff,#dbeafe);
  border-top:4px solid #38bdf8;
}

body.template-plumbing-clean .contact-section h2,
body.template-plumbing-clean .contact-section p,
body.template-plumbing-clean .contact-section a{
  color:#0f172a;
}


/* TEMPLATE: ELECTRIC NEON */
body.template-electric-neon{
  background:
    radial-gradient(circle at 20% 15%, rgba(253,224,71,.22), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(126,34,206,.22), transparent 32%),
    linear-gradient(135deg,#111827,#250044 55%,#020617);
  color:#ffffff;
}

body.template-electric-neon .site-header{
  background:rgba(17,24,39,.90);
  border-bottom:3px solid #fde047;
  box-shadow:0 0 28px rgba(253,224,71,.18);
  backdrop-filter:blur(12px);
}

body.template-electric-neon .site-logo{
  color:#fde047;
  text-shadow:0 0 18px rgba(253,224,71,.70);
}

body.template-electric-neon .site-header nav a{
  color:#f5d0fe;
}

body.template-electric-neon .hero{
  background:
    linear-gradient(135deg,rgba(17,24,39,.94),rgba(76,29,149,.86)),
    repeating-linear-gradient(
      -35deg,
      rgba(253,224,71,.10) 0px,
      rgba(253,224,71,.10) 4px,
      transparent 4px,
      transparent 18px
    );
  border-bottom:4px solid #fde047;
}

body.template-electric-neon .hero h1{
  color:#fde047;
  text-shadow:
    0 0 18px rgba(253,224,71,.65),
    0 0 34px rgba(168,85,247,.45);
  text-transform:uppercase;
}

body.template-electric-neon .hero p{
  color:#fef9c3;
}

body.template-electric-neon .cta-button,
body.template-electric-neon .themed-contact-btn{
  background:linear-gradient(135deg,#fde047,#a855f7);
  color:#111827;
  font-weight:950;
  box-shadow:
    0 0 24px rgba(253,224,71,.28),
    0 0 34px rgba(168,85,247,.22);
}

body.template-electric-neon .section{
  background:rgba(17,24,39,.86);
  border-top:1px solid rgba(253,224,71,.18);
}

body.template-electric-neon .section h2{
  color:#fde047;
  text-shadow:0 0 16px rgba(253,224,71,.35);
  text-transform:uppercase;
}

body.template-electric-neon .service-card,
body.template-electric-neon .testimonial-card,
body.template-electric-neon .gallery-item,
body.template-electric-neon .nwp-menu-thumb{
  background:linear-gradient(135deg,rgba(253,224,71,.07),rgba(168,85,247,.08));
  border:1px solid rgba(253,224,71,.25);
  box-shadow:
    0 14px 34px rgba(0,0,0,.34),
    inset 0 0 18px rgba(168,85,247,.06);
}

body.template-electric-neon .service-icon{
  color:#fde047;
  text-shadow:0 0 14px rgba(253,224,71,.65);
}

body.template-electric-neon .section p,
body.template-electric-neon .testimonial-text{
  color:#fef9c3;
}

body.template-electric-neon .contact-section{
  background:linear-gradient(135deg,#111827,#4c1d95);
  border-top:4px solid #fde047;
}


/* FIX: PLUMBING CLEAN MOBILE MENU */
body.template-plumbing-clean .mobile-menu-btn{
  color:#111827;
}

body.template-plumbing-clean .mobile-menu-btn span{
  background:#111827;
}


/* FIX: PLUMBING CLEAN PUBLIC HAMBURGER */
body.template-plumbing-clean .public-menu-btn{
  color:#111827 !important;
  border-color:rgba(15,23,42,.25) !important;
  background:rgba(15,23,42,.06) !important;
}


/* TEMPLATE: GYM POWER */
body.template-gym-power{
  background:
    radial-gradient(circle at 20% 10%, rgba(239,68,68,.18), transparent 30%),
    linear-gradient(135deg,#000000,#111827 48%,#1f2937);
  color:#ffffff;
}

body.template-gym-power .site-header{
  background:rgba(0,0,0,.92);
  border-bottom:3px solid #ef4444;
  box-shadow:0 0 24px rgba(239,68,68,.16);
}

body.template-gym-power .site-logo{
  color:#ef4444;
  text-transform:uppercase;
  letter-spacing:.06em;
  text-shadow:0 0 16px rgba(239,68,68,.55);
}

body.template-gym-power .site-header nav a{
  color:#f3f4f6;
}

body.template-gym-power .hero{
  background:
    linear-gradient(135deg,rgba(0,0,0,.94),rgba(31,41,55,.92)),
    repeating-linear-gradient(
      90deg,
      rgba(239,68,68,.10) 0px,
      rgba(239,68,68,.10) 5px,
      transparent 5px,
      transparent 18px
    );
  border-bottom:5px solid #ef4444;
}

body.template-gym-power .hero h1{
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:.03em;
  text-shadow:
    0 0 18px rgba(239,68,68,.45);
}

body.template-gym-power .hero p{
  color:#d1d5db;
}

body.template-gym-power .cta-button,
body.template-gym-power .themed-contact-btn{
  background:linear-gradient(135deg,#ef4444,#991b1b);
  color:#ffffff;
  font-weight:950;
  border:2px solid rgba(255,255,255,.08);
  box-shadow:
    0 16px 34px rgba(239,68,68,.22);
}

body.template-gym-power .section{
  background:rgba(10,10,10,.88);
  border-top:1px solid rgba(239,68,68,.14);
}

body.template-gym-power .section h2{
  color:#ef4444;
  text-transform:uppercase;
  letter-spacing:.04em;
}

body.template-gym-power .service-card,
body.template-gym-power .testimonial-card,
body.template-gym-power .gallery-item,
body.template-gym-power .nwp-menu-thumb{
  background:
    linear-gradient(135deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
  border:1px solid rgba(239,68,68,.20);
  box-shadow:
    0 16px 40px rgba(0,0,0,.45);
}

body.template-gym-power .service-card:hover,
body.template-gym-power .gallery-item:hover{
  transform:translateY(-4px) scale(1.01);
  box-shadow:
    0 22px 48px rgba(0,0,0,.55),
    0 0 24px rgba(239,68,68,.16);
}

body.template-gym-power .service-card h3,
body.template-gym-power .testimonial-name{
  color:#ffffff;
}

body.template-gym-power .section p,
body.template-gym-power .testimonial-text{
  color:#d1d5db;
}

body.template-gym-power .service-icon{
  color:#ef4444;
  text-shadow:0 0 14px rgba(239,68,68,.55);
}

body.template-gym-power .contact-section{
  background:
    linear-gradient(135deg,#000000,#1f2937);
  border-top:4px solid #ef4444;
}


/* TEMPLATE: REAL ESTATE LUXURY */
body.template-realestate-luxury{
  background:
    linear-gradient(135deg,#f8fafc,#ffffff 45%,#f1f5f9);
  color:#111827;
}

body.template-realestate-luxury .site-header{
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(212,175,55,.38);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 28px rgba(15,23,42,.08);
}

body.template-realestate-luxury .site-logo{
  color:#b0892f;
  letter-spacing:.05em;
  text-transform:uppercase;
}

body.template-realestate-luxury .site-header nav a{
  color:#111827;
}

body.template-realestate-luxury .public-menu-btn{
  color:#111827 !important;
  border-color:rgba(17,24,39,.18) !important;
  background:rgba(17,24,39,.05) !important;
}

body.template-realestate-luxury .hero{
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(248,250,252,.92)),
    radial-gradient(circle at 80% 10%, rgba(212,175,55,.16), transparent 32%);
  border-bottom:1px solid rgba(212,175,55,.28);
}

body.template-realestate-luxury .hero h1{
  color:#111827;
  letter-spacing:-.04em;
}

body.template-realestate-luxury .hero p{
  color:#475569;
}

body.template-realestate-luxury .cta-button,
body.template-realestate-luxury .themed-contact-btn{
  background:linear-gradient(135deg,#d4af37,#b0892f);
  color:#111827;
  font-weight:950;
  box-shadow:0 16px 34px rgba(212,175,55,.20);
}

body.template-realestate-luxury .section{
  background:rgba(255,255,255,.82);
  border-top:1px solid rgba(212,175,55,.14);
}

body.template-realestate-luxury .section h2{
  color:#b0892f;
  text-transform:uppercase;
  letter-spacing:.06em;
}

body.template-realestate-luxury .service-card,
body.template-realestate-luxury .testimonial-card,
body.template-realestate-luxury .gallery-item,
body.template-realestate-luxury .nwp-menu-thumb{
  background:#ffffff;
  border:1px solid rgba(212,175,55,.18);
  box-shadow:0 16px 38px rgba(15,23,42,.08);
}

body.template-realestate-luxury .service-card:hover,
body.template-realestate-luxury .gallery-item:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 50px rgba(15,23,42,.12);
}

body.template-realestate-luxury .service-card h3,
body.template-realestate-luxury .testimonial-name{
  color:#111827;
}

body.template-realestate-luxury .section p,
body.template-realestate-luxury .testimonial-text{
  color:#475569;
}

body.template-realestate-luxury .service-icon{
  color:#b0892f;
}

body.template-realestate-luxury .contact-section{
  background:linear-gradient(135deg,#ffffff,#f8fafc);
  border-top:3px solid #d4af37;
}

body.template-realestate-luxury .contact-section h2,
body.template-realestate-luxury .contact-section p,
body.template-realestate-luxury .contact-section a{
  color:#111827;
}


/* OUR JOBS + GALLERY CAPTIONS */
.gallery-caption{margin:10px 12px 14px;font-size:14px;line-height:1.35;font-weight:700;text-align:center;color:inherit;opacity:.9}.our-jobs-grid .our-job-card{position:relative}.hidden{display:none!important}

/* LIGHTBOX CAPTION WHITE BOX */
.lightbox-caption{background:#fff;color:#111;padding:14px 18px;font-size:16px;font-weight:700;text-align:center;line-height:1.35;border-radius:0 0 14px 14px;max-width:92vw;margin:0 auto 20px;box-shadow:0 10px 25px rgba(0,0,0,.25)}

/* FINAL RESPONSIVE LIGHTBOX CAPTION BELOW IMAGE */
.lightbox-overlay{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:0!important;
  padding:24px!important;
  box-sizing:border-box!important;
}
#lightboxImage{
  display:block!important;
  max-width:92vw!important;
  max-height:72vh!important;
  width:auto!important;
  height:auto!important;
  object-fit:contain!important;
  border-radius:14px 14px 0 0!important;
  margin:0 auto!important;
}
.lightbox-caption{
  display:block;
  width:auto!important;
  min-width:min(420px,92vw)!important;
  max-width:92vw!important;
  background:#fff!important;
  color:#111!important;
  padding:14px 18px!important;
  font-size:16px!important;
  font-weight:800!important;
  text-align:center!important;
  line-height:1.35!important;
  border-radius:0 0 14px 14px!important;
  margin:0 auto!important;
  box-shadow:0 10px 25px rgba(0,0,0,.25)!important;
  box-sizing:border-box!important;
  overflow-wrap:anywhere!important;
}
@media (max-width:640px){
  .lightbox-overlay{padding:14px!important;}
  #lightboxImage{max-width:96vw!important;max-height:68vh!important;}
  .lightbox-caption{max-width:96vw!important;min-width:96vw!important;font-size:14px!important;}
}


/* IMAGE TITLE + DESCRIPTION VISUAL MAPPING */
.gallery-title-box{
  background:#fff;
  color:#111;
  margin:0;
  padding:12px 14px;
  font-size:16px;
  font-weight:900;
  text-align:center;
  line-height:1.25;
}
.gallery-desc-box{
  background:#050505;
  color:#fff;
  margin:0;
  padding:12px 14px 14px;
  font-size:14px;
  font-weight:600;
  text-align:center;
  line-height:1.35;
}
.lightbox-title-box{
  background:#fff;
  color:#111;
  padding:14px 18px;
  font-size:18px;
  font-weight:900;
  text-align:center;
  line-height:1.25;
  max-width:92vw;
  margin:0 auto;
}
.lightbox-desc-box{
  background:#050505;
  color:#fff;
  padding:14px 18px;
  font-size:16px;
  font-weight:600;
  text-align:center;
  line-height:1.35;
  max-width:92vw;
  margin:0 auto 20px;
  border-radius:0 0 14px 14px;
}

/* GLOBAL HERO READABILITY FIX */
.hero h1,
.hero p,
.hero .hero-title,
.hero .hero-subtitle{
  color:#ffffff!important;
  text-shadow:
    0 2px 6px rgba(0,0,0,.95),
    0 6px 18px rgba(0,0,0,.85),
    0 0 22px rgba(255,255,255,.35)!important;
}

/* ===== GLOBAL CONTACT US UPGRADE ===== */
.contact-form input,
.contact-form textarea,
#contactForm input,
#contactForm textarea {
  background: rgba(255,255,255,.96) !important;
  color: #111827 !important;
  border: 1px solid rgba(15,23,42,.16) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.18) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #6b7280 !important;
  opacity: 1 !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
#contactForm input:focus,
#contactForm textarea:focus {
  outline: none !important;
  border-color: rgba(255,255,255,.75) !important;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.35),
    0 12px 30px rgba(0,0,0,.25) !important;
}

.contact-info p,
.contact-info a,
.contact-details p,
.contact-details a,
.contact-card p,
.contact-card a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.contact-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  background: rgba(0,0,0,.78) !important;
  color: #fff !important;
  font-size: 15px !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.22) !important;
}

/* ===== CONTACT FINAL PREMIUM FIX ===== */
#contact input,
#contact textarea,
.contact-form input,
.contact-form textarea,
#contactForm input,
#contactForm textarea {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid rgba(15,23,42,.18) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.16) !important;
  padding: 17px 20px !important;
}

#contact input::placeholder,
#contact textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder,
#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #6b7280 !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

#contact input:focus,
#contact textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none !important;
  border-color: rgba(212,175,55,.9) !important;
  box-shadow:
    0 0 0 4px rgba(212,175,55,.25),
    0 14px 34px rgba(15,23,42,.22) !important;
}

#contact .contact-info,
#contact .contact-details,
.contact-info,
.contact-details {
  width: 100% !important;
  max-width: 980px !important;
  margin: 34px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
  justify-content: center !important;
}

#contact .contact-info p,
#contact .contact-details p,
.contact-info p,
.contact-details p {
  margin: 0 !important;
  padding: 18px 16px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(15,23,42,.10) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 30px rgba(15,23,42,.14) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 11px !important;
  text-align: center !important;
  color: #111827 !important;
  font-weight: 700 !important;
}

#contact .social-links,
.social-links {
  margin-top: 28px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

@media (max-width: 820px) {
  #contact .contact-info,
  #contact .contact-details,
  .contact-info,
  .contact-details {
    grid-template-columns: 1fr !important;
  }
}

/* hide empty contact/social cards globally */
#contact .contact-card:empty,
#contact .contact-info:empty,
#contact .contact-details:empty,
#contact .contact-card:not(:has(*)):not(:has(textarea)),
#contact .contact-card:has(p:empty):not(:has(a)):not(:has(span:not(.contact-icon))) {
  display: none !important;
}

/* Business Hours desktop alignment */
@media (min-width: 768px) {
  #businessHoursPublic {
    max-width: 720px;
    margin: 0 auto;
  }

  #businessHoursPublic .hours-row,
  #businessHoursPublic div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    align-items: center;
  }

  #businessHoursPublic .hours-day,
  #businessHoursPublic div span:first-child {
    text-align: right;
  }

  #businessHoursPublic .hours-time,
  #businessHoursPublic div span:last-child {
    text-align: left;
  }
}

/* Force business hours: day right / time left */
@media (min-width: 768px) {
  #hoursSection #businessHoursPublic > div {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  #hoursSection #businessHoursPublic > div > *:first-child {
    text-align: right !important;
    justify-self: end !important;
  }

  #hoursSection #businessHoursPublic > div > *:last-child {
    text-align: left !important;
    justify-self: start !important;
  }
}
