/* =============================================
   Highway Rides – Custom Stylesheet
   Brand: Highway Rides | Dehradun, Uttarakhand
   ============================================= */

/* ── Google Fonts ── */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* ── CSS Variables ── */
:root {
  
  --white:       #FFFFFF;
  --off-white:   #FFF6F2;   /* softened warm white */
  --subtle-bg:   #FFEDE3;   /* bright soft background */

  --black:       #1A1A1A;   /* slightly softer than pure black */
  --dark-grey:   #2B2B2B;
  --mid-grey:    #6B7280;
  --light-grey:  #E5E7EB;   /* cleaner light grey */

  --gold:        #FA4D01;   /* replaced with bright orange */
  --gold-dark:   #C73E00;   /* darker shade for hover */
  --gold-light:  #FFE1D6;   /* soft highlight */


  --font-display: 'Lora', sans-serif;
  --font-cond:    'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mid-grey);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cond);
color: var(--black) !important;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .02em;
}

.display-heading {
  font-family: var(--font-display);
  letter-spacing: .04em;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-dark); }

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

/* ── Utility ── */
.text-gold    { color: var(--gold) !important; }
.text-black   { color: var(--black) !important; }
.text-mid     { color: var(--mid-grey) !important; }
.bg-off       { background-color: var(--off-white) !important; }
.bg-subtle    { background-color: var(--subtle-bg) !important; }
.bg-brand     { background-color: var(--black) !important; }
.border-gold  { border-color: var(--gold) !important; }

.section-label {
  font-family: var(--font-cond);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 4vw, 2.5rem);
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: .03em;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  display: block;
}
.section-divider.start { margin-left: 0; }

/* ── Buttons ── */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: .65rem 1.75rem;
  font-family: var(--font-cond);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: .65rem 1.75rem;
  font-family: var(--font-cond);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark-brand {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  padding: .65rem 1.75rem;
  font-family: var(--font-cond);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-dark-brand:hover {
  background: var(--dark-grey);
  border-color: var(--dark-grey);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--black);
  padding: .4rem 0;
  font-family: var(--font-cond);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--light-grey);
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--gold); }
.topbar .divider { color: var(--mid-grey); margin: 0 .75rem; }

/* ── NAVBAR ── */
.navbar-brand img { height: 70px; width: auto; }

.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: .5rem 0;
  transition: box-shadow var(--transition);
}
.main-navbar.sticky-top { position: sticky; top: 0; z-index: 1030; }
.main-navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15); }

.main-navbar .nav-link {
  font-family: var(--font-cond);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark-grey) !important;
  padding: .5rem 1rem !important;
  transition: color var(--transition);
  position: relative;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--gold) !important;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.main-navbar .navbar-toggler {
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: .3rem .55rem;
}
.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C5A46D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO CAROUSEL ── */
.hero-carousel .carousel-item {
  height: 88vh;
  min-height: 520px;
  position: relative;
}
.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-carousel .carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 70%);
}
.hero-carousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 560px;
  padding: 0;
}
.hero-carousel .hero-eyebrow {
  font-family: var(--font-cond);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}
.hero-carousel .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: .03em;
}
.hero-carousel .hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 54px;
  height: 54px;
  background: rgba(197,164,109,.85);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: .8;
  margin: 0 1rem;
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover { opacity: 1; }
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
}
.hero-carousel .carousel-indicators .active { background: var(--gold); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--black);
  padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: .04em;
}
.stat-item .stat-label {
  font-family: var(--font-cond);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--light-grey);
  margin-top: .25rem;
}

/* ── SECTION SPACING ── */
.section-py { padding: 5rem 0; }
.section-py-sm { padding: 3.5rem 0; }

/* ── SERVICE CARDS ── */
.service-card {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card .card-img-wrap {
  overflow: hidden;
  height: 220px;
}
.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}
.service-card:hover .card-img-wrap img { transform: scale(1.06); }
.service-card .card-body { padding: 1.5rem; }
.service-card .card-rate {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.service-card .card-rate span {
  font-family: var(--font-cond);
  font-size: .78rem;
  color: var(--mid-grey);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-card .badge-cat {
  font-family: var(--font-cond);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--subtle-bg);
  color: var(--mid-grey);
  padding: .25rem .65rem;
  border-radius: 20px;
  border: 1px solid var(--light-grey);
}

/* Mobile responsive service cards */
@media (max-width: 767.98px) {
  .service-card .card-img-wrap {
    height: 180px;
  }
  
  .service-card .card-body {
    padding: 1.2rem;
  }
  
  .service-card h3 {
    font-size: 1rem;
  }
  
  .service-card .card-rate {
    font-size: 1.4rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .service-card .card-img-wrap {
    height: 150px;
  }
  
  .service-card .card-body {
    padding: 1rem;
  }
  
  .service-card h3 {
    font-size: 0.95rem;
  }
  
  .service-card .card-rate {
    font-size: 1.25rem;
  }
  
  .service-card p {
    font-size: 0.8rem;
  }
  
  .service-card .badge-cat {
    font-size: 0.65rem;
    padding: .2rem .5rem;
  }
  
  .service-card .d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .service-card .btn-sm {
    width: 100%;
    text-align: center;
  }
}

/* ── WHY US ── */
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.why-icon i { font-size: 1.6rem; color: var(--gold-dark); }
.why-card:hover .why-icon { background: var(--gold); }
.why-card:hover .why-icon i { color: var(--white); }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold-light);
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-card .stars { color: var(--gold); font-size: .9rem; }
.testimonial-card .reviewer {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  letter-spacing: .05em;
}
.testimonial-card .reviewer-loc {
  font-size: .8rem;
  color: var(--mid-grey);
}

/* ── FLEET TABLE ── */
.fleet-table thead th {
  font-family: var(--font-cond);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: var(--black);
  color: var(--gold);
  border-color: var(--dark-grey);
}
.fleet-table tbody tr { transition: background var(--transition); }
.fleet-table tbody tr:hover { background: var(--off-white); }
.fleet-table td { vertical-align: middle; font-size: .9rem; }

/* ── CONTACT ── */
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--gold-dark); font-size: 1.2rem; }

/* Form Styles */
.form-control, .form-select {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--black);
  padding: .65rem 1rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,164,109,.15);
  outline: none;
}
.form-label {
  font-family: var(--font-cond);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark-grey);
  margin-bottom: .4rem;
}
.form-control::placeholder { color: var(--light-grey); }

/* ── MAP ── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--light-grey);
  box-shadow: var(--shadow-md);
}
.map-container iframe { display: block; width: 100%; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  letter-spacing: .04em;
  margin: 0;
}
.page-hero-sub {
  font-family: var(--font-cond);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}
.breadcrumb-item { font-family: var(--font-cond); font-size: .85rem; color: var(--mid-grey); }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: var(--light-grey); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--mid-grey); }

/* ── ABOUT ── */
.about-img-frame {
  position: relative;
  display: inline-block;
}
.about-img-frame img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-frame .badge-exp {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 110px;
}
.about-img-frame .badge-exp .exp-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: .04em;
}
.about-img-frame .badge-exp .exp-txt {
  font-family: var(--font-cond);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ── TEAM ── */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
}
.team-avatar i { font-size: 2.5rem; color: var(--gold-dark); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: var(--light-grey);
  font-family: var(--font-body);
}
footer .footer-brand img { height: 52px; width: auto; }
footer .footer-desc { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; }

footer .footer-heading {
  font-family: var(--font-cond);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
footer ul.footer-links { list-style: none; padding: 0; margin: 0; }
footer ul.footer-links li { margin-bottom: .5rem; }
footer ul.footer-links li a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), padding-left var(--transition);
}
footer ul.footer-links li a:hover { color: var(--gold); padding-left: 6px; }

footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
}
footer .footer-contact-item i {
  color: var(--gold);
  font-size: .9rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
footer .footer-contact-item span { font-size: .9rem; color: rgba(255,255,255,.6); }

footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  margin-right: .4rem;
}
footer .social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--gold-light); }

/* ── PRICING TABS ── */
.nav-pills.pricing-tabs .nav-link {
  font-family: var(--font-cond);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark-grey);
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  padding: .5rem 1.4rem;
  margin: 0 .25rem;
}
.nav-pills.pricing-tabs .nav-link.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }
.anim-delay-1 { animation-delay: .15s; }
.anim-delay-2 { animation-delay: .3s; }
.anim-delay-3 { animation-delay: .45s; }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .hero-carousel .carousel-item { height: 70vh; }
  .about-img-frame .badge-exp { bottom: -.75rem; right: -.75rem; }
}
@media (max-width: 767.98px) {
  .hero-carousel .carousel-item { height: 60vh; min-height: 380px; }
  .hero-carousel .carousel-caption { left: 4%; right: 4%; max-width: 100%; }
  .section-py { padding: 3.5rem 0; }
  .stats-band .stat-item { margin-bottom: 1.5rem; }
  .about-img-frame .badge-exp { position: static; margin-top: 1rem; display: inline-block; }
}
@media (max-width: 575.98px) {
  .hero-carousel .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .topbar .d-none-xs { display: none !important; }
}

  /* Filter Buttons */
  .filter-btn {
    font-family: var(--font-cond);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .45rem 1.3rem;
    border: 2px solid var(--light-grey);
    border-radius: 30px;
    background: var(--white);
    color: var(--dark-grey);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
    white-space: nowrap;
  }
  .filter-btn:hover   { border-color: var(--gold); color: var(--gold); }
  .filter-btn.active  { background: var(--black); border-color: var(--black); color: var(--gold); }

  /* Gallery Grid Items */
  .gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-grey);
    cursor: pointer;
    position: relative;
    background: var(--off-white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  .gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

  .gallery-item img {
    width: 100%; height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
  }
  .gallery-item:hover img { transform: scale(1.07); }

  .gallery-item .g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
  }
  .gallery-item:hover .g-overlay { opacity: 1; }
  .gallery-item .g-zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.7);
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
  }
  .gallery-item:hover .g-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

  .gallery-item .g-info { color: var(--white); }
  .gallery-item .g-title {
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin: 0;
  }
  .gallery-item .g-rate {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: .06em;
  }

  .gallery-item .g-badge {
    position: absolute;
    top: .75rem; left: .75rem;
    font-family: var(--font-cond);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: .2rem .65rem;
    border-radius: 20px;
    background: rgba(0,0,0,.6);
    color: var(--gold-light);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(197,164,109,.3);
  }

  /* Hide/show animation */
  .gallery-item.hidden {
    display: none !important;
  }

  /* Lightbox */
  #lightbox-modal .modal-dialog { max-width: 900px; }
  #lightbox-modal .modal-content { background: var(--black); border: none; border-radius: var(--radius-lg); }
  #lightbox-modal .modal-body { padding: 0; position: relative; }
  #lightbox-modal .lb-img-wrap {
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  #lightbox-modal .lb-img-wrap img { max-height: 70vh; width: 100%; object-fit: contain; }
  #lightbox-modal .lb-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  #lightbox-modal .lb-title {
    font-family: var(--font-cond);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    margin: 0;
  }
  #lightbox-modal .lb-rate {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: .05em;
  }
  #lightbox-modal .lb-caption { font-size: .88rem; color: rgba(255,255,255,.6); }
  #lightbox-modal .btn-close { filter: invert(1); opacity: .7; }
  #lightbox-modal .lb-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(197,164,109,.85);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: background var(--transition);
  }
  #lightbox-modal .lb-nav-btn:hover { background: var(--gold); }
  #lightbox-modal .lb-prev { left: .75rem; }
  #lightbox-modal .lb-next { right: .75rem; }

  /* Count badge */
  .count-pill {
    display: inline-block;
    font-family: var(--font-cond);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    background: var(--subtle-bg);
    color: var(--mid-grey);
    padding: .2rem .65rem;
    border-radius: 20px;
    border: 1px solid var(--light-grey);
    margin-left: .4rem;
    vertical-align: middle;
  }

  /* ── FLOATING CONTACT BUTTONS ── */
  .floating-contacts {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    z-index: 998;
  }

  .floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    animation: slideInRight .4s ease forwards;
  }

  .floating-btn:hover {
    transform: scale(1.15) translateX(5px);
    box-shadow: var(--shadow-lg);
  }

  .floating-btn.whatsapp-btn {
    background: #25D366;
  }

  .floating-btn.whatsapp-btn:hover {
    background: #1fae53;
  }

  .floating-btn.call-btn {
    background: var(--gold);
  }

  .floating-btn.call-btn:hover {
    background: var(--gold-dark);
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Responsive - Stack buttons on small screens */
  @media (max-width: 575.98px) {
    .floating-contacts {
      bottom: 5rem;
      right: 1rem;
      gap: .5rem;
    }

    .floating-btn {
      width: 48px;
      height: 48px;
      font-size: 1.1rem;
    }
  }

  /* Adjust scroll-to-top position when floating buttons are visible */
  #scrollTop {
    bottom: 2rem;
  }

  @media (max-width: 575.98px) {
    #scrollTop {
      bottom: 1rem;
      width: 40px;
      height: 40px;
      font-size: 0.9rem;
    }
  }
