/* GLOBAL */
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, sans-serif; background: #111; color: #fff; }

/* HERO */
.hero {
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/hero01.jpeg') center/cover no-repeat;
    height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px;
}
.hero-content { max-width: 1100px; padding: 20px; }
.brand { font-size: 3.2rem; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.tag { margin-top: 12px; color: #cfcfcf; font-size: 1.05rem; }
.cta-row { margin-top: 22px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { background: #e0b35a; padding: 12px 25px; color: #111; text-decoration: none; font-weight: bold; border-radius: 5px; display: inline-block; cursor: pointer; }
.btn.alt { background: transparent; color: #e0b35a; border: 1px solid rgba(224,179,90,0.18); }

/* PRICING */
section { padding: 56px 20px; max-width: 1100px; margin: 0 auto; }
h2 { text-align: center; color: #e0b35a; margin: 0 0 24px 0; font-size: 2rem; }
h3.sub { text-align: center; color: #fff; margin: 28px 0 18px 0; font-size: 1.05rem; letter-spacing: 0.6px; text-transform: uppercase; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }
.card { background: #222; padding: 20px; border-radius: 10px; min-height: 140px; display: flex; flex-direction: column; justify-content: space-between; }
.price { font-size: 1.25rem; color: #e0b35a; font-weight: 800; }
.desc { color: #bdbdbd; margin-top: 8px; font-size: 0.95rem; }

/* REVIEWS CAROUSEL */
.reviews-section { overflow: hidden; text-align: center; padding: 40px 20px; max-width: 800px; margin: 0 auto; }
.carousel-container { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 20px; }
.carousel-viewport { position: relative; overflow: hidden; width: 100%; border-radius: 10px; background: #222; padding: 30px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.carousel-track { display: flex; transition: transform 0.4s ease-in-out; }
.review-card { flex: 0 0 100%; padding: 0 60px; box-sizing: border-box; text-align: center; }
.review-card .client { font-weight: bold; color: #e0b35a; font-size: 1.3rem; }
.review-card .stars { color: #f59e0b; margin: 8px 0; font-size: 1.2rem; }
.review-card .meta { font-size: 0.9rem; color: #bdbdbd; margin-bottom: 16px; }
.review-card .comment { font-style: italic; color: #fff; line-height: 1.6; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); background: #e0b35a; color: #111; border: none; font-size: 1.2rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; font-weight: 900; transition: background 0.2s; }
.carousel-nav:hover { background: #d4a54c; }
.carousel-nav.prev { left: 10px; }
.carousel-nav.next { right: 10px; }

/* SOCIAL LINKS */
.social-row { display: flex; justify-content: center; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.social-pill { padding: 10px 20px; background: #222; border: 1px solid #333; border-radius: 30px; color: #e0b35a; text-decoration: none; font-weight: bold; transition: all 0.2s; font-size: 0.95rem; }
.social-pill:hover { background: #e0b35a; color: #111; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 30px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: transform .18s ease; }
.gallery-grid img:hover { transform: scale(1.02); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.9); z-index: 9999; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-content { max-width: 1200px; width: 100%; max-height: 90vh; position: relative; display: flex; align-items: center; justify-content: center; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.lightbox .close, .lightbox .prev, .lightbox .next { position: absolute; background: rgba(0,0,0,0.6); color: #fff; border: 0; padding: 10px 12px; border-radius: 6px; cursor: pointer; font-weight: 700; }
.lightbox .close { top: 12px; right: 12px; }
.lightbox .prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .caption { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); color: #ddd; font-size: 0.95rem; background: rgba(0,0,0,0.4); padding: 8px 12px; border-radius: 6px; }

/* BUSINESS HOURS */
.hours-section { padding: 40px 20px 60px 20px; max-width: 600px; margin: 0 auto; }
.hours-table { width: 100%; border-collapse: collapse; background: #222; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.hours-table th, .hours-table td { padding: 16px; border-bottom: 1px solid #333; font-size: 1.05rem; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table th { background: #1a1a1a; color: #e0b35a; text-align: left; width: 35%; }
.hours-table td { color: #fff; text-align: right; }
.hours-table .break { display: block; margin-top: 4px; }

/* DISCLAIMER MODAL */
.disclaimer-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); z-index: 100000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.disclaimer-content { background: #222; padding: 32px 24px; border-radius: 12px; max-width: 400px; width: 100%; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.8); border: 1px solid #333; }
.disclaimer-content h2 { margin-top: 0; color: #e0b35a; font-size: 1.5rem; margin-bottom: 16px; }
.disclaimer-content p { color: #ddd; font-size: 1rem; line-height: 1.5; margin: 0 0 12px 0; }
.disclaimer-content .btn { margin-top: 16px; width: 100%; font-size: 1.1rem; padding: 14px; border: none; }

/* FOOTER */
footer { background: #000; padding: 20px; text-align: center; margin-top: 40px; }

/* Responsive */
@media (max-width: 520px) {
    .brand { font-size: 1.8rem; }
    .gallery-grid img { height: 160px; }
    .lightbox .prev, .lightbox .next { display: none; }
    .review-card { padding: 0 40px; }
}