/* ============================================================
   HOI AN BASKET BOAT – Main CSS
   Brand: Teal #2e6b75 | CTA Orange #e8920c
   ============================================================ */

/* ── Variables ── */
:root {
  --primary:       #2e6b75;
  --primary-dark:  #245a63;
  --primary-light: #e8f4f6;
  --accent:        #e8920c;
  --accent-dark:   #c8700a;
  --text:          #1a1a1a;
  --muted:         #666;
  --bg:            #f8f9fa;
  --white:         #fff;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.14);
  --transition:    0.25s ease;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
.section-sub   { color: var(--muted); margin-top: 0.5rem; font-size: 1rem; }

/* ── Buttons ── */
.btn-book {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white) !important;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(200,112,10,0.35);
  white-space: nowrap;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,112,10,0.5);
}
.btn-outline {
  display: inline-block;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white) !important;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: filter var(--transition);
}
.btn-whatsapp:hover { filter: brightness(1.1); }

/* ── Sections ── */
.section { padding: 72px 0; }
.section-light { background: var(--bg); }
.section-teal  { background: var(--primary); color: var(--white); }
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 0.4rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}
.site-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #444;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover  { color: var(--primary); background: var(--primary-light); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-links .btn-book { padding: 9px 20px; font-size: 0.9rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

/* Mobile menu */
@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 24px 24px;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-backdrop.open { display: block; }
  .nav-links a { width: 100%; padding: 12px 0; border-radius: 0; border-bottom: 1px solid #f0f0f0; font-size: 1rem; }
  .nav-links .btn-book { margin-top: 16px; width: 100%; text-align: center; border: none; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f0f9fa 0%, #fff 60%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 { color: var(--primary-dark); margin-bottom: 16px; }
.hero-subtitle { font-size: 1.05rem; color: var(--muted); margin-bottom: 16px; max-width: 500px; }
.hero-price {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-price strong { color: var(--accent-dark); font-size: 1.2rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-chip {
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.trust-chip::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* Hero slideshow */
.hero-slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-slideshow .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.hero-slideshow .slide.active { opacity: 1; position: relative; }
.hero-slideshow img { width: 100%; height: 100%; object-fit: cover; }
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.slide-dot.active { background: var(--primary); transform: scale(1.3); }

/* Hero mobile */
@media (max-width: 991px) {
  .hero { padding: 40px 0 32px; }
  .hero-subtitle { max-width: 100%; }
}
@media (max-width: 767px) {
  .hero-slideshow { margin-top: 32px; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  color: var(--white);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trust-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.trust-stat-label { font-size: 0.78rem; opacity: 0.85; margin-top: 3px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--white);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.service-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { color: var(--primary); margin-bottom: 8px; }
.service-card-body p  { color: var(--muted); font-size: 0.9rem; flex: 1; }
.service-card-footer {
  padding: 0 20px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.service-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform var(--transition);
  height: 100%;
}
.why-card:hover { transform: translateY(-3px); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.why-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.why-card p  { color: var(--muted); font-size: 0.88rem; }

/* ============================================================
   STEP CARDS  (numbered activity/experience cards)
   ============================================================ */
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-card-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.step-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.step-card:hover .step-card-img img { transform: scale(1.05); }
.step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.step-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.step-card-body h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.step-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ============================================================
   PRICING BOX
   ============================================================ */
.price-box {
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}
.price-box h3 { color: var(--primary); margin-bottom: 16px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46,107,117,0.15);
  font-size: 0.95rem;
}
.price-row:last-of-type { border-bottom: none; }
.price-amount { font-weight: 700; color: var(--accent-dark); }
.include-list { margin-top: 16px; }
.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.include-list li::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   TRANSPORT PRICE TABLE
   ============================================================ */
.transport-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.transport-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
}
.transport-table td {
  padding: 12px 18px;
  font-size: 0.92rem;
  border-bottom: 1px solid #f0f0f0;
}
.transport-table tr:nth-child(even) td { background: var(--bg); }
.transport-table tr:last-child td { border-bottom: none; }
.transport-table .price-cell { font-weight: 700; color: var(--accent-dark); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: 0 4px 16px rgba(46,107,117,0.12); border-color: var(--primary); }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--primary-light); color: var(--primary); }
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* FAQ on full FAQs page */
.faq-page-section { padding: 72px 0; }
.faq-page-section h1 { color: var(--primary); text-align: center; margin-bottom: 12px; }
.faq-page-intro { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 1rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.page-breadcrumb {
  padding: 14px 0;
  background: var(--bg);
  border-bottom: 1px solid #e8e8e8;
}
.page-breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.page-breadcrumb a { color: var(--primary); }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb .sep { opacity: 0.5; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 70%);
  padding: 56px 0 40px;
  border-bottom: 1px solid #e8e8e8;
}
.page-hero h1 { color: var(--primary-dark); margin-bottom: 12px; }
.page-hero p  { color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.page-hero .hero-badge { margin-bottom: 14px; }
.page-hero .hero-actions { margin-top: 24px; }

/* ============================================================
   NOTES / INFO BOX
   ============================================================ */
.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.92rem;
  color: var(--primary-dark);
}
.warn-box {
  background: #fff5e6;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.92rem;
  color: #7a4800;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section { padding: 0; }
.map-section .google-map { position: relative; }
.map-section iframe { width: 100%; height: 360px; display: block; border: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.review-stars { color: #f5a623; font-size: 1rem; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: var(--muted); font-style: italic; margin-bottom: 14px; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-country { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p  { opacity: 0.85; margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1rem;
  transition: filter var(--transition);
}
.btn-white:hover { filter: brightness(0.95); }
.btn-book-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition);
}
.btn-book-outline:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.footer-brand h3 { font-size: 1.1rem; margin-bottom: 8px; }
.footer-brand p  { font-size: 0.85rem; opacity: 0.8; line-height: 1.6; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.6; }
.footer-col a, .footer-col li {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  opacity: 1;
  transition: background var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.25); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   FLOATING CONTACT ICONS
   ============================================================ */
.float-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 5px 16px rgba(0,0,0,0.3); }
.float-btn img { width: 50px; height: 50px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 9998;
  box-shadow: var(--shadow);
  transition: background var(--transition);
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { background: var(--primary-dark); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-teal   { color: var(--primary); }
.text-orange { color: var(--accent-dark); }
.text-muted  { color: var(--muted); }
.bg-light    { background: var(--bg); }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.divider { border: none; border-top: 1px solid #e8e8e8; margin: 40px 0; }
.badge-green {
  display: inline-block;
  background: #e6f9f0;
  color: #1a7a4a;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
  .section { padding: 48px 0; }
  .hero { padding: 32px 0; }
  .trust-bar-inner { gap: 20px; }
  .trust-stat { flex: 1 1 40%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-book, .hero-actions .btn-outline { width: 100%; text-align: center; }
}
