/**
 * GRNMA Hotel Volta Region - Custom Styles
 * Extends style.css with Volta-specific design overrides
 */

/* ===== VOLTA REGION BANNER ===== */
.volta-region-banner {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 6px 0;
  text-transform: uppercase;
}

/* ===== NAVBAR OVERRIDE ===== */
.navbar .navbar-brand img {
  filter: none;
}

.navbar-brand-text {
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
}

/* ===== VOLTA HERO SLIDER ===== */
.volta-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.volta-hero .carousel,
.volta-hero .carousel-inner,
.volta-hero .carousel-item {
  height: 100%;
}

.volta-hero .carousel-item img {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.volta-hero .carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  left: 10%;
  right: 10%;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Row 1 — Hotel name */
.volta-hero .carousel-caption .hero-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  position: relative;
}
.volta-hero .carousel-caption .hero-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Row 2 — Slogan */
.volta-hero .carousel-caption h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* Row 3 — CTA button */
.volta-hero .carousel-caption .btn-hero-primary {
  background: var(--primary);
  color: #fff;
  padding: 15px 44px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.25s;
  border-radius: 2px;
}
.volta-hero .carousel-caption .btn-hero-primary:hover {
  background: var(--dark);
  transform: translateY(-3px);
  color: #fff;
}

.volta-hero .carousel-control-prev,
.volta-hero .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  bottom: auto;
  backdrop-filter: blur(4px);
}

.volta-hero .carousel-control-prev { left: 24px; }
.volta-hero .carousel-control-next { right: 24px; }

.volta-hero .carousel-control-prev:hover,
.volta-hero .carousel-control-next:hover {
  background: var(--primary);
}

.volta-hero .carousel-indicators {
  bottom: 30px;
}
.volta-hero .carousel-indicators button {
  width: 30px;
  height: 3px;
  border-radius: 0;
  background: rgba(255,255,255,0.5);
  border: none;
}
.volta-hero .carousel-indicators button.active {
  background: var(--primary);
  width: 50px;
}

/* ===== QUICK BOOK BAR ===== */
.quick-book-bar {
  background: var(--dark);
  padding: 0;
}

.quick-book-bar .book-form {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.quick-book-bar .book-field {
  flex: 1;
  min-width: 160px;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
}

.quick-book-bar .book-field label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.quick-book-bar .book-field input,
.quick-book-bar .book-field select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  width: 100%;
  outline: none;
  cursor: pointer;
}

.quick-book-bar .book-field input::placeholder { color: rgba(255,255,255,0.7); }
.quick-book-bar .book-field select option { color: #333; background: #fff; }

.quick-book-bar .book-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 36px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  min-height: 70px;
}

.quick-book-bar .book-submit:hover {
  background: #2a7430;
}

/* ===== FACILITY FEATURE STRIP ===== */
.facility-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.facility-strip .facility-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
}

.facility-strip .facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-strip .facility-card:hover img {
  transform: scale(1.08);
}

.facility-strip .facility-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,66,41,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.facility-strip .facility-card .overlay h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.facility-strip .facility-card .overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  margin: 0;
}

@media (max-width: 992px) {
  .facility-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .facility-strip {
    grid-template-columns: 1fr;
  }
  .facility-strip .facility-card {
    height: 220px;
  }
}

/* ===== VOLTA ABOUT SECTION ===== */
.volta-about .image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.volta-about .image-mosaic .main-img {
  grid-column: 1;
  grid-row: 1 / 3;
}

.volta-about .image-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.volta-about .stat-item {
  text-align: center;
  padding: 20px 10px;
  border-left: 3px solid var(--primary);
}

.volta-about .stat-item h3 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ===== VOLTA SERVICES SECTION ===== */
.volta-services .service-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
}

.volta-services .service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.volta-services .service-tile:hover img {
  transform: scale(1.06);
}

.volta-services .service-tile .tile-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,66,41,0.92) 0%, rgba(15,66,41,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: 0.3s;
}

.volta-services .service-tile:hover .tile-content {
  background: linear-gradient(to top, rgba(15,66,41,0.97) 0%, rgba(15,66,41,0.5) 60%, rgba(15,66,41,0.2) 100%);
}

.volta-services .service-tile .tile-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.volta-services .service-tile .tile-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.volta-services .service-tile h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.volta-services .service-tile p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s;
}

.volta-services .service-tile:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== VOLTA STATS BANNER ===== */
.volta-stats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 60px 0;
}

.volta-stats .stat-box {
  text-align: center;
  padding: 20px;
}

.volta-stats .stat-box .number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.volta-stats .stat-box .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

.volta-stats .stat-box .divider {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  margin: 10px auto;
}

/* ===== ROOM CARDS (VOLTA STYLE) ===== */
.volta-room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.volta-room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.volta-room-card .room-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.volta-room-card .room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.volta-room-card:hover .room-img-wrap img {
  transform: scale(1.05);
}

.volta-room-card .room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.volta-room-card .room-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  text-align: right;
}

.volta-room-card .room-price .from {
  font-size: 0.65rem;
  opacity: 0.8;
  display: block;
}

.volta-room-card .room-price .amount {
  font-size: 1rem;
  font-weight: 700;
}

.volta-room-card .room-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.volta-room-card .room-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.volta-room-card .room-desc {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 14px;
  flex: 1;
}

.volta-room-card .room-features {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: #555;
}

.volta-room-card .room-features i {
  color: var(--primary);
  margin-right: 4px;
}

.volta-room-card .room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.volta-room-card .amenity-pill {
  background: var(--light);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.volta-room-card .amenity-pill i {
  color: var(--primary);
  margin-right: 3px;
}

.volta-room-card .btn-book {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--primary);
  transition: 0.3s;
}

.volta-room-card .btn-book:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.volta-room-card .btn-book.disabled {
  background: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== PAGE HEADER (VOLTA STYLE) ===== */
.volta-page-header {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 80px 0 50px;
}

.volta-page-header .header-bg {
  position: absolute;
  inset: 0;
  background-image: var(--header-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.volta-page-header .header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.volta-page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.volta-page-header .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.volta-page-header .breadcrumb-item.active { color: rgba(255,255,255,0.95); }
.volta-page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== TESTIMONIAL (VOLTA STYLE) ===== */
.volta-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-left: 4px solid var(--primary);
}

.volta-testimonial-card .quote {
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.volta-testimonial-card p {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  margin-bottom: 16px;
}

.volta-testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.volta-testimonial-card .author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.volta-testimonial-card .author-info h6 {
  margin: 0;
  font-weight: 700;
  color: var(--dark);
}

.volta-testimonial-card .author-info span {
  font-size: 0.8rem;
  color: var(--primary);
}

/* ===== CTA SECTION ===== */
.volta-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 80px 0;
}

.volta-cta h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.volta-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.volta-cta .btn-cta-white {
  background: #fff;
  color: var(--primary);
  padding: 14px 36px;
  font-weight: 700;
  border: none;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s;
  margin-right: 12px;
}

.volta-cta .btn-cta-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.volta-cta .btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 12px 34px;
  border: 2px solid rgba(255,255,255,0.7);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s;
}

.volta-cta .btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ===== FOOTER (VOLTA) ===== */
.volta-footer {
  background: var(--dark);
}

.volta-footer .footer-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.volta-footer .footer-brand .brand-region {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.volta-footer h5 {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.volta-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.9rem;
}

.volta-footer a:hover { color: var(--primary); }

.volta-footer .footer-contact li {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.volta-footer .footer-contact li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.volta-footer .footer-divider {
  border-color: rgba(255,255,255,0.08);
}

.volta-footer .copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ===== PROGRESS BAR (BOOKING STEPS) ===== */
.volta-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.volta-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volta-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #aaa;
  font-size: 0.9rem;
  transition: 0.3s;
}

.volta-step.active .step-num {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.volta-step.done .step-num {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.volta-step .step-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #aaa;
}

.volta-step.active .step-text,
.volta-step.done .step-text {
  color: var(--primary);
}

.volta-step-arrow {
  width: 60px;
  height: 2px;
  background: #ddd;
  margin: 0 8px;
}

.volta-step-arrow.done {
  background: var(--primary);
}

/* ===== RESERVATION FORM (VOLTA) ===== */
.volta-reservation-wrap {
  background: #f8faf8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.volta-reservation-wrap .form-side {
  padding: 36px;
  background: #fff;
}

.volta-reservation-wrap .summary-side {
  padding: 36px;
  background: var(--dark);
  color: #fff;
}

.volta-reservation-wrap .summary-side h4 {
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.volta-reservation-wrap .summary-side .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
}

.volta-reservation-wrap .summary-side .summary-row .label {
  color: rgba(255,255,255,0.6);
}

.volta-reservation-wrap .summary-side .summary-row .val {
  color: #fff;
  font-weight: 600;
}

.volta-reservation-wrap .summary-side .summary-total {
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.volta-reservation-wrap .summary-side .summary-total .total-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.volta-reservation-wrap .summary-side .summary-total .total-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.volta-reservation-wrap .member-box {
  margin-top: 20px;
  background: rgba(52,142,56,0.25);
  border: 1px solid rgba(52,142,56,0.4);
  border-radius: 8px;
  padding: 16px;
}

/* ===== SUCCESS PAGE (VOLTA) ===== */
.volta-success-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.volta-success-card .success-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 40px;
  text-align: center;
}

.volta-success-card .success-header .check-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.volta-success-card .success-header h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.volta-success-card .success-header p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.volta-success-card .success-body {
  padding: 36px;
}

.volta-success-card .detail-section {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.volta-success-card .detail-section .section-title {
  background: var(--light);
  padding: 12px 20px;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.volta-success-card .detail-section .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.875rem;
}

.volta-success-card .detail-section .detail-row:last-child {
  border-bottom: none;
}

.volta-success-card .detail-section .detail-row .key {
  color: #888;
}

.volta-success-card .detail-section .detail-row .val {
  font-weight: 600;
  color: #333;
}

/* ===== ALERT BANNER ===== */
.grnma-alert {
  background: rgba(52,142,56,0.08);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeSlideUp 0.6s ease forwards;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* ── Tablet / small laptop (≤ 992px) ── */
@media (max-width: 992px) {
  .volta-hero {
    height: 88vh;
    min-height: 520px;
  }
  .volta-hero .carousel-item img {
    height: 88vh;
    min-height: 520px;
  }
  .volta-hero .carousel-caption {
    left: 8%;
    right: 8%;
  }
  .volta-hero .carousel-caption h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }
}

/* ── Mobile landscape / large phone (≤ 768px) ── */
@media (max-width: 768px) {
  .volta-hero {
    height: 100svh;
    height: 100vh;
    min-height: 560px;
  }
  .volta-hero .carousel-item img {
    height: 100svh;
    height: 100vh;
    min-height: 560px;
    object-position: center top;
  }
  .volta-hero .carousel-caption {
    left: 5%;
    right: 5%;
  }
  .volta-hero .carousel-caption .hero-label {
    font-size: 0.7rem;
    letter-spacing: 3.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
  }
  .volta-hero .carousel-caption h1 {
    font-size: clamp(1.8rem, 6.5vw, 2.6rem);
    margin-bottom: 1.6rem;
  }
  .volta-hero .carousel-caption .btn-hero-primary {
    padding: 13px 36px;
    font-size: 0.9rem;
  }
  /* Nav arrows: move to bottom corners, away from caption */
  .volta-hero .carousel-control-prev,
  .volta-hero .carousel-control-next {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 68px;
    transform: none;
  }
  .volta-hero .carousel-control-prev { left: 16px; }
  .volta-hero .carousel-control-next { right: 16px; }
  .volta-hero .carousel-indicators { bottom: 20px; }
  .volta-hero .carousel-indicators button { width: 22px; }
  .volta-hero .carousel-indicators button.active { width: 36px; }

  /* Quick-book bar */
  .quick-book-bar .book-form { flex-direction: column; gap: 0; }
  .quick-book-bar .book-field {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .quick-book-bar .book-field label { margin-bottom: 0; min-width: 90px; flex-shrink: 0; }
  .quick-book-bar .book-submit { width: 100%; min-height: 52px; border-radius: 0; }

  /* Reservation summary panel */
  .volta-reservation-wrap .summary-side { background: var(--light); color: #333; }
  .volta-reservation-wrap .summary-side h4 { color: var(--dark); }
  .volta-reservation-wrap .summary-side .summary-row .label { color: #666; }
  .volta-reservation-wrap .summary-side .summary-row .val { color: var(--dark); }
  .volta-reservation-wrap .summary-side .summary-total .total-label { color: #555; }
  .volta-reservation-wrap .summary-side .summary-total .total-amount { color: var(--primary); }
}

/* ── Small phone portrait (≤ 576px) ── */
@media (max-width: 576px) {
  .volta-hero { min-height: 520px; }
  .volta-hero .carousel-item img {
    min-height: 520px;
    object-position: 60% top;
  }
  .volta-hero .carousel-caption {
    left: 4%;
    right: 4%;
  }
  .volta-hero .carousel-caption .hero-label {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
  }
  .volta-hero .carousel-caption h1 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
    margin-bottom: 1.4rem;
  }
  .volta-hero .carousel-caption .btn-hero-primary {
    padding: 12px 30px;
    font-size: 0.86rem;
    letter-spacing: 1px;
  }
  /* Swipe replaces arrows on small phones */
  .volta-hero .carousel-control-prev,
  .volta-hero .carousel-control-next { display: none; }
  .volta-hero .carousel-indicators { bottom: 14px; }

  /* Quick-book bar tighter */
  .quick-book-bar .book-field { padding: 10px 16px; }
  .quick-book-bar .book-field label { font-size: 0.65rem; min-width: 80px; }
  .quick-book-bar .book-field input,
  .quick-book-bar .book-field select { font-size: 0.88rem; }
  .quick-book-bar .book-submit { font-size: 0.88rem; min-height: 48px; }
}

/* ── Extra-small phones (≤ 400px) ── */
@media (max-width: 400px) {
  .volta-hero .carousel-caption .hero-label {
    font-size: 0.58rem;
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
  }
  .volta-hero .carousel-caption h1 {
    font-size: 1.42rem;
    margin-bottom: 1.2rem;
  }
  .volta-hero .carousel-caption .btn-hero-primary {
    padding: 11px 26px;
    font-size: 0.82rem;
  }
}
