/* ============================================================
   TRIP24NOW – LADAKH LANDING PAGE  |  style.css (Light Theme)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #2563eb;
  --blue-dark: #1e3a8a;
  --gold:      #f59e0b;
  --gold-lt:   #fbbf24;
  --teal:      #0ea5e9;
  --green:     #10b981;
  --dark:      #0f172a;
  --mid:       #334155;
  --muted:     #64748b;
  --light:     #f8fafc;
  --white:     #ffffff;
  --border:    #e2e8f0;
  --red:       #ef4444;
  --radius:    18px;
  --shadow:    0 8px 30px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; }
img { display: block; width: 100%; }

/* ---------- TOPBAR ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}

.topbar.scrolled { 
  background: rgba(255,255,255,0.98); 
  box-shadow: var(--shadow);
}

.logo-wrap { display: flex; align-items: center; }

.brand-logo {
  height: 56px; width: auto; object-fit: contain;
  transition: transform .3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}
.brand-logo:hover { transform: scale(1.05); }

.topbar-right { display: flex; align-items: center; gap: 12px; }

.call-pill {
  padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600;
  color: var(--blue-dark); border: 1px solid var(--border);
  background: var(--white);
  transition: all .25s;
}
.call-pill:hover { background: var(--light); border-color: var(--blue); }

.cta-pill {
  padding: 9px 20px; border-radius: 50px; font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white); transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(37,99,235,.3);
}
.cta-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.45); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  background: url('ladakh_hero.png') center/cover no-repeat;
  display: flex; align-items: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.9) 42%, rgba(255,255,255,.2) 100%);
  backdrop-filter: blur(3px);
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 60px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

.hero-left { flex: 1; min-width: 320px; max-width: 600px; color: var(--dark); }

.badge-pill {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(37,99,235,.15); border: 1px solid var(--blue);
  color: var(--blue-dark); font-size: 13px; font-weight: 600;
  margin-bottom: 22px; letter-spacing: .3px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,.3); }
  50%      { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
}

.hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.12;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.hero-sub { font-size: 18px; color: var(--mid); margin-bottom: 32px; max-width: 480px; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 36px;
}
.stat { text-align: center; padding: 0 20px; }
.stat:first-child { padding-left: 0; }
.stat-num { display: block; font-size: 22px; font-weight: 800; color: var(--blue); }
.stat-label { font-size: 12px; color: var(--mid); }
.stat-div { width: 1px; height: 38px; background: rgba(0,0,0,.1); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: 50px; font-size: 17px; font-weight: 800; letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--blue));
  background-size: 200% auto;
  color: var(--white); transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(37,99,235,.35);
  animation: gradientAnim 3s ease infinite;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(16,185,129,.4); }

@keyframes gradientAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 16px; font-weight: 700;
  border: 2px solid var(--blue); color: var(--blue-dark); background: transparent;
  transition: all .3s ease;
}
.btn-outline:hover { background: rgba(37,99,235,.1); transform: translateY(-2px); }

/* ---------- FORM CARD (Hero & Modal) ---------- */
.form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}

.modal-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
}

.form-header { margin-bottom: 16px; }
.form-header h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.form-header p  { font-size: 12px; color: var(--muted); }

.form-group { margin-bottom: 10px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }

.form-group input,
.form-group select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.9); border: 1.5px solid rgba(226, 232, 240, 0.8);
  color: var(--dark); font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500;
  outline: none; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.form-group input::placeholder { color: #94a3b8; font-weight: 400; }
.form-group input:focus, .form-group select:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 4px rgba(37,99,235,.15);
  transform: translateY(-1px);
}

.form-submit {
  width: 100%; padding: 16px; border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800; letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--blue));
  background-size: 200% auto;
  color: var(--white); margin-top: 10px; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(37,99,235,.35);
  animation: gradientAnim 3s ease infinite;
}
.form-submit:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(16,185,129,.4); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; animation: none; transform: none; }

.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-card {
  transform: translateY(30px);
  transition: transform .3s ease;
  position: relative;
}
.modal-overlay.active .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--light); border: 1px solid var(--border);
  color: var(--dark); width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; font-size: 16px;
  font-weight: bold;
}
.modal-close:hover { background: #e2e8f0; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  overflow: hidden;
}
.trust-item {
  padding: 14px 28px; font-size: 14px; font-weight: 600; color: var(--white);
  border-right: 1px solid rgba(255,255,255,.2);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }

/* ---------- SECTIONS SHARED ---------- */
.section { padding: 100px 32px; max-width: 1200px; margin: 0 auto; opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.section.fade-in { opacity: 1; transform: translateY(0); }
.section-label {
  font-size: 14px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px; display: inline-block;
  background: rgba(37, 99, 235, 0.1); padding: 6px 16px; border-radius: 50px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--dark); margin-bottom: 16px; line-height: 1.2;
}
.section-sub { color: var(--muted); font-size: 18px; margin-bottom: 56px; max-width: 600px; }

/* ---------- PACKAGES ---------- */
.packages-section { padding-top: 90px; }

.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px; margin-top: 48px;
}

.pkg-card {
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden; transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card.featured { border: 2px solid var(--blue); }

.pkg-img-wrap { position: relative; height: 220px; overflow: hidden; }
.pkg-img { height: 100%; object-fit: cover; transition: transform .5s; }
.pkg-card:hover .pkg-img { transform: scale(1.06); }

.pkg-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--blue); color: var(--white);
  font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.pkg-card.featured .pkg-badge { background: var(--gold); color: var(--white); }

.pkg-body { padding: 24px; }
.pkg-body h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.pkg-route { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

.pkg-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pkg-highlights span {
  background: var(--light); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 50px; font-size: 13px; color: var(--mid);
}

.pkg-pricing { border-top: 1px solid var(--border); padding-top: 16px; margin-bottom: 20px; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px dashed var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row span { font-size: 14px; color: var(--muted); }
.price-row strong { font-size: 18px; color: var(--blue); font-weight: 800; }
.price-row small { font-size: 12px; color: var(--muted); font-weight: 400; }

.pkg-btn {
  display: block; text-align: center; padding: 13px;
  border-radius: 50px; font-size: 15px; font-weight: 700;
  background: var(--light); color: var(--blue-dark);
  border: 1px solid var(--border); transition: all .2s;
}
.pkg-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 12px rgba(37,99,235,.2); }
.pkg-card.featured .pkg-btn { background: var(--blue); color: var(--white); border: none; }
.pkg-card.featured .pkg-btn:hover { background: var(--blue-dark); }

/* ---------- ITINERARY ---------- */
.itinerary-section { background: var(--white); border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }

.tab-switcher {
  display: flex; gap: 0; background: var(--light);
  border-radius: 50px; padding: 4px; width: fit-content;
  margin-bottom: 40px; border: 1px solid var(--border);
}
.tab-btn {
  padding: 10px 28px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  background: transparent; color: var(--muted); transition: all .25s;
}
.tab-btn.active {
  background: var(--white); color: var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.itinerary-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.itinerary-grid.hidden { display: none; }

.day-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.day-card:hover { border-color: var(--blue); background: var(--white); box-shadow: var(--shadow); }

.day-num {
  min-width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--white); text-align: center; line-height: 1.2;
  box-shadow: 0 4px 12px rgba(37,99,235,.2);
}
.day-content h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.day-content p  { font-size: 13px; color: var(--mid); line-height: 1.5; }

/* ---------- HOTELS ---------- */
.hotels-section { padding: 80px 32px; }
.hotels-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
  margin-top: 0;
}
.hotel-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px; text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow);
}
.hotel-card:hover { transform: translateY(-5px); border-color: var(--teal); box-shadow: var(--shadow-lg); }
.hotel-icon { font-size: 36px; margin-bottom: 14px; }
.hotel-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.hotel-card p  { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.room-type {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  background: rgba(13,148,136,.1); border: 1px solid rgba(13,148,136,.3);
  color: var(--teal); font-size: 12px; font-weight: 700;
}

/* ---------- INCLUSIONS ---------- */
.incl-section { padding: 80px 32px; }
.incl-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  margin-top: 40px;
}
.incl-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 26px; box-shadow: var(--shadow);
}
.incl-card.excl { border-color: rgba(220,38,38,.2); background: #fef2f2; }
.incl-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.incl-card ul  { list-style: none; }
.incl-card ul li {
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--mid);
  display: flex; align-items: flex-start; gap: 10px;
}
.incl-card ul li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 16px; line-height: 1.4; }
.incl-card.excl ul li::before { content: '✗'; color: var(--red); }
.incl-card ul li:last-child { border-bottom: none; }

/* ---------- CANCELLATION ---------- */
.cancel-section {
  background: var(--white); border-radius: 24px; padding: 80px 32px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.cancel-table-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; align-items: start;
}
.cancel-table {
  width: 100%; border-collapse: collapse; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.cancel-table thead { background: var(--light); border-bottom: 1px solid var(--border); }
.cancel-table thead th { padding: 14px 20px; font-size: 14px; font-weight: 700; color: var(--dark); text-align: left; }
.cancel-table tbody tr { border-bottom: 1px solid var(--border); background: var(--white); }
.cancel-table tbody tr:hover { background: var(--light); }
.cancel-table tbody td { padding: 13px 20px; font-size: 14px; color: var(--mid); }
.cancel-table .pct { font-weight: 800; color: var(--gold); }
.cancel-table .pct.red { color: var(--red); }

.booking-note {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
}
.booking-note h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.booking-note p { font-size: 14px; color: var(--mid); margin-bottom: 8px; }
.bank-details {
  margin-top: 16px; padding: 16px; border-radius: 12px;
  background: rgba(37,99,235,.05); border: 1px solid rgba(37,99,235,.2);
}
.bank-details p { font-size: 14px; color: var(--mid); margin-bottom: 6px; }
.bank-details p:last-child { margin-bottom: 0; }
.bank-details strong { color: var(--dark); }

/* ---------- WHY US ---------- */
.why-section { padding: 80px 32px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 48px;
}
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 22px; text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow);
}
.why-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 36px; margin-bottom: 14px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: var(--muted); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
  border-top: 1px solid var(--border);
  padding: 80px 32px; text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--dark); margin-bottom: 14px; }
.final-cta p  { font-size: 17px; color: var(--mid); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 16px; font-weight: 700;
  background: #25D366; color: var(--white);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(37,211,102,.2);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(37,211,102,.35); }

/* ---------- FOOTER ---------- */
.footer { background: var(--white); padding: 60px 32px 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 340px; line-height: 1.7; }
.footer-info h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.footer-info p  { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.footer-info a  { color: var(--muted); transition: color .2s; }
.footer-info a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0; font-size: 13px; color: var(--muted); text-align: center;
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.3);
  transition: transform .25s, box-shadow .25s;
  animation: bounce-in .6s ease 1s both;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

@keyframes bounce-in {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .topbar { padding: 12px 20px; }
  .call-pill { display: none; }

  .hero-inner { flex-direction: column; padding: 40px 20px; align-items: stretch; justify-content: center; }
  .hero-left  { max-width: 100%; text-align: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  
  .form-card  { width: 100%; max-width: 100%; margin: 20px auto 0; }

  .cancel-table-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .section { padding: 60px 20px; }
  .itinerary-section, .cancel-section { border-radius: 0; border-left: none; border-right: none; }
}

@media (max-width: 600px) {
  .trust-item { padding: 10px 16px; font-size: 13px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .stat-div   { display: none; }
  .cta-btns, .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline, .btn-whatsapp { width: 100%; }
}