/* ===========================
   ORHANGAZI TERMİNAL TAKSİ
   Main CSS — Design System
   =========================== */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

/* ─── CSS Variables ─── */
:root {
  --primary: #0d1117;
  --primary-light: #161b22;
  --secondary: #1a2332;
  --accent: #f5c518;
  --accent-dark: #d4a017;
  --accent-light: rgba(245, 197, 24, 0.12);
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --green: #25d366;
  --red: #e74c3c;
  --gradient-hero: linear-gradient(
    135deg,
    #0d1117 0%,
    #1a2332 50%,
    #0f2744 100%
  );
  --gradient-accent: linear-gradient(135deg, #f5c518 0%, #d4a017 100%);
  --gradient-card: linear-gradient(145deg, #161b22, #1a2332);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 8px 32px rgba(245, 197, 24, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --nav-height: 80px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(245, 197, 24, 0.3);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  max-width: 580px;
  margin: 0 auto;
}
.accent {
  color: var(--accent);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ─── Card ─── */
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: var(--shadow-md);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
  padding: 0 24px;
}
.navbar.scrolled {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}
.navbar-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
}
.navbar-logo .logo-text span {
  color: var(--accent);
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: lowercase;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  position: relative;
}
.navbar-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-nav a:hover {
  color: var(--accent);
}
.navbar-nav a:hover::after {
  width: 100%;
}
.navbar-nav a.active {
  color: var(--accent);
}
.navbar-nav a.active::after {
  width: 100%;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(245, 197, 24, 0.06) 0%,
    transparent 60%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid rgba(245, 197, 24, 0.3);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: "●";
  font-size: 0.5rem;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 .line2 {
  color: var(--accent);
}
.hero .hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat .label {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 4px;
}
.hero-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  align-self: center;
}
.hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(245, 197, 24, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-taxi-icon {
  font-size: 12rem;
  filter: drop-shadow(0 0 60px rgba(245, 197, 24, 0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ─── SERVICES ─── */
.services {
  background: var(--primary-light);
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card .icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
  color: var(--accent);
}
.service-card:hover .icon {
  background: var(--gradient-accent);
  transform: scale(1.1);
}
.service-card h3 {
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
}
.service-card .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 20px;
  transition: var(--transition);
}
.service-card .cta-link:hover {
  gap: 10px;
}

/* ─── STATS ─── */
.stats-section {
  background: var(--gradient-accent);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(13, 17, 23, 0.7);
  margin-top: 8px;
  font-weight: 500;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--primary);
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 8px;
}
.testimonial-inner {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
}
.testimonial-inner::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 32px;
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}
.testimonial-author .name {
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-author .meta {
  font-size: 0.82rem;
  color: var(--gray-400);
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ─── BLOG PREVIEW ─── */
.blog-preview {
  background: var(--primary-light);
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--secondary);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card .category {
  display: inline-block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.88rem;
}
.blog-card .read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.blog-card .read-more:hover {
  gap: 8px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--gradient-hero);
  border-top: 1px solid rgba(245, 197, 24, 0.15);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(245, 197, 24, 0.08) 0%,
    transparent 70%
  );
}
.cta-band h2 {
  position: relative;
  margin-bottom: 16px;
}
.cta-band p {
  position: relative;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.cta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item .icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--accent);
}
.footer-contact-item span {
  font-size: 0.9rem;
  color: var(--gray-400);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ─── FLOATING BUTTONS ─── */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: fab-appear 0.5s ease both;
}
.fab:hover {
  transform: scale(1.1);
}
.fab-phone {
  background: var(--gradient-accent);
  color: var(--primary);
}
.fab-whatsapp {
  background: var(--green);
  color: var(--white);
}
@keyframes fab-appear {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 20px 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-size: 0.85rem;
  color: var(--gray-400);
}
.breadcrumb li a {
  color: var(--accent);
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  opacity: 0.4;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(245, 197, 24, 0.06) 0%,
    transparent 60%
  );
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ─── PAGE TRANSITION ─── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--accent);
  z-index: 9999;
  transform: translateY(100%);
  pointer-events: none;
}

/* ─── UTILITY ─── */
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--accent);
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual {
    display: none;
  }
}
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .navbar-nav,
  .navbar-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-stats {
    gap: 24px;
  }
  .section {
    padding: 64px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .floating-btns {
    bottom: 16px;
    right: 16px;
  }
}
