
:root{
  --accent: #0d2b32;
  --muted: #6b6b6b;
  --bg: #f5f4ef;
  --card: #ffffff;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial;line-height:1.45;background:var(--bg);color:#111}
.container{max-width:1100px;margin:0 auto;padding:20px}

.site-header {
   background:var(--accent);
   color:white;
  position: fixed;       
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;        
  transition: transform 0.3s ease;
}

.admin-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d63232;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 6px;
  z-index: 99999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  letter-spacing: 1px;
  display: none;
  animation: adminPulse 2s infinite alternate ease-in-out;
}
@keyframes adminPulse {
  0% {
    background: #1d4ed8;
    box-shadow: 0 0 10px rgba(214,50,50,0.6);
  }
    25% {
    background: #d63232; 
    box-shadow: 0 0 10px rgba(214,50,50,0.6);
  }
    50% {
    background: #1d4ed8; 
    box-shadow: 0 0 10px rgba(214,50,50,0.6);
  }
    75% {
    background: #d63232; 
    box-shadow: 0 0 10px rgba(214,50,50,0.6);
  }
  100% {
    background: #1d4ed8;
    box-shadow: 0 0 10px rgba(29,78,216,0.6);
  }
}


body {
  padding-top: 80px;     
}


@media (max-width: 800px) {
  body {
    padding-top: 250px; 
  }
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo{width:72px;height:auto;border-radius:8px;background:white;padding:6px}
.brand h1{margin:0;font-size:20px;letter-spacing:0.5px}
.tagline{margin:0;font-size:13px;opacity:0.95}
.nav a {
  color: rgba(255,255,255,0.9);
  margin-right: 14px;
  text-decoration: none;
}
.owner-message {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(12,38,42,0.06);
  margin-bottom: 20px;
}

.owner-message h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 20px;
}

.owner-message p {
  margin: 0;
  color: #444;
  line-height: 1.5;
}

.nav .btn .reviewsubbtn {
  background: white;
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.comingsoon{
  text-decoration: underline;
  font-size: 12px;
  color: red;
}
.hero {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(13,43,50,0.05), transparent);
}

.hero-inner {
  text-align: center;
  padding: 40px 20px;
}

.hero h2 {
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--accent);
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
}

.section {
  padding: 50px 0;
}

.section.alt {
  background: rgba(13,43,50,0.03);
}

h2 {
  color: var(--accent);
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
  margin-bottom: 18px;
}

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

.card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(12,38,42,0.06);
}

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

.price-card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(12,38,42,0.06);
}

.price {
  font-size: 22px;
  margin: 8px 0 12px;
  color: var(--accent);
  font-weight: 700;
}

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

.gallery-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

#lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

#lightboxImg.slide-left {
  animation: slideLeft 0.35s forwards;
}

#lightboxImg.slide-right {
  animation: slideRight 0.35s forwards;
}

@keyframes slideLeft {
  0% { transform: translateX(100%) scale(1); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes slideRight {
  0% { transform: translateX(-100%) scale(1); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}


#lightboxImg {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: none; 
}

#lightbox.active #lightboxImg {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 34px;
  color: white;
  cursor: pointer;
  text-shadow: 0 2px 7px rgba(0,0,0,0.5);
  z-index: 10000;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 18px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  opacity: 0.8;
  transition: 0.2s ease;
  z-index: 10000;
}

.lightbox-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
}

.lightbox-arrow.left {
  left: 30px;
}

.lightbox-arrow.right {
  right: 30px;
}



.gallery-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;      
    align-items: center;         
    text-align: center;
    gap: 10px;
  }

  .brand {
    flex-direction: column;      
    align-items: center;
  }

  .logo {
    width: 60px; 
    height: auto;
  }

  .brand h1 {
    font-size: 18px; 
  }

  .tagline {
    font-size: 12px; 
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 8px; 
  }

  .nav a, .nav .btn {
    font-size: 14px;
    margin-right: 0; 
  }
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:start;
}
.contact-card{
  background:var(--card);
  padding:18px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(12,38,42,0.06);
}
.map{
  border-radius:12px;
  overflow:hidden;
}
.call-mobile {
  pointer-events: none;  
  opacity: 0.6;          
  cursor: default;
}
.btn {
  pointer-events: none;  
  opacity: 0.6;          
  cursor: default;
}


@media (max-width: 800px) {
  .call-mobile {
    pointer-events: auto; 
    opacity: 1;
    cursor: pointer;
  }
}
@media (max-width: 800px) {
  .btn {
    pointer-events: auto; 
    opacity: 1;
    cursor: pointer;
  }
}
.site-footer{
  background:var(--accent);
  color:white;
  padding:18px;
  margin-top:30px;
  text-align:center;
}
@media (max-width:800px){
  .header-inner{
    flex-direction:column;
    gap:12px;
  }
  .contact-grid{
    grid-template-columns:1fr;
  }
}
.reveal{
  opacity:0;
  transform:translateY(12px);
  transition:all 600ms cubic-bezier(.2,.9,.2,1);
}
.reveal.visible{
  opacity:1;
  transform:none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 2fr; 
  gap: 30px;
  align-items: center; 
}


@media (max-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr; 
  }
}


.review-left {
  max-width: 350px; 
  margin: 0 auto;   
}
.review-right {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.yelp-btn {
  background: var(--accent);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
}.yelp-btn:hover {
  background-color: #11505b; 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}


.review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-form button {
  background-color: var(--accent);  
  color: #fff;                      
  padding: 12px 24px;               
  border: none;                      
  border-radius: 10px;              
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
}


.review-form button:hover {
  background-color: #11505b; 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}


.review-form button:active {
  background-color: #0a1f25;
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}


.review-form input,
.review-form select,
.review-form textarea {
  padding: 10px;
  resize: none;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.review-card small {
  display: block;       
  color: #6b6b6b;       
  font-size: 12px;
  margin-bottom: 2px;
}
.review-card .review-date {
  font-style: italic;   
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 10px;
}

.review-card {
  background: white;
  resize: none;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.review-card .stars {
  color: #f7c600;
  font-size: 18px;
  margin: 6px 0;
}

.review-card small {
  opacity: 0.6;
  font-size: 12px;
}
.star-rating {
  display: flex;
  gap: 6px;
  padding-left: 35px;
  font-size: 26px;
  cursor: pointer;
  color: #d3d3d3;
}

.star-rating .active {
  color: #f7c600;
}

.average-rating {
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}


.review-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toptext{
 text-align: center;
 font-size: 20px;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 12px;
}

.delete-review {
  background: #d63232;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
  font-size: 12px;
}

.delete-review:hover {
  background: #b42a2a;
}

#averageRating {
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}


.sort-dropdown {
  padding: 6px 12px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: white;
  font-weight: 600;
  cursor: pointer;
}




.sort-dropdown::after {
  content: "▼";
  position: absolute;
  right: 12px;                  
  font-size: 12px;
  color: #fff;
  pointer-events: none;
}


.sort-dropdown:hover {
  background-color: #11505b;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}


.sort-dropdown:active {
  background-color: #0a1f25;
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}





@media (max-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


