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

:root {
  --bz-black: #0a0a0a;
  --bz-dark: #111111;
  --bz-charcoal: #1a1a1a;
  --bz-gray: #2a2a2a;
  --bz-mid: #444444;
  --bz-silver: #a8a8b0;
  --bz-silver-light: #c0c0c8;
  --bz-silver-dark: #8a8a92;
  --bz-light-gray: #f1f1f3;
  --bz-white: #ffffff;
  --bz-text-light: #b0b0b0;
  --bz-text-muted: #777777;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--bz-black);
  background-color: var(--bz-white);
  overflow-x: hidden;
}

.layout_padding { padding: 90px 0; }
.layout_padding2 { padding: 75px 0; }
.layout_padding2-top { padding-top: 75px; }
.layout_padding2-bottom { padding-bottom: 75px; }
.layout_padding-top { padding-top: 90px; }
.layout_padding-bottom { padding-bottom: 90px; }

h1, h2 {
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.heading_container { display: flex; flex-direction: column; align-items: flex-start; }
.heading_container h2 { position: relative; margin-bottom: 0; font-size: 2.5rem; font-weight: 700; color: var(--bz-black); }
.heading_container h2 span { color: var(--bz-black); font-weight: 700; }
.heading_container h2::after {
  content: ""; display: block; width: 50px; height: 3px;
  background: var(--bz-silver); margin-top: 12px;
}
.heading_container.heading_center h2::after { margin-left: auto; margin-right: auto; }
.heading_container p { margin-top: 10px; margin-bottom: 0; color: var(--bz-text-muted); font-size: 15px; }
.heading_container.heading_center { align-items: center; text-align: center; }

a, a:hover, a:focus { text-decoration: none; }
a:hover, a:focus { color: initial; }
.btn, .btn:focus { outline: none !important; box-shadow: none; }

/* ═══════════════════════ HERO AREA ═══════════════════════ */
.hero_area { position: relative; min-height: 100vh; display: flex; flex-direction: column; }
.bg-box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.bg-box img, .bg-box picture { width: 100%; height: 100%; }
.bg-box picture { display: block; }
.bg-box picture img { object-fit: cover; }
.bg-box::after {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.7) 40%,
    rgba(10,10,10,0.5) 65%,
    rgba(10,10,10,0.75) 100%
  );
}

.sub_page .hero_area { min-height: auto; }
.sub_page .hero_area .bg-box { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.sub_page .hero_area .bg-box img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ═══════════════════════ HEADER / NAV ═══════════════════════ */
.header_section { padding: 15px 0; position: relative; z-index: 10; }
.header_section .container-fluid { padding-right: 25px; padding-left: 25px; }

.navbar-brand { font-family: 'Rajdhani', sans-serif; letter-spacing: 3px; display: flex; align-items: center; }
.navbar-brand .navbar-logo { height: 35px; width: auto; }

.custom_nav-container { padding: 0; }
.custom_nav-container .navbar-nav { padding-left: 18%; }
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px; color: rgba(255,255,255,0.7); text-align: center;
  text-transform: uppercase; border-radius: 0; transition: all 0.3s;
  font-weight: 500; font-size: 13px; letter-spacing: 2px;
  border-bottom: 2px solid transparent;
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--bz-white);
  border-bottom-color: var(--bz-white);
}

.custom_nav-container .nav_search-btn { width: auto; height: auto; padding: 0; border: none; color: #ffffff; margin: 0 10px; }
.custom_nav-container .nav_search-btn:hover { color: var(--bz-silver-light); }

.user_option { display: flex; align-items: center; }
.user_option a { margin: 0 10px; }
.user_option .user_link { color: #ffffff; }
.user_option .user_link:hover { color: var(--bz-silver-light); }
.user_option .order_online {
  display: inline-block; padding: 10px 28px;
  background: var(--bz-white); color: var(--bz-black);
  border-radius: 0; transition: all 0.3s; border: none;
  font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 2px;
}
.user_option .order_online:hover { background: var(--bz-silver-light); }

.custom_nav-container .navbar-toggler { outline: none; padding: 0; width: 37px; height: 42px; transition: all 0.3s; }
.custom_nav-container .navbar-toggler span { display: block; width: 35px; height: 3px; background-color: #ffffff; margin: 7px 0; transition: all 0.3s; position: relative; border-radius: 0; }
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after { content: ""; position: absolute; left: 0; height: 100%; width: 100%; background-color: #ffffff; top: -10px; border-radius: 0; transition: all 0.3s; }
.custom_nav-container .navbar-toggler span::after { top: 10px; }
.custom_nav-container .navbar-toggler[aria-expanded="true"] { transform: rotate(360deg); }
.custom_nav-container .navbar-toggler[aria-expanded="true"] span { transform: rotate(45deg); }
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after { transform: rotate(90deg); top: 0; }

/* ═══════════════════════ SLIDER / HERO CONTENT ═══════════════════════ */
.slider_section { flex: 1; display: flex; align-items: center; position: relative; padding: 45px 0 75px 0; }
.slider_section .row { align-items: center; }
.slider_section #customCarousel1 { width: 100%; position: unset; }
.slider_section .detail-box { color: #ffffff; margin-bottom: 145px; }
.slider_section .detail-box h1 {
  font-size: 3.2rem; font-weight: 700; margin-bottom: 15px;
  line-height: 1.1; text-transform: uppercase; letter-spacing: 4px;
}
.slider_section .detail-box h1 .accent { color: var(--bz-silver-light); }
.slider_section .detail-box p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 520px; font-weight: 300; }
.slider_section .detail-box .btn-box { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 15px; }
.slider_section .detail-box a {
  display: inline-block; padding: 14px 45px;
  background: var(--bz-white); color: var(--bz-black);
  border-radius: 0; transition: all 0.3s;
  border: none; margin-top: 0; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
}
.slider_section .detail-box a:hover { background: var(--bz-light-gray); transform: translateY(-2px); }
.slider_section .detail-box .btn-outline {
  background: transparent; border: 2px solid rgba(255,255,255,0.3);
  color: var(--bz-white); font-weight: 600;
}
.slider_section .detail-box .btn-outline:hover { border-color: var(--bz-white); background-color: rgba(255,255,255,0.06); transform: translateY(-2px); }

.slider_section .carousel-indicators { position: unset; margin: 0; justify-content: flex-start; align-items: center; }
.slider_section .carousel-indicators li { background-color: rgba(255,255,255,0.3); width: 30px; height: 3px; border-radius: 0; opacity: 1; border: none; margin: 0 4px; }
.slider_section .carousel-indicators li.active { width: 50px; background-color: var(--bz-white); }

/* ═══════════════════════ OFFER / FEATURES ═══════════════════════ */
.offer_section { position: relative; padding-top: 45px; }
.offer_section .box {
  display: flex; align-items: center; margin-top: 45px; border-radius: 0;
  padding: 30px 25px; background-color: var(--bz-black); color: #ffffff;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--bz-silver);
}
.offer_section .box:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.offer_section .box .img-box {
  width: 90px; min-width: 90px; height: 90px; margin-right: 25px;
  border-radius: 0; border: 2px solid var(--bz-silver); overflow: hidden;
  display: flex; justify-content: center; align-items: center;
  background: rgba(168,168,176,0.06);
}
.offer_section .box .img-box i { font-size: 32px; color: var(--bz-white); }
.offer_section .box .detail-box h5 { font-family: 'Rajdhani', sans-serif; font-size: 20px; margin: 0 0 8px 0; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.offer_section .box .detail-box p { font-size: 14px; color: var(--bz-text-light); line-height: 1.6; margin: 0; }
.offer_section .box .detail-box a {
  display: inline-block; padding: 8px 22px; background: var(--bz-white); color: var(--bz-black);
  border-radius: 0; transition: all 0.3s; border: none; font-weight: 700;
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-top: 12px;
}
.offer_section .box .detail-box a:hover { background: var(--bz-silver-light); }

/* ═══════════════════════ SERVICES (was food) ═══════════════════════ */
.food_section .filters_menu {
  padding: 0; display: flex; flex-wrap: wrap; justify-content: center;
  list-style-type: none; margin: 45px 0 20px 0;
}
.food_section .filters_menu li {
  padding: 8px 28px; cursor: pointer; border-radius: 0;
  font-weight: 600; text-transform: uppercase; font-size: 12px;
  letter-spacing: 2px; transition: all 0.3s; border: 1px solid transparent;
}
.food_section .filters_menu li.active { background-color: var(--bz-black); color: #ffffff; }
.food_section .filters_menu li:hover:not(.active) { border-color: var(--bz-black); }

.food_section .box {
  position: relative; margin-top: 25px; border-radius: 0; color: #ffffff;
  overflow: hidden; background: linear-gradient(to bottom, var(--bz-light-gray) 25px, var(--bz-black) 25px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.food_section .box:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
.food_section .box .img-box {
  background: var(--bz-light-gray); display: flex; justify-content: center;
  align-items: center; height: 215px; border-radius: 0 0 0 45px; margin: -1px; padding: 25px;
}
.food_section .box .img-box img { max-width: 100%; max-height: 145px; transition: all .2s; }
.food_section .box .img-box i { font-size: 56px; color: var(--bz-black); }
.food_section .box .detail-box { padding: 25px; }
.food_section .box .detail-box h5 { font-weight: 700; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; font-size: 18px; letter-spacing: 2px; }
.food_section .box .detail-box p { font-size: 14px; color: var(--bz-text-light); line-height: 1.7; }
.food_section .box .options { display: flex; justify-content: space-between; }
.food_section .box .options a { width: 40px; height: 40px; border-radius: 0; background: var(--bz-white); display: flex; justify-content: center; align-items: center; }
.food_section .box .options a svg { width: 18px; height: auto; fill: var(--bz-black); }
.food_section .box:hover .img-box img { transform: scale(1.1); }

.food_section .btn-box { display: flex; justify-content: center; margin-top: 45px; }
.food_section .btn-box a {
  display: inline-block; padding: 14px 55px; background: var(--bz-black);
  color: #ffffff; border-radius: 0; transition: all 0.3s; border: 2px solid var(--bz-black);
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
}
.food_section .btn-box a:hover { background: transparent; color: var(--bz-black); }

/* ═══════════════════════ ABOUT SECTION ═══════════════════════ */
.about_section { background: var(--bz-black); color: #ffffff; overflow: hidden; }
.about_section .row { align-items: stretch; }
.about-img-col {
  position: relative; overflow: hidden; min-height: 450px;
  display: flex; align-items: flex-end; justify-content: center;
  background: var(--bz-black);
}
.about-img-col picture, .about-img-col img {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 100%; width: auto; max-width: none;
  object-fit: contain; object-position: bottom center;
}
.about-detail-padded { padding: 60px 50px 60px 40px; }
.about_section .heading_container h2 { color: var(--bz-white); }
.about_section .heading_container h2 span { color: var(--bz-silver-light); }
.about_section .heading_container h2::after { background: var(--bz-silver); }
.about_section .detail-box p { margin-top: 15px; color: var(--bz-text-light); line-height: 1.8; font-weight: 300; }
.about_section .detail-box a {
  display: inline-block; padding: 14px 45px;
  background: var(--bz-white); color: var(--bz-black);
  border-radius: 0; transition: all 0.3s;
  border: none; margin-top: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
}
.about_section .detail-box a:hover { background: var(--bz-silver-light); }

/* ═══════════════════════ CONTACT / BOOK ═══════════════════════ */
.book_section { position: relative; }
.book_section .heading_container { margin-bottom: 25px; }
.book_section .form_container .form-control {
  width: 100%; height: 50px; margin-bottom: 20px; padding-left: 20px;
  border: 1px solid #ddd; outline: none; color: #000; border-radius: 0;
  box-shadow: none; font-family: 'Barlow', sans-serif; font-size: 14px;
  transition: border-color 0.3s;
}
.book_section .form_container .form-control:focus { border-color: var(--bz-black); }
.book_section .form_container .form-control::placeholder { color: #999; }
.book_section .form_container .nice-select .current { font-size: 14px; }
.book_section .form_container textarea.form-control { height: 120px; padding-top: 15px; resize: none; }
.book_section .form_container button {
  margin-top: 15px; border: none; text-transform: uppercase;
  display: inline-block; padding: 14px 55px;
  background: var(--bz-black); color: var(--bz-white);
  border-radius: 0; transition: all 0.3s;
  font-weight: 700; letter-spacing: 2px; font-size: 13px;
}
.book_section .form_container button:hover { background: var(--bz-gray); }
.book_section .map_container { width: 100%; height: 345px; border-radius: 0; overflow: hidden; border: 1px solid #ddd; }
.book_section .map_container #googleMap { height: 100%; min-height: 100%; width: 100%; }

/* ═══════════════════════ CLIENTS / TESTIMONIALS ═══════════════════════ */
.client_section .heading_container { margin-bottom: 30px; }
.client_section .box { display: flex; flex-direction: column; margin: 15px; }
.client_section .box .img-box { position: relative; display: flex; justify-content: center; align-items: center; width: 115px; margin-top: 30px; }
.client_section .box .img-box img { border-radius: 100%; border: 3px solid var(--bz-silver); position: relative; }
.client_section .box .img-box::before { content: ""; position: absolute; left: 50%; top: 0; width: 20px; height: 20px; background-color: var(--bz-silver); transform: rotate(45deg) translateX(-50%); }
.client_section .box .detail-box { background-color: var(--bz-black); color: #ffffff; padding: 25px 25px 15px 25px; border-radius: 0; }
.client_section .box .detail-box h6 { font-weight: 700; font-size: 16px; margin: 15px 0 5px 0; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.client_section .box .detail-box p { font-size: 14px; color: var(--bz-text-light); line-height: 1.7; }

/* ═══════════════════════ STATS ═══════════════════════ */
.stats_section { background: var(--bz-black); padding: 70px 0; position: relative; }
.stats_section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--bz-silver), transparent);
}
.stats_section::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--bz-silver), transparent);
}
.stats_section .stat-box { text-align: center; padding: 20px; }
.stats_section .stat-box h3 { font-family: 'Rajdhani', sans-serif; font-size: 3.2rem; font-weight: 700; color: var(--bz-white); margin-bottom: 5px; }
.stats_section .stat-box p { color: var(--bz-silver); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 600; }

/* ═══════════════════════ WHY US ═══════════════════════ */
.why_section { background: var(--bz-light-gray); padding: 90px 0; }
.why_section .why-box {
  text-align: center; padding: 45px 25px; border-radius: 0;
  transition: all 0.4s; background: var(--bz-white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.04); margin-top: 25px;
  border-bottom: 3px solid transparent;
}
.why_section .why-box:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-bottom-color: var(--bz-black); }
.why_section .why-box .icon-box {
  width: 75px; height: 75px; background: var(--bz-black); border-radius: 0;
  display: flex; justify-content: center; align-items: center; margin: 0 auto 20px;
}
.why_section .why-box .icon-box i { font-size: 28px; color: var(--bz-white); }
.why_section .why-box h5 { font-family: 'Rajdhani', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 17px; letter-spacing: 2px; color: var(--bz-black); }
.why_section .why-box p { font-size: 14px; color: var(--bz-text-muted); line-height: 1.7; }

/* ═══════════════════════ FOOTER ═══════════════════════ */
footer.footer_section { background-color: var(--bz-black); color: #ffffff; padding: 50px 0 25px 0; }
footer.footer_section h4 { font-family: 'Rajdhani', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 18px; margin-bottom: 20px; color: var(--bz-white); }
footer.footer_section p { color: var(--bz-text-light); font-size: 14px; }
footer.footer_section .footer-col { margin-bottom: 25px; }
footer .contact_link_box { display: flex; flex-direction: column; }
footer .contact_link_box a { margin: 5px 0; color: var(--bz-text-light); transition: color 0.3s; }
footer .contact_link_box a:hover { color: var(--bz-white); }
footer .contact_link_box a i { margin-right: 10px; color: var(--bz-silver); width: 20px; text-align: center; }
footer .footer_detail .footer-logo {
  display: inline-block; margin-bottom: 15px;
}
footer .footer_detail .footer-logo-img { height: 35px; width: auto; opacity: 0.9; }
footer .footer_detail .footer-logo-img:hover { opacity: 1; }
footer .footer_social { margin-top: 15px; }
footer .footer_social a {
  display: inline-block; width: 35px; height: 35px; border-radius: 0;
  background-color: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5);
  text-align: center; line-height: 35px; margin-right: 5px; transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}
footer .footer_social a:hover { background-color: var(--bz-white); color: var(--bz-black); border-color: var(--bz-white); }
footer .footer-info { text-align: center; margin-top: 35px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.06); }
footer .footer-info p { color: rgba(255,255,255,0.25); margin: 0; font-size: 12px; letter-spacing: 1px; }
footer .footer-info p a { color: var(--bz-silver-light); }

/* ═══════════════════════ SECTION DIVIDERS ═══════════════════════ */
.section-divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent 5%, var(--bz-silver) 30%, var(--bz-silver) 70%, transparent 95%);
  opacity: 0.25;
}

/* ═══════════════════════ TRUST / CONFÍAN EN NOSOTROS ═══════════════════════ */
.trust_section { padding: 70px 0; background: var(--bz-black); }
.trust_section .heading_container h2 { color: var(--bz-white); }
.trust_section .heading_container h2 span { color: var(--bz-silver-light); }
.trust_section .heading_container h2::after { background: var(--bz-silver); }
.trust_section .heading_container p { color: var(--bz-text-light); }
.trust_section .heading_container { margin-bottom: 40px; }
.trust-carousel-wrap { margin-top: 10px; }
.trust-item { display: flex; justify-content: center; align-items: center; padding: 15px 10px; }
.trust-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px 15px; width: 100%;
  border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s;
  min-height: 120px; background: rgba(255,255,255,0.04);
}
.trust-logo:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.trust-logo i {
  font-size: 28px; color: var(--bz-white); margin-bottom: 10px; transition: color 0.3s;
  opacity: 0.7;
}
.trust-logo:hover i { color: var(--bz-white); opacity: 1; }
.trust-logo span {
  font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--bz-silver); line-height: 1.3;
}
.trust-logo:hover span { color: var(--bz-white); }

/* Override owl dots for trust */
.trust_owl-carousel .owl-stage { display: flex; align-items: stretch; }

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  padding: 18px 40px; border-radius: 50px;
  font-family: "Rajdhani", sans-serif; font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.whatsapp-btn i { font-size: 28px; }
.whatsapp-btn:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); text-decoration: none; }

/* Nav WhatsApp button */
.order_online--wa { background: #000 !important; color: #fff !important; display: inline-flex; align-items: center; gap: 6px; }
.order_online--wa i { font-size: 18px; }
.order_online--wa:hover { background: #222 !important; color: #fff !important; }

/* WhatsApp button dark */
.whatsapp-btn--dark { background: #111 !important; box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important; }
.whatsapp-btn--dark:hover { background: #333 !important; box-shadow: 0 8px 30px rgba(0,0,0,0.5) !important; }

/* Client icon */
.client-icon { font-size: 70px; color: #fff; opacity: 0.6; }

/* Mockup section */
.mockup_section { background: var(--bz-dark); padding: 60px 0; }
.mockup-img { width: 100%; border-radius: 12px; object-fit: cover; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.mockup_owl-carousel .owl-nav button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1) !important; color: #fff !important; width: 36px; height: 36px; border-radius: 50% !important; font-size: 18px !important; }
.mockup_owl-carousel .owl-nav button.owl-prev { left: -18px; }
.mockup_owl-carousel .owl-nav button.owl-next { right: -18px; }
.mockup_owl-carousel .owl-dots { text-align: center; margin-top: 14px; }
.mockup_owl-carousel .owl-dot span { background: rgba(255,255,255,0.3) !important; }
.mockup_owl-carousel .owl-dot.active span { background: #fff !important; }

/* Benefits list */
.benefits-list { padding-left: 30px; }
.benefit-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.benefit-icon { flex-shrink: 0; width: 42px; height: 42px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.benefit-icon i { font-size: 18px; color: #fff; }
.benefit-content h5 { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.benefit-content p { font-size: 13px; color: var(--bz-silver); margin-bottom: 4px; line-height: 1.5; }
.benefit-adios { color: #aaa !important; font-size: 12px !important; }
.benefit-adios i { color: #e55; margin-right: 4px; }

/* About image overlay */
.about-img-wrap { position: relative; width: 100%; height: 100%; }
.about-img-wrap picture, .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(transparent, rgba(0,0,0,0.75)); }
.about-img-overlay span { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 3px; }

/* About section mobile fix */
@media (max-width: 767px) {
  .about-img-col { height: 260px; overflow: hidden; }
  .about-img-wrap { height: 260px; }
  .about-img-wrap img { height: 260px; object-fit: cover; object-position: center top; }
  .benefits-list { padding-left: 0; margin-top: 20px; }
}

/* Client carousel dots */
.client_owl-carousel .owl-nav { display: none !important; }
.client_owl-carousel .owl-dots { text-align: center; margin-top: 20px; }
.client_owl-carousel .owl-dot span { width: 10px; height: 10px; background: rgba(255,255,255,0.3) !important; border-radius: 50%; display: inline-block; margin: 0 4px; transition: background 0.3s; }
.client_owl-carousel .owl-dot.active span { background: #fff !important; }

/* Kill all OWL nav diamonds site-wide */
.owl-nav { display: none !important; }
.owl-nav button, .owl-prev, .owl-next { display: none !important; }
