/* ============================================================
   Run Saloon – style.css  (redesigned)
   ============================================================ */

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c0a060;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a07840;
}

/* ---------- Variables ---------- */
:root {
  /* --gold:    #c9a84c;
  --gold-lt: #f0d080;
  --dark:    #0f1923;
  --dark2:   #1a2535;
  --accent:  #e8b84b; */
  --gold: #ee6b05;
  --gold-lt: #ff8629;
  --dark: #0f1923;
  --dark2: #1a2535;
  --accent: #fbbe03;
  --white: #ffffff;
  --light: #f7f5f0;
  --muted: #6b7280;
  --border: rgba(201, 168, 76, .18);
  --sh-sm: 0 4px 20px rgba(0, 0, 0, .07);
  --sh-md: 0 8px 36px rgba(0, 0, 0, .11);
  --sh-lg: 0 16px 56px rgba(0, 0, 0, .15);
  --r: 16px;
  --r-sm: 10px;
  --tr: all .28s ease;
  --fs: .9rem;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: var(--fs);
  color: #1e2a38;
  background: #fafaf8;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  position: relative;
}

.container {
  position: relative;
  z-index: 2;
}

/* ---------- Utilities ---------- */
.text-gold {
  color: var(--gold);
}

.bg-dark-main {
  background: var(--dark);
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .25);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .75rem;
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto .5rem;
  font-size: .88rem;
}

.lift {
  transition: var(--tr);
}

.lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark);
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-size: .85rem;
  transition: var(--tr);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .3);
}

.btn-gold:hover {
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, .4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--tr);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  color: var(--white);
}

.preloader-bar {
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  overflow: hidden;
  margin: 1rem auto 0;
}

.preloader-fill {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  animation: preload 1.1s infinite ease-in-out;
}

@keyframes preload {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(300%)
  }
}

/* ---------- Navbar (compact) ---------- */
#mainNav {
  padding: .55rem 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.navbar-transparent {
  background: transparent;
}

.navbar-scrolled {
  background: rgba(15, 25, 35, .96);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.nav-logo {
  height: 38px;
}

.nav-brand-text {
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  font-size: .85rem;
  padding: .45rem .85rem;
  border-radius: 6px;
  transition: var(--tr);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold);
}

.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark) !important;
  font-weight: 700;
  font-size: .82rem;
  border: 0;
  border-radius: 999px;
  padding: .5rem 1.2rem;
  box-shadow: 0 4px 16px rgba(201, 168, 76, .3);
  transition: var(--tr);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .4);
}

.btn-wa-nav {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  font-size: .9rem;
  transition: var(--tr);
}

.btn-wa-nav:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}

.toggler-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.toggler-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.navbar-toggler {
  border: 0;
  padding: .3rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------- Hero ---------- */
.hero-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 18, 28, .9) 0%, rgba(20, 36, 56, .75) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 0 4rem;
  width: 100%;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .3);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .9rem;
}

.hero-lead {
  font-size: .92rem;
  color: rgba(255, 255, 255, .82);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
  max-width: 100%;
}

.hero-btn {
  border-radius: 999px;
  padding: .65rem 1.4rem;
  font-weight: 700;
  font-size: .85rem;
  transition: var(--tr);
}

.hero-btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .3);
}

.hero-btn:hover {
  transform: translateY(-3px);
}

.hero-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
  padding: 1.5rem;
}

.hero-list {
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
  list-style: none;
}

.hero-list li {
  margin-bottom: .5rem;
}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .8rem;
  color: var(--gold-lt);
}

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 7rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(10, 18, 28, .95) 0%, rgba(20, 36, 56, .85) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
}

.page-hero .breadcrumb-item a {
  color: var(--gold-lt);
}

.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, .6);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

.page-hero-image {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

/* ---------- Section blocks ---------- */
.section-block {
  padding: 5rem 0;
}

.section-block-alt {
  background: var(--light);
}

/* ---------- Cards ---------- */
.card-surface {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

/* ---------- About ---------- */
.about-image {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-md);
  min-height: 380px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .2);
  color: #7a5c1e;
}

/* ---------- Feature cards ---------- */
.feature-card {
  padding: 1.4rem;
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(232, 184, 75, .08));
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: .9rem;
}

/* ---------- Service cards ---------- */
.service-card {
  border-radius: var(--r);
  overflow: hidden;
}

.service-card .service-image {
  height: 200px;
  overflow: hidden;
}

.service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-card .card-body {
  padding: 1.2rem;
}

.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.badge-featured {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: var(--gold);
  font-size: .7rem;
  padding: .3rem .65rem;
}

/* ---------- Pricing ---------- */
.pricing-card {
  padding: 1.6rem;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}

.pricing-card.featured {
  border-color: rgba(201, 168, 76, .4);
  background: linear-gradient(160deg, #fffdf5, #fff8e8);
  transform: translateY(-5px);
}

.price-tag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.price-list {
  padding-left: 1rem;
  color: var(--muted);
  font-size: .85rem;
}

.price-list li {
  margin-bottom: .4rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  min-height: 220px;
  cursor: zoom-in;
  box-shadow: var(--sh-sm);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: var(--white);
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .7));
}

.category-pill {
  display: inline-block;
  width: fit-content;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(201, 168, 76, .25);
  backdrop-filter: blur(6px);
  font-size: .72rem;
  color: var(--gold-lt);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.lightbox.show {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: min(100%, 900px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r);
}

.lightbox-close {
  position: absolute;
  right: .75rem;
  top: .75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border: 0;
  font-size: 1rem;
  cursor: pointer;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  padding: 1.4rem;
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
}

.testimonial-card .rating i {
  color: var(--gold);
  font-size: .8rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------- Stats ---------- */
.stats-block {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: var(--white);
  padding: 3.5rem 0;
}

.counter-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
}

/* ---------- Offers ---------- */
.offer-card {
  overflow: hidden;
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
}

.offer-image {
  height: 200px;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.06);
}

.offer-body {
  padding: 1.2rem;
}

.offer-badge {
  color: var(--gold);
  font-weight: 700;
  font-size: .82rem;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  padding: .9rem 1.1rem;
  background: transparent;
  font-weight: 600;
  font-size: .88rem;
  color: #1e2a38;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.1rem .9rem;
  color: var(--muted);
  font-size: .85rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--gold);
}

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: var(--white);
  padding: 3.5rem;
  border-radius: 20px;
  margin: 0 auto 3rem;
  max-width: 100%;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

/* ---------- Footer (compact) ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .75);
}

.footer-top {
  padding: 2.8rem 0 1.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: .9rem 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .2rem;
}

.footer-desc {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-top: .6rem;
}

.footer-heading {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact-list li {
  margin-bottom: .45rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  transition: var(--tr);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .8rem;
}

.footer-contact-list i {
  color: var(--gold);
  margin-top: .2rem;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .65);
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.social-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  margin-right: .4rem;
  font-size: .85rem;
  transition: var(--tr);
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ---------- Back to top / WhatsApp ---------- */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark);
  box-shadow: var(--sh-md);
  display: none;
  z-index: 888;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
}

.back-to-top.show {
  display: grid;
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: var(--sh-md);
  z-index: 888;
  transition: var(--tr);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

.wa-tooltip {
  display: none;
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .navbar-collapse {
    background: rgba(15, 25, 35, .97);
    padding: 1rem;
    border-radius: 14px;
    margin-top: .75rem;
    box-shadow: var(--sh-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    margin-top: 1.5rem;
  }

  .cta-section {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-block {
    padding: 3.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-section {
    margin: 0 0 2rem;
    border-radius: 16px;
  }

  .hero-section {
    padding-top: 6.5rem;
  }

  .page-hero {
    padding-top: 6.5rem;
  }

  .stats-block {
    padding: 2.5rem 0;
  }

  .wa-tooltip {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn,
  .btn-book {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    left: .6rem;
    bottom: .6rem;
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .back-to-top {
    right: .6rem;
    bottom: .6rem;
    width: 40px;
    height: 40px;
  }

  .cta-section {
    padding: 1.8rem 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 180px;
  }

  .service-card .service-image {
    height: 160px;
  }

  .offer-image {
    height: 160px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .hero-stat {
    font-size: .72rem;
  }

  .stat-pill {
    font-size: .72rem;
  }

  .wa-tooltip {
    display: none;
  }
}