body{
  font-family:"Segoe UI",Arial,sans-serif;
  background:linear-gradient(180deg,#eef2ff,#f8fafc);
  scroll-behavior:smooth;
}

/* ============================= */
/* PREMIUM STICKY NAVBAR STYLE  */
/* ============================= */

.custom-navbar {
  background: linear-gradient(90deg, #000428, #004e92);
  padding: 14px 0;

  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* ============================= */
/* BRAND LOGO STYLE */
/* ============================= */

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: #ffc107;
}

/* ============================= */
/* NAV LINKS */
/* ============================= */

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* Underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #ffc107;
  transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #ffc107 !important;
}
/* Travel Info Nav Item */
.nav-item.travel-info {
  list-style: none;
}

.nav-item.travel-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-item.travel-info a i {
  font-size: 16px;
  color: #ffc107; /* Highlight color for icon */
}

.nav-item.travel-info a:hover {
  color: #ffc107;
}
/* ============================= */
/* CONTACT & LOCATION STYLE */
/* ============================= */

.contact-info a,
.location-info span {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #ffc107;
}

/* Icons styling */
.contact-info i,
.location-info i {
  margin-right: 6px;
  color: #ffc107;
  font-size: 14px;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {

  .contact-info,
  .location-info {
    margin-top: 10px;
  }

  .contact-info a,
  .location-info span {
    display: block;
    margin-left: 0;
  }

}
/* //// */
/* body */
/* //// */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* Background images layer */
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  animation: heroSlider 20s infinite;
  z-index:-1;
}

/* Background Image Animation */
@keyframes heroSlider{

0%{
background-image:url("https://c8.alamy.com/comp/2JKK8ME/a-photo-of-the-luxury-private-sprinter-mini-bus-service-2JKK8ME.jpg");
}

25%{
  background-image:url("https://thumbs.dreamstime.com/b/kijang-innova-white-kijang-innova-car-event-parking-lot-medan-city-north-sumatra-indonesia-may-295450469.jpg");
}

50%{
  background-image:url("https://images.pexels.com/photos/8766145/pexels-photo-8766145.jpeg");
}

75%{
background-image:url("https://cdn.mos.cms.futurecdn.net/6qthjkVdbYkToB7upxRSkU.jpg");
}

100%{
background-image:url("https://images.pexels.com/photos/3422964/pexels-photo-3422964.jpeg");
}

}

/* Hero Text */
.hero h1{
  font-size:3.3rem;
  font-weight:900;
}

/* Booking Box */
.hero-box{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(8px);
  padding:30px;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,.4);
}

/* Button */
.btn-main{
  background:#ff9800;
  color:#fff;
  border-radius:30px;
  padding:12px 28px;
  font-weight:700;
}

.btn-main:hover{
  background:#e68900;
  color:#fff;
}

/* Sections */
.section{
  padding:90px 0;
}

.title{
  font-weight:900;
}

/* ///////// */
/* srevices */
/* ///////// */
/* Card container */

.service-card-v2{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  height:auto;
  box-shadow:0 18px 45px rgba(0,0,0,.2);
  background:#fff;
  display:flex;
  flex-direction:column;
  transition:.35s ease;
}

/* IMAGE SLIDER AREA */
.card-images{
  display:flex;
  height:260px; /* increased image height */
  width:100%;
  transition:transform 0.6s ease;
}

.card-images img{
  width:100%;
  height:100%;
  object-fit:cover;
  flex-shrink:0;
}

/* TEXT BELOW IMAGE */
.service-overlay{
  position:relative;
  z-index:2;
  color:#333;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;   /* LEFT ALIGN */
  text-align:left;          /* LEFT TEXT */
  padding:22px;
}

/* TITLE */
.service-overlay h5{
  font-size:20px;
  font-weight:700;
  margin-bottom:6px;
}

/* DESCRIPTION */
.service-overlay p{
  font-size:14px;
  margin-bottom:6px;
  
}

/* BUTTON SPACE */
.service-overlay .d-flex{
  margin-top:12px;
}

/* BUTTON STYLE */
.service-overlay .btn{
  border-radius:25px;
  font-size:13px;
  padding:6px 14px;
}

/* HOVER EFFECT */
.service-card-v2:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,.25);
}

/* IMAGE SLIDE ON HOVER */
.service-card-v2:hover .card-images{
  animation:slideCars 3s linear infinite;
}

/* ANIMATION */
@keyframes slideCars{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}
/* ===== GALLERY SECTION ===== */
.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  height:280px;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
  transition:.4s ease;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  /* background:linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.2)); */
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:20px;
  opacity:0;
  transition:.4s ease;
}

.gallery-overlay h5{
  font-weight:800;
}

.gallery-overlay p{
  font-size:.9rem;
  color:#e5e7eb;
}

.gallery-card:hover img{
  transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
  opacity:1;
}

.gallery-card:hover{
  transform:translateY(-8px);
}

/* ============================= */
/* TOUR PACKAGES SECTION */
/* ============================= */
/* Section Spacing */
.tour-packages{
  padding:90px 0;
}

/* Package Card */
.package-card{
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.15);
  transition:.35s ease;
  display:flex;
  flex-direction:column;
  height:100%;
  animation:fadeUp .8s ease both;
}

/* Package Image */
.package-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
  transition:.5s ease;
}

/* Content BELOW image */
.package-content{
  position:relative;
  background:#fff;
  padding:22px;
  text-align:left;
}

/* Title */
.package-content h4{
  font-weight:800;
  font-size:20px;
  margin-bottom:6px;
  color:#111;
}

/* Description */
.package-content p{
  font-size:.95rem;
  margin-bottom:8px;
  color:#555;
}

/* Price */
.price{
  font-weight:700;
  margin-bottom:12px;
  color:#ff9800;
}

/* Button Group */
.button-group{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Book Button */
.btn-package{
  padding:8px 18px;
  background:#ffc107;
  color:#000;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.3s ease;
}

.btn-package:hover{
  background:#e0a800;
}

/* WhatsApp Button */
.whatsapp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  width:38px;
  height:38px;
  border-radius:50%;
  text-decoration:none;
  font-size:16px;
  transition:.3s ease;
}

.whatsapp-btn:hover{
  background:#1ebe5d;
}

/* Hover Effect */
.package-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,.2);
}

.package-card:hover img{
  transform:scale(1.05);
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* ////////////// */
/* why cabigo */
/* ////////////// */

#why-cabigo {
  background: #f7f9fc;
  padding: 80px 0;
  font-family:"Segoe UI",Arial,sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1b2a;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Cabigo Cards */
.cabigo-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.cabigo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  background: #ffecec;
}

.cabigo-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cabigo-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.cabigo-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .cabigo-card {
    padding: 25px 15px;
  }
}


/* ///////// */
/* request for calling */
/* ///////// */

.contact-banner {
    background-color: #f8f8f8; /* normal light gray background */
    color: #333; /* dark text for readability */
    text-align: center;
    padding: 50px 30px;
    border-radius: 10px;
    max-width: 1300px;
    margin: 50px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family:"Segoe UI",Arial,sans-serif;
}

.contact-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.contact-banner p {
    font-size: 1.2rem;
    margin: 8px 0;
}

.phone {
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 10px;
    color: #000000; /* blue for emphasis */
}

.call-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #000000; /* blue button */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-button:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    .contact-banner {
        padding: 40px 20px;
    }
    .contact-banner h2 {
        font-size: 1.6rem;
    }
    .contact-banner p {
        font-size: 1rem;
    }
    .phone {
        font-size: 1.2rem;
    }
    .call-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

  /* Sticky chat buttons */
  .chat-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }

  .chat-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }


.chat-phone {
  background-color: #0077cc;
}

.chat-whatsapp {
  background-color: #25d366;
}

.chat-buttons a:hover {
  transform: scale(1.1);
}


/* Wider and Centered FAQ Boxes */
/* FAQ Section CSS */
#faq {
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family:"Segoe UI",Arial,sans-serif;
}

#faq .container {
  max-width: 900px; /* slightly wider for content */
  margin: 0 auto;
}

#faq .faq-title {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

#faq .faq-item {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

#faq .faq-item h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

#faq .faq-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Make FAQ scrollable */
#faq .container {
  max-width: 1300px;       /* keep it centered */
  margin: 0 auto;
  max-height: 500px;      /* adjust height as needed */
  overflow-y: auto;       /* vertical scroll */
  padding-right: 10px;    /* prevent content cutoff */
}

/* //////// */
/* reviwes */
/* //////// */
/* ================= REVIEWS SECTION ================= */

.reviews-section {
  padding: 90px 0;
  background: #f8f9fa;
  text-align: center;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 50px;
}

.review-container {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.review-slider {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollReviews 25s linear infinite;
}

.review-card {
  min-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: left;
}

.review-card h4,
.review-card h5 {
  margin-top: 15px;
  font-weight: 700;
}

/* Continuous scroll animation */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
.review-slider:hover {
  animation-play-state: paused;
}

/* ===== MODERN FOOTER ===== */

footer{
  background:
  linear-gradient(rgba(15,23,42,.95), rgba(15,23,42,.95)),
  url("https://images.unsplash.com/photo-1503376780353-7e6692767b70");

  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 0 20px;
}

/* Main Wrapper */
.footer-wrapper{
  max-width:1100px;
  margin:auto;
  padding:0 20px;

  display:flex;
  justify-content:space-between;
  gap:60px;
}

/* Left & Right Sections */
.footer-left,
.footer-right{
  flex:1;
}

/* Headings */
footer h4{
  color:#ff9800;
  font-weight:800;
  margin-bottom:20px;
}

/* Contact Text */
.footer-left p{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:#d1d5db;
}

.footer-left i{
  color:#ff9800;
}

/* Social Icons */
.footer-social{
  margin-top:15px;
}

.footer-social a{
  display:inline-flex;
  justify-content:center;
  align-items:center;

  width:38px;
  height:38px;
  border-radius:50%;

  background:rgba(255,255,255,0.1);
  margin-right:10px;

  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.footer-social a:hover{
  background:#ff9800;
  transform:translateY(-3px);
}

/* Form */
.footer-right form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-right input,
.footer-right textarea{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:8px;
  padding:10px;
  color:#fff;
}

.footer-right input::placeholder,
.footer-right textarea::placeholder{
  color:#bbb;
}

.footer-right input:focus,
.footer-right textarea:focus{
  border-color:#ff9800;
  outline:none;
}

/* Button */
.footer-right button{
  background:linear-gradient(45deg,#ff9800,#ff5722);
  border:none;
  border-radius:25px;
  padding:10px;

  font-weight:700;
  color:#fff;
  cursor:pointer;

  transition:.3s;
}

.footer-right button:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(255,152,0,.5);
}

/* Bottom Copyright */
.footer-bottom{
  text-align:center;
  margin-top:40px;
  font-size:13px;
  color:#9ca3af;
}
@media (max-width:768px){

/* HERO TEXT */
.hero h1{
  font-size:2rem;
  text-align:start;
}

/* HERO BOOKING BOX */
.hero-box{
  padding:20px;
}

/* NAVBAR ITEMS */
.navbar-brand{
  font-size:20px;
}

.nav-link{
  padding:10px 0;
}

/* SERVICE CARD IMAGE */
.card-images{
  height:200px;
}

/* SERVICE TEXT */
.service-overlay h5{
  font-size:18px;
}

.service-overlay p{
  font-size:13px;
}

/* PACKAGE IMAGE */
.package-card img{
  height:190px;
}

/* REVIEW CARD */
.review-card{
  min-width:260px;
  padding:20px;
}

/* FOOTER LAYOUT */
.footer-wrapper{
  flex-direction:column;
  gap:35px;
}
.travel-info{
  list-style: none;
  display: flex;
  flex-direction: row;   /* side by side */
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

/* Make buttons smaller for mobile */
.travel-info a:first-child,
.book-btn{
  padding:6px 10px;
  font-size:12px;
}

}

/* Make phone link look like normal text */
.contact-text a {
  text-decoration: none;
  color: inherit;      /* Same color as normal text */
  font-weight: 500;
  cursor: pointer;
}

.contact-text a:hover {
  color: #ffc107;      /* Optional hover effect */
}

/* Phone input container */
.d-flex {
  display: flex;
  width: 100%;
  max-width: 475px;
}

/* Country code box */
.input-group-text {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-right: none;
  padding: 10px 14px;
  font-weight: 600;
  border-radius: 8px 0 0 8px;
  color: #333;
}

/* Phone input field */
.form-control {
  border: 1px solid #ced4da;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

/* Focus effect */
.form-control:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 5px rgba(255, 107, 0, 0.4);
}
@media (max-width:576px){

/* HERO */
.hero{
  min-height:85vh;
}

.hero h1{
  font-size:1.7rem;
}

/* BUTTON */
.btn-main{
  padding:10px 20px;
  font-size:14px;
}

/* GALLERY HEIGHT */
.gallery-card{
  height:220px;
}

/* CHAT BUTTONS SMALLER */
.chat-buttons a{
  width:55px;
  height:55px;
  font-size:24px;
}

/* WHATSAPP CHAT BOX */
.whatsapp-chat{
  right:10px;
  width:90%;
}

/* CONTACT BANNER */
.contact-banner{
  padding:35px 15px;
}

/* PHONE INPUT */
.d-flex{
  max-width:100%;
}

/* REVIEW CARD */
.review-card{
  min-width:230px;
}

/* SERVICE CARD */
.service-card-v2{
  border-radius:15px;
}

}

/* //////// */
/* chat bot */
/* //////// *//* Floating Buttons */
.chat-buttons{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:900;
}

.chat-buttons a{
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:white;
  text-decoration:none;
  box-shadow:0 6px 15px rgba(0,0,0,.3);
}

.chat-phone{
  background:#0077cc;
}

.chat-whatsapp{
  background:#25D366;
}

/* Chat Box */
.whatsapp-chat{
  position:fixed;
  bottom:90px; /* moved above icon */
  right:50px;
  width:320px;
  max-width:90%; /* mobile responsive */
  height:auto;
  background:#efeae2;
  border-radius:12px;
  overflow:hidden;
  display:none;
  font-family:Arial, sans-serif;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  z-index:9999;
}

/* Header */
.chat-header{
  background:#25D366;
  color:white;
  padding:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

.header-left{
  display:flex;
  gap:8px;
  align-items:center;
}

.header-right{
  display:flex;
  gap:10px;
  align-items:center;
}

.chat-header button{
  background:none;
  border:none;
  color:white;
  font-size:16px;
  cursor:pointer;
}

/* Chat Body */
.chat-body{
  padding:15px;
  background:#efeae2;
  font-size:14px;
}

.support{
  color:#25D366;
  font-size:12px;
}

.message{
  background:white;
  padding:10px;
  border-radius:8px;
  margin-top:5px;
  display:inline-block;
}

.time{
  font-size:11px;
  margin-top:3px;
  color:#777;
}

/* Footer */
.chat-footer{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px;
  background:#f0f0f0;
  border-top:1px solid #ddd;
}

/* Emoji */
.chat-footer .emoji{
  font-size:22px;
  cursor:pointer;
}

/* Input Field */
.chat-footer input{
  flex:1;
  height:40px;
  border:none;
  border-radius:20px;
  padding:0 15px;
  font-size:14px;
  outline:none;
  background:white;
  box-shadow:0 1px 3px rgba(0,0,0,0.15);
}

/* Send Button */
.chat-footer button{
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:#25D366;
  color:white;
  font-size:16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 6px rgba(0,0,0,0.2);
  transition:0.2s;
}

.chat-footer button:hover{
  background:#1ebe5d;
  transform:scale(1.05);
}



/* Hide default calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* Hide default time icon */
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* For Firefox */
input[type="date"],
input[type="time"]{
  appearance: none;
  -moz-appearance: none;
}




.travel-info{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 24/7 service badge */
.travel-info a:first-child{
  background: #ff9800;
  color: #333;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.travel-info a:first-child i{
  margin-right: 5px;
}

/* Book Now Button */
.book-btn{
  background: #ff9800;
  color:black !important;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover effect */
.book-btn:hover{
  background: #ff9800;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}