:root {
  --red: #ff3b30;
  --red-dark: #d92720;
  --black: #070707;
  --dark: #0d0e10;
  --card: #17181b;
  --white: #ffffff;
  --muted: #a8a8ad;
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.btn-danger {
  background: var(--red);
  border-color: var(--red);
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-danger:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 59, 48, 0.24);
}

.btn-outline-danger {
  color: #fff;
  border-color: var(--red);
  font-weight: 600;
}

.btn-outline-danger:hover {
  background: var(--red);
  border-color: var(--red);
}

/* NAVBAR */
.drive-navbar {
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
  transition: 0.3s ease;
  z-index: 1000;
}

.drive-navbar.scrolled {
  background: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff !important;
  line-height: 1;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--red);
  font-size: 25px;
}

.brand strong {
  display: block;
  font-size: 21px;
  letter-spacing: -0.8px;
}

.brand strong span {
  color: var(--red);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: #bdbdbd;
  font-size: 9px;
  letter-spacing: 0.4px;
}

.navbar .btn {
  border: none;
}

.navbar-nav .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 2px !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transition: 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  right: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

.nav-book-btn {
  padding: 11px 23px;
  border-radius: 30px;
  font-size: 12px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
}

.city-item {
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    padding: 10px;
}

.city-item:hover {
    transform: translateY(-3px);
}

/* Base style for all screens (Desktop/Tablet) */
.city-item .city-icon img {
  border-radius: 50%;
  border: none !important;
}


/* HERO */
.hero-section,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-slide {
  height: min(680px, 100vh);
  min-height: 570px;
}

.hero-slide {
  position: relative;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-bike {
  background-image: url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=2200&q=90");
}

.hero-car {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2200&q=90");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.52) 40%,
      rgba(0, 0, 0, 0.25) 70%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 40%);
}

.hero-car .hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.28) 30%,
      rgba(0, 0, 0, 0.62) 70%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-car .hero-content {
  text-align: left;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Position relative to contain the absolute pseudo-element */
.eyebrow {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
}

.animate-underline::after {
    animation: underlineAnimation 1s ease-in-out forwards;
}

@keyframes underlineAnimation {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(55px, 7vw, 98px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -4px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-content h1 span {
  color: #fff;
}

.hero-content p {
  margin: 22px 0 24px;
  color: #eee;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  font-weight: 500;
}

.hero-btn {
  border-radius: 7px;
  padding: 13px 20px;
  font-size: 12px;
}

.custom-carousel-control {
  top: 43%;
  bottom: auto;
  width: 45px;
  height: 45px;
  opacity: 1;
  z-index: 4;
}

.custom-carousel-control.carousel-control-prev {
  left: calc(50% - 48px);
}

.custom-carousel-control.carousel-control-next {
  right: calc(50% - 48px);
}

.round-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  backdrop-filter: blur(5px);
  transition: 0.25s;
}

.round-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.carousel-indicators {
  margin-bottom: 17px;
  z-index: 5;
}

.carousel-indicators [data-bs-target] {
  width: 20px;
  height: 4px;
  border: 0;
  border-radius: 10px;
  margin: 0 3px;
  opacity: 1;
  background: #fff;
}

.carousel-indicators .active {
  background: var(--red);
}

/* GENERAL SECTIONS */
.section-dark {
  background: radial-gradient(
    circle at 50% 0%,
    #161719 0,
    #080808 48%,
    #050505 100%
  );
}

.services-section {
  padding: 70px 0 75px;
}

.section-heading {
  margin-bottom: 35px;
}

.section-heading > span,
.red-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.section-heading h2 {
  margin: 9px 0 9px;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1.2px;
}

.section-heading p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

/* SERVICE CARDS */
.service-card {
  height: 100%;
  background: linear-gradient(180deg, #18191c, #111214);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding-top: 22px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 59, 48, 0.5);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.service-icon {
  color: var(--red);
  font-size: 34px;
  height: 48px;
}

.service-card h3 {
  font-size: 13px;
  margin: 7px 8px 8px;
  font-weight: 700;
}

.service-card p {
  min-height: 42px;
  color: #aaa;
  font-size: 10px;
  line-height: 1.5;
  padding: 0 12px;
  margin-bottom: 14px;
}

.service-card img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
  transition: 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.07);
}

/* WHY */
.why-section {
  background: #080808;
  padding: 20px 0 35px;
}

.why-panel {
  background: #f2f2f2;
  color: #111;
  border-radius: 15px;
  padding: 38px 35px;
}

.why-panel h2 {
  font-size: 23px;
  line-height: 1.15;
  font-weight: 800;
  margin: 9px 0 13px;
}

.why-panel > .row > .col-lg-3 > p {
  color: #555;
  font-size: 11px;
  line-height: 1.7;
}

.why-panel .btn {
  margin-top: 5px;
  padding: 10px 17px;
  font-size: 11px;
}

.benefits-grid {
  border-left: 1px solid #ddd;
}

.benefit {
  padding: 12px 24px;
  min-height: 170px;
  border-right: 1px solid #ddd;
}

.benefit i {
  color: var(--red);
  font-size: 30px;
}

.benefit h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 10px 0;
}

.benefit p {
  color: #666;
  font-size: 10px;
  line-height: 1.55;
  margin: 0;
}

/* OFFER */
.offer-section {
  background: #080808;
  padding: 10px 0 15px;
}

.offer-banner {
  position: relative;
  min-height: 205px;
  border: 1px dashed var(--red);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.offer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.86) 35%,
      rgba(0, 0, 0, 0.25) 75%
    ),
    url("../image/offer.png")
      center/cover;
}

.offer-content {
  position: relative;
  z-index: 1;
  padding: 30px 35px;
}

.offer-content > span {
  font-size: 12px;
  font-weight: 700;
}

.offer-content strong {
  display: block;
  color: var(--red);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.95;
  font-weight: 900;
}

.offer-content h3 {
  margin: 6px 0 6px;
  font-size: 14px;
  font-weight: 800;
}

.offer-content p {
  margin-bottom: 13px;
  color: #aaa;
  font-size: 10px;
}

.offer-content .btn {
  font-size: 11px;
  padding: 10px 15px;
}

/* STATS */
.stats-section {
  background: #080808;
  padding: 0 0 55px;
}

.stats-bar {
  background: linear-gradient(90deg, #151618, #101113);
  border-radius: 9px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 25px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 6px 20px;
  border-right: 1px solid #2a2a2c;
}

.stat:last-child {
  border-right: 0;
}

.stat > i {
  font-size: 31px;
  color: #fff;
}

.stat strong {
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
}

.stat > div > span {
  color: var(--red);
  font-weight: 800;
}

.stat small {
  display: block;
  color: #ccc;
  font-size: 10px;
}

/* PACKAGES */
.packages-section {
  padding: 75px 0;
  background: #0b0c0e;
}

.package-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border-radius: 14px;
  background: #141518;
  border: 1px solid #27282c;
  transition: 0.3s;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 59, 48, 0.5);
}

.package-card.featured {
  border-color: var(--red);
  box-shadow: 0 20px 55px rgba(255, 59, 48, 0.08);
}

.package-tag {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.package-card h3 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 800;
}

.price {
  font-size: 40px;
  font-weight: 900;
  margin: 15px 0;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.package-card li {
  color: #aaa;
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #242529;
}

.package-card li i {
  color: var(--red);
  margin-right: 7px;
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--red);
  color: #fff;
  padding: 5px 8px;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 800;
}

/* GALLERY */
.gallery-section {
  padding: 75px 0;
  background: #080808;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  filter: grayscale(0.25);
  transition: 0.35s;
}

.gallery-img:hover {
  filter: grayscale(0);
  transform: scale(1.025);
}

/* CONTACT */
.contact-section {
  padding: 75px 0;
  background: #101114;
}

.contact-section h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  margin: 8px 0 15px;
}

.contact-section > .container > .row > .col-lg-5 > p {
  color: #999;
  font-size: 13px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.contact-item > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(255, 59, 48, 0.35);
  border-radius: 50%;
}

.contact-item small {
  display: block;
  color: #777;
  font-size: 9px;
}

.contact-item strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.contact-form {
  padding: 30px;
  background: #17181b;
  border: 1px solid #292a2e;
  border-radius: 14px;
}

.form-control,
.form-select {
  color: #fff;
  background: #0e0f11;
  border-color: #2c2d31;
  min-height: 48px;
  font-size: 12px;
}

.form-control:focus,
.form-select:focus {
  color: #fff;
  background: #0e0f11;
  border-color: var(--red);
  box-shadow: 0 0 0 0.2rem rgba(255, 59, 48, 0.1);
}

.form-control::placeholder {
  color: #777;
}

.form-select option {
  color: #111;
}

/* FOOTER */
.footer {
  padding: 55px 0 20px;
  background: #050505;
  color: #999;
}

.footer h5 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 15px;
}

.footer a:not(.brand) {
  display: block;
  color: #888;
  font-size: 11px;
  margin-bottom: 9px;
  transition: 0.2s;
}

.footer a:not(.brand):hover {
  color: var(--red);
}

.footer p {
  max-width: 370px;
  font-size: 11px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid !important;
  place-items: center;
  border: 1px solid #2b2b2e;
  border-radius: 50%;
}

.footer hr {
  border-color: #202125;
  margin-top: 35px;
}

.copyright {
  text-align: center;
  font-size: 10px;
  color: #666;
}

/* MODAL */
.booking-modal {
  background: #151619;
  color: #fff;
  border: 1px solid #303136;
  border-radius: 15px;
}

.booking-modal .form-control,
.booking-modal .form-select {
  min-height: 50px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-item.active .hero-content {
  animation: fadeUp 0.75s ease both;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .drive-navbar {
    background: rgba(7, 7, 7, 0.96);
    padding: 10px 0;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 12px 0 5px;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 11px 5px !important;
  }

  .nav-book-btn {
    display: inline-block;
    margin-top: 10px;
  }

  .hero-section,
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-slide {
    height: 620px;
    min-height: 620px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero-car .hero-content {
    margin-left: 0;
  }

  .custom-carousel-control.carousel-control-prev {
    left: calc(50% - 50px);
  }

  .custom-carousel-control.carousel-control-next {
    right: calc(50% - 50px);
  }

  .why-panel {
    padding: 30px 25px;
  }
  .benefits-grid {
    border-left: 0;
  }

  .benefit {
    min-height: 150px;
    border-bottom: 1px solid #ddd;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 575.98px) {

  .container {
    background: var(--dark);
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand strong {
    font-size: 18px;
  }
  .brand small {
    font-size: 8px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .hero-section,
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-slide {
    height: 620px;
    min-height: 620px;
  }

  .hero-bike {
    background-position: 62% center;
  }

  .hero-car {
    background-position: 54% center;
  }

  .hero-overlay,
  .hero-car .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.93) 0%,
      rgba(0, 0, 0, 0.48) 65%,
      rgba(0, 0, 0, 0.28) 100%
    );
  }

  .hero-content,
  .hero-car .hero-content {
    padding-top: 190px;
    margin: 0;
  }

  .hero-content h1 {
    font-size: 57px;
    letter-spacing: -3px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .custom-carousel-control {
    top: 54%;
  }

  .custom-carousel-control.carousel-control-prev {
    /* left: 28%; */
    display: none;
  }

  .custom-carousel-control.carousel-control-next {
    /* right: 28%; */
    display: none;
  }

  .services-section,
  .packages-section,
  .gallery-section,
  .contact-section {
    padding: 55px 0;
  }

  .service-card img {
    height: 90px;
  }

  .why-panel {
    border-radius: 12px;
    padding: 25px 20px;
  }

  .benefits-grid {
    margin-top: 15px;
  }

  .benefit {
    padding: 16px 12px;
  }

  .benefit h3 {
    font-size: 12px;
  }
  .benefit p {
    font-size: 9px;
  }

  .offer-banner {
    min-height: 260px;
  }

  .offer-content {
    padding: 25px 20px;
  }

  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 10px;
  }

  .stat {
    padding: 12px 8px;
    gap: 8px;
  }

  .stat > i {
    font-size: 23px;
  }
  .stat strong {
    font-size: 16px;
  }

  .gallery-img {
    height: 180px;
  }

  .contact-form {
    padding: 20px;
  }
}


/* DEFAULT (DESKTOP/LARGE SCREENS) */

/* Ensure the desktop hero is visible */
.hero-section {
  display: block; 
}

/* Hide the mobile video section on desktop */
.hero-small-device {
  display: none; 
  position: relative;
  height: 70vh;
  overflow: hidden;
}

/* Style the mobile video to fill the screen */
.mobile-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Update or add this to your CSS for the mobile hero overlay */
.hero-small-device .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top, 
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.7) 35%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Keep content layered above the video */
.mobile-content-wrapper {
  position: relative;
  z-index: 2;
}


/* MOBILE DEVICES (SCREENS UNDER 768PX) */
@media (max-width: 767px) {
  .hero-section {
    display: none !important; 
  }
  
  .hero-small-device {
    display: block !important;
  }
}


/* MOBILE PACKAGE CARDS */
.mobile-pkg-card {
  background-color: #141518;
  border: 1px solid #f9736c;
  border-radius: 12px;
  padding: 12px 14px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s;
}

.mobile-pkg-card img {
  font-size: 60px;
  height: 50px;
}

.mobile-pkg-card .car{
  width: 120px;
}

.mobile-pkg-card:active {
  transform: scale(0.96);
  background-color: #1e293b;
}

.mobile-pkg-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.mobile-pkg-title i {
  font-size: 11px;
  margin-left: 2px;
}

.mobile-pkg-icon {
  color: var(--primary-accent);
  font-size: 42px; 
  align-self: flex-start;
  margin-bottom: 2px;
}


/*  MOBILE INFINITE MARQUEE  */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 15px 0;
  background-color: var(--dark);
}

.marquee-track {
  display: inline-flex;
  gap: 16px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

/* Optional: Pause the scrolling when the user touches/holds an image */
.marquee-container:active .marquee-track {
  animation-play-state: paused;
}

.bike-slider {
  width: 220px !important;
  height: 140px !important;
}

.marquee-item {
  width: 220px;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* The Keyframes that make it move */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 8px)); 
  }
}

/* ============ SOS FLOATING BUTTON ============ */
.floating-sos {
  position: fixed;
  bottom: 150px;
  right: 10px;
  z-index: 99;
}

/* Custom SOS Icon (White background, Red border) */
.sos-icon-circle {
  width: 65px;
  height: 65px;
  background-color: #ffffff; 
  border: 4px solid #ef4444; 
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ef4444; 
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  
  /* Internal Blink Animation Only */
  animation: sos-blink 1.2s infinite; 
  transition: transform 0.3s ease;
}

.sos-icon-circle .sos-text {
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: 2px;
  line-height: 1;
}

.floating-sos:hover .sos-icon-circle {
  transform: scale(1.05);
  animation: none;
  opacity: 1;
}

@keyframes sos-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* The Pop-up Menu (Matched to Support Style) */
.sos-options {
  position: absolute;
  bottom: 85px;
  right: 0;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  width: 250px; 
}

/* Slide-up hover effect */
.floating-sos:hover .sos-options {
  opacity: 1;
  visibility: visible;
  bottom: 95px; 
}

/* Link styling */
.sos-options a {
  display: block;
  color: #1e293b;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

/* Hover slide-right effect */
.sos-options a:hover {
  background: #f8f9fa;
  padding-left: 15px;
  color: #ef4444;
}

