/********** Template CSS **********/
:root {
  --primary: #ee7a03;
  --light: #f6f7f8;
  --dark: #1a2a36;
  --rd-primary: #0d6efd; /* Bootstrap primary */
  --rd-dark: #0f172a; /* Slate-900 vibe */
  --rd-muted: #64748b; /* Slate-500 */
  --rd-card: #ffffff;
  --rq-bg: #0b0f14;
  --rq-card: #0f141a;
  --rq-soft: #151b23;
  --rq-text: #e6edf3;
  --rq-muted: #9fb1c0;
  --rq-primary: #ff7a18; /* accent orange from your brand */
  --rq-ring: 36 100% 50%;
  --rq-radius: 10px;
  --brand-orange: #ff7a1a; /* your orange CTA */
  --brand-green: #19c37d; /* WhatsApp/Reserve green */
  --soft-border: #e9edf3;
  --card-bg: #ffffff;
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(15, 23, 42, 0.06);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 80px;
}
.img-logo {
  width: 100px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
  .header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 160px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  border-radius: 45px;
  transition: 0.5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  border-radius: 45px;
  transition: 0.5s;
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../images/img-quad-about.png) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-icon {
  position: relative;
  margin: -50px 0 25px 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  border-radius: 100px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.service-item:hover .service-icon {
  color: #ffffff;
  background: var(--primary);
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: -90px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-img {
  position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  background: var(--dark);
  transition: 0.5s;
}

.portfolio-img::before {
  left: 50%;
}

.portfolio-img::after {
  right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
  width: 51%;
  left: 0;
}

.portfolio-item:hover .portfolio-img::after {
  width: 51%;
  right: 0;
}

.portfolio-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
  transition-delay: 0.3s;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.team-item img {
  border-radius: 8px 60px 0 0;
}

.team-item .team-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: #ffffff;
  transition: 0.5s;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}
/* ABOUT section responsiveness */
.about-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* space between images */
  justify-content: center;
  align-items: center;
  height: 100%;
}

.about-photo {
  width: 48%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem; /* same look as rounded-3 */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Tablet (md: 768–991px): keep 2 columns, limit height so they don’t stretch */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-photo {
    width: calc(50% - 0.5rem);
    height: 260px; /* nice, even height */
  }
  .about-text {
    padding: 1rem 0;
  }
}

/* Mobile (sm < 768px): stack images vertically, keep good ratio */
@media (max-width: 767.98px) {
  .about-photos {
    align-items: stretch; /* images fill width */
  }
  .about-photo {
    width: 100%;
    height: 220px; /* fixed height + cover keeps them beautiful */
    /* If you prefer natural height, comment previous line and uncomment below: */
    /* height: auto; aspect-ratio: 4/3; */
  }
  .about-text {
    padding: 1rem 0;
  }
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  color: #9b9b9b;
  border: 1px solid #9b9b9b;
  border-radius: 38px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #9b9b9b;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #ffffff;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

:root {
  --primary: #ff8a00; /* your brand orange */
  --bg: #0b0c10;
  --card: #ffffff;
  --text: #0e0f12;
  --muted: #4a4f57;
  --ring1: linear-gradient(135deg, #ffcc80, var(--primary));
  --ring2: linear-gradient(135deg, #ffd1a6, #ff9b42);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0c10;
    --card: #121318;
    --text: #f5f6f7;
    --muted: #b1b6bf;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(12px, 3vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 28px 18px 24px;
  background: radial-gradient(
      1200px 140px at 50% -100%,
      rgba(255, 255, 255, 0.45),
      transparent 45%
    ),
    var(--card);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  background: radial-gradient(
      1200px 140px at 50% -100%,
      rgba(255, 255, 255, 0.65),
      transparent 50%
    ),
    var(--card);
}

.feature-ring {
  position: absolute;
  inset: -2px;
  background: var(--ring1);
  border-radius: 18px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.35;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.feature-card:nth-child(2) .feature-ring {
  background: var(--ring2);
}
.feature-card:nth-child(3) .feature-ring {
  background: linear-gradient(135deg, #ffd59e, #ff7a00);
}
.feature-card:nth-child(4) .feature-ring {
  background: linear-gradient(135deg, #ffcf99, #ff8a00);
}

.feature-card:hover .feature-ring {
  filter: blur(16px);
  opacity: 0.6;
}

/* icon */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(
      60% 60% at 30% 20%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.2)
    ),
    linear-gradient(180deg, #fff, #ffe7d1);
  border: 1px solid rgba(255, 138, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 6px 16px rgba(255, 138, 0, 0.25);
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: 0.2px;
}

.feature-card p {
  margin: 0;
  color: white;
  line-height: 1.55;
  font-size: 15px;
}

/* subtle highlight on hover */
.feature-card::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  transform: translateY(60%) rotate(8deg);
  height: 120%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.14),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.feature-card:hover::after {
  opacity: 1;
}

/* motion safety */
@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-ring,
  .feature-card::after {
    transition: none;
  }
  .feature-card:hover {
    transform: none;
  }
}
.card {
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.card img {
  transition: transform 0.4s ease;
}
.card:hover img {
  transform: scale(1.05);
}

.timeline {
  position: relative;
  padding-left: 20px;
  border-radius: 4px;
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background-color: #e85a00; /* orange point */
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

/* Add spacing and line connection between dots */
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px; /* aligns with the dot */
  top: 18px;
  width: 2px;
  height: calc(100% - -10px);
  border-left: 2px dashed #ccc; /* dashed separator */
}

.quad-card {
  border: 2px solid #e6e9ec;
  border-radius: 12px;
  background-color: #fff;
  max-width: 250px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.quad-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.quad-card h5 {
  color: #0b0b0b;
  font-size: 18px;
}

.quad-card p {
  font-size: 15px;
  color: #6c757d;
}
/* Container */
.tour-features {
  display: grid;
  gap: 14px; /* spacing between items */
  font-size: 0.98rem;
  color: #6b7280; /* muted text */
}

/* Item */
.tour-feature {
  display: grid;
  grid-template-columns: 36px 1fr; /* icon + text */
  align-items: start;
  padding: 6px 6px;
  border: 1px solid #eef1f4;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease;
}
.tour-feature:hover {
  border-color: #dfe7ff;
  box-shadow: 0 8px 22px rgba(13, 110, 253, 0.08);
  transform: translateY(-2px);
}

/* Icon */
.feature-icon {
  display: inline-flex;
  width: 36px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f3f7ff;
  color: #0d6efd; /* Bootstrap primary */
  font-size: 20px;
}

/* Text */
.feature-text {
  line-height: 1.35;
}
.feature-title {
  display: inline-block;
  color: #111827; /* dark title */
  font-weight: 700;
  margin-right: 6px;
}
.feature-sub {
  display: block;
  margin-top: 2px;
}

/* Price badge */
.price-badge {
  background: #0d6efd1a; /* subtle primary */
  color: #0d6efd;
  font-weight: 700;
  margin: 0 6px 0 2px;
}

/* Note */
.muted-note {
  color: #8a93a0;
}

/* Optional: compact on very small screens */
@media (max-width: 420px) {
  .tour-feature {
    grid-template-columns: 32px 1fr;
    padding: 8px 10px;
  }
  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #1ebe5b;
  border-color: #1ebe5b;
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:active {
  background-color: #1aa94f;
  border-color: #1aa94f;
  color: #fff;
}

.wrap {
}

.play button {
  all: unset;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: radial-gradient(
    35px 35px at 30% 30%,
    #ffb169 0%,
    #ef7b1a 50%,
    #d95f00 100%
  );
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 var(--ring), 0 10px 25px rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.play button:focus-visible {
  box-shadow: 0 0 0 8px var(--ring), 0 10px 25px rgba(0, 0, 0, 0.45);
}
.play svg {
  width: 28px;
  height: 28px;
  fill: white;
  transform: translateX(2px);
}

.card:hover .thumb {
  transform: scale(1.05);
}
.card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.card:active .play button {
  transform: scale(0.98);
}

.hint {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 12px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 12, 0.8);
  backdrop-filter: blur(6px);
}
.lightbox.open {
  display: flex;
}

.player-shell {
  width: min(1200px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: pop 0.18s ease;
}
@keyframes pop {
  from {
    transform: scale(0.985);
    opacity: 0.5;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.player-shell iframe,
.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
/* Section background flourish */
#about::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(
      60% 60% at 20% 20%,
      rgba(13, 110, 253, 0.12),
      transparent 60%
    ),
    radial-gradient(
      60% 60% at 80% 0%,
      rgba(13, 110, 253, 0.08),
      transparent 60%
    );
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.about-wrap {
  position: relative;
  z-index: 1;
}

/* Image collage */
.about-photos {
  position: relative;
  min-height: 420px;
}
.about-photo {
  position: absolute;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.15);
  object-fit: cover;
  width: 70%;
  height: 70%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.about-photo:first-child {
  top: 0;
  left: 0;
}
.about-photo:last-child {
  bottom: 0;
  right: 0;
}
.about-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.2);
}

/* Text card */
.about-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1.25rem;
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.08);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(2, 6, 23, 0.06);
}

.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rd-primary);
  background: rgba(13, 110, 253, 0.08);
  border: 1px solid rgba(13, 110, 253, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.about-title {
  font-weight: 800;
  line-height: 1.15;
  color: var(--rd-dark);
}
.about-lead {
  color: var(--rd-muted);
}

/* Feature grid */
.features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--rd-card);
  border: 1px solid rgba(2, 6, 23, 0.06);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  height: 100%;
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.12);
}

.icon-pill {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.2);
}
.feature h6 {
  margin: 0;
  font-weight: 700;
  color: var(--rd-dark);
}
.feature p {
  margin: 0.25rem 0 0 0;
  color: var(--rd-muted);
  font-size: 0.95rem;
}

/* CTA button polish */
.btn-cta {
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
}
.btn-cta .arrow {
  transition: transform 0.25s ease;
}
.btn-cta:hover .arrow {
  transform: translateX(4px);
}
/* ---- Randomed Video (rv) — fully scoped, no Bootstrap conflicts ---- */
.rv {
  --rv-bg: #0b0d12;
  --rv-card: #11151b;
  --rv-text: #e6e9ee;
  --rv-muted: #a9b0bb;
  --rv-accent: #ef7b1a;
  --rv-ring: rgba(239, 123, 26, 0.25);
  --rv-radius: 8px;
  --rv-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.rv {
  color: var(--rv-text);
}

.rv .rv-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: calc(var(--rv-radius) + 6px);
  padding: 26px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.rv h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.3px;
  margin: 0 0 20px;
  color: var(--rv-text);
}

/* Grid uses Bootstrap rows/cols on lg+; custom grid for xs/sm */
.rv .rv-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.rv .rv-card {
  grid-column: span 12;
  position: relative;
  height: 420px;
  border-radius: var(--rv-radius);
  overflow: hidden;
  background: #0f131a;
  box-shadow: var(--rv-shadow);
  cursor: pointer;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 760px) {
  .rv .rv-card {
    grid-column: span 6;
  }
}

@media (min-width: 992px) {
  .rv .rv-card {
    grid-column: span 4;
  }
}

.rv .rv-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.rv .rv-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.25),
    transparent
  );
  z-index: 1;
}

.rv .rv-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 2;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.rv .rv-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.rv .rv-play button {
  all: unset;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: radial-gradient(
    35px 35px at 30% 30%,
    #ffb169 0%,
    #ef7b1a 50%,
    #d95f00 100%
  );
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 var(--rv-ring), 0 10px 25px rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.rv .rv-play button:focus-visible {
  box-shadow: 0 0 0 8px var(--rv-ring), 0 10px 25px rgba(0, 0, 0, 0.45);
}

.rv .rv-play svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  transform: translateX(2px);
}

.rv .rv-card:hover .rv-thumb {
  transform: scale(1.05);
}

.rv .rv-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.rv .rv-card:active .rv-play button {
  transform: scale(0.98);
}

.rv .rv-hint {
  color: var(--rv-muted);
  font-size: 0.95rem;
  margin-top: 12px;
}

/* Lightbox — z-index above Bootstrap modal (>= 1055) */
.rv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 12, 0.8);
  backdrop-filter: blur(6px);
}

.rv-lightbox.open {
  display: flex;
}

.rv-player-shell {
  width: min(1200px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: calc(var(--rv-radius) + 4px);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: rv-pop 0.18s ease;
}

@keyframes rv-pop {
  from {
    transform: scale(0.985);
    opacity: 0.5;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.rv-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.rv-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.rv-player-shell iframe,
.rv-player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.rq-section {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0;
  color: var(--rq-text);
  overflow: hidden;
}
.rq-shell {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Head */
.rq-eyebrow {
  display: inline-block;
  font: 600 12px/1.1 system-ui, Segoe UI, Roboto, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rq-primary);
  background: rgba(255, 122, 24, 0.08);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
}
.rq-title {
  margin: 0.75rem 0 1rem;
  font: 800 clamp(28px, 4vw, 40px) / 1.1 system-ui, Segoe UI, Roboto, sans-serif;
}
.rq-accent {
  color: var(--rq-primary);
}
.rq-lead {
  color: black;
  max-width: 72ch;
  margin: 0.5rem 0 0;
}
.rq-cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.rq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  border: 1px solid #2b3440;
  transition: 0.25s;
}
.rq-btn--primary {
  background: var(--rq-primary);
  color: #1b120a;
  border-color: transparent;
}
.rq-btn--primary:hover {
  filter: brightness(0.95);
}
.rq-btn--ghost {
  color: var(--rq-primary);
  background: transparent;
}
.rq-btn--ghost:hover {
  background: #1a2330;
}

/* Visual Card */
.rq-card {
  margin-top: clamp(24px, 3.5vw, 40px);
  border: 1px solid #1f2733;
  border-radius: var(--rq-radius);
  padding: clamp(18px, 2.5vw, 28px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}
.rq-photos {
  position: relative;
  min-height: 240px;
}
.rq-photo {
  position: absolute;
  object-fit: cover;
  width: 60%;
  max-width: 520px;
  aspect-ratio: 4/3;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid #223042;
}
.rq-photo--back {
  left: 0;
  top: 0;
  transform: rotate(-2deg);
}
.rq-photo--front {
  right: 0;
  bottom: -14%;
  transform: rotate(2deg);
}
.rq-pill {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(11, 15, 20, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid #223042;
  color: #dfe9f3;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Highlights chips */
.rq-highlights {
  margin: clamp(160px, 28vw, 220px) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rq-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  background: #141b24;
  border: 1px solid #223042;
  color: #d6dee7;
  font-weight: 600;
}
.rq-chip svg {
  width: 18px;
  height: 18px;
}

/* Copy */
.rq-copy {
  margin-top: 1.5rem;
  color: black;
}

/* Features grid */
.rq-grid {
  margin-top: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.rq-feature {
  /* background: var(--rq-soft); */
  border: 1px solid #1f2733;
  border-radius: 14px;
  padding: 16px 14px;
  height: 100%;
}
.rq-feature h6 {
  margin: 0.25rem 0 0.35rem;
  font: 700 15px/1.25 system-ui, Segoe UI, Roboto, sans-serif;
}
.rq-feature p {
  margin: 0;
  color: black;
  font-size: 0.95rem;
}
.rq-ico {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #141b24;
  border: 1px solid #223042;
  margin-bottom: 0.4rem;
  color: var(--rq-primary);
}
.rq-ico svg {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .rq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rq-photo {
    width: 68%;
  }
}
@media (max-width: 640px) {
  .rq-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rq-highlights {
    margin-top: 140px;
  }
  .rq-photo {
    width: 78%;
  }
  .rq-photo--front {
    bottom: -10%;
  }
}
rectpackr-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 8px;
}

rectpackr-layout > * {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 8px;
  border-radius: 16px;
}

@media (min-width: 400px) {
  rectpackr-layout > * {
    width: 50%;
  }
}

@media (min-width: 800px) {
  rectpackr-layout > * {
    width: 33.333%;
  }
}

@media (min-width: 1200px) {
  rectpackr-layout > * {
    width: 25%;
  }
}

@media (min-width: 1600px) {
  rectpackr-layout > * {
    width: 19.999%;
  }
}

@media (min-width: 2000px) {
  rectpackr-layout > * {
    width: 12.5%;
  }
}

@media (min-width: 2400px) {
  rectpackr-layout > * {
    width: 9.999%;
  }
}

/* Brand helpers (match site colors) */
.text-brand-orange {
  color: var(--brand-orange) !important;
}
.fw-800 {
  font-weight: 800;
}
.fw-700 {
  font-weight: 700;
}

/* Card wrapper with big radius & soft shadow */
.card-soft {
  background: var(--card-bg);
  border: 1px solid var(--soft-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* Small icon badge used in info cards */
.badge-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #f7f9fc;
  border: 1px solid var(--soft-border);
  border-radius: 12px;
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.06);
  color: #4a67ff;
  font-size: 18px;
}

/* Buttons */
.btn-brand {
  background: var(--brand-orange);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  box-shadow: 0 10px 22px rgba(255, 122, 26, 0.28);
}
.btn-brand:hover {
  filter: brightness(0.95);
  color: #fff;
}

.btn-whatsapp {
  background: var(--brand-green);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 10px 22px rgba(25, 195, 125, 0.28);
}
.btn-whatsapp:hover {
  filter: brightness(0.95);
  color: #fff;
}

/* Inputs to match soft style */
.form-soft {
  border: 1px solid var(--soft-border) !important;
  border-radius: 14px !important;
  background: #fff !important;
}
.form-floating > .form-control.form-soft,
.form-floating > .form-select.form-soft {
  padding-top: 1.25rem;
  padding-bottom: 0.45rem;
}
.form-floating > label {
  color: #94a3b8;
}

/* Map ratio helper for wide map */
.ratio-21x9 {
  --bs-aspect-ratio: 42.857%;
}

/* Spacing tweak on small screens */
@media (max-width: 576px) {
  .btn-brand,
  .btn-whatsapp {
    width: 100%;
  }
}

.text-brand-orange {
  color: var(--brand-orange) !important;
}
.fw-800 {
  font-weight: 800;
}
.fw-700 {
  font-weight: 700;
}
.card-soft {
  background: var(--card-bg);
  border: 1px solid var(--soft-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.badge-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #f7f9fc;
  border: 1px solid var(--soft-border);
  border-radius: 12px;
  color: #4a67ff;
  font-size: 18px;
}
.btn-brand {
  background: var(--brand-orange);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  box-shadow: 0 10px 22px rgba(255, 122, 26, 0.28);
}
.btn-whatsapp {
  background: var(--brand-green);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 10px 22px rgba(25, 195, 125, 0.28);
}
.ratio-21x9 {
  --bs-aspect-ratio: 42.857%;
}
@media (max-width: 576px) {
  .btn-brand,
  .btn-whatsapp {
    width: 100%;
  }
}
.seo-section {
  background: #fff;
  border-top: 1px solid #f1f1f1;
}
.seo-section h2 {
  font-size: 2rem;
  color: #1e1e1e;
}
.seo-section p {
  line-height: 1.7;
  font-size: 1.05rem;
}
.text-brand-orange {
  color: #ff7a1a;
}

.footer-section {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: #ddd;
  font-size: 15px;
}
.footer-section h5,
.footer-section h4 {
  color: #fff;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--brand-orange);
}
.btn-social {
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.btn-social:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}
.text-brand-orange {
  color: #ff7a1a !important;
}
.btn-brand {
  background: #19c37d;
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(25, 195, 125, 0.25);
  transition: 0.3s;
}
.btn-brand:hover {
  background: #16a96c;
  transform: translateY(-2px);
}
.testimonial-section {
  background: #fafafa;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 1.8rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}
.text-brand-orange {
  color: #ff7a1a;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Fix contrast on light navbar */
.navbar-light .navbar-nav .nav-link {
  color: #212529 !important;         /* ~12.6:1 on white – passes AA/AAA */
}

/* Hover/Focus: still accessible on white */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: #ee7a03 !important;         /* ~4.6:1 on white – passes AA */
  text-decoration: underline;        /* clearer affordance */
  outline: none;
}

/* Active/current page */
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: #ee7a03 !important;         /* slightly darker than hover */
  font-weight: 600;
}

/* Optional: disabled */
.navbar-light .navbar-nav .nav-link.disabled {
  color: #6c757d !important;         /* ~5.6:1 on white – still passes */
  pointer-events: none;
  opacity: 1;                         /* avoid lowering contrast */
}

