/**
* SmartTech — صيانة الأجهزة المنزلية
* Redesigned stylesheet
* Base: Medicio (BootstrapMade) — heavily rebuilt for this brand
*/

/*--------------------------------------------------------------
# Design tokens
--------------------------------------------------------------*/
:root {
  /* Brand teal, deepened for a more professional / trustworthy feel */
  --st-teal-900: #0B3B3E;
  --st-teal-700: #0E7A7E;
  --st-teal-600: #12969B;
  --st-teal-500: #17ACB1;
  --st-teal-50:  #EAF6F6;

  /* Warm accent used sparingly — urgency / call actions */
  --st-amber: #E8933A;
  --st-amber-dark: #C97722;

  /* Neutrals */
  --st-ink: #16292B;
  --st-ink-soft: #4B6264;
  --st-paper: #FCFBF8;
  --st-sand: #F6F3EC;
  --st-line: #E3ECEC;
  --st-white: #FFFFFF;

  --st-radius: 16px;
  --st-radius-sm: 10px;
  --st-shadow: 0 10px 30px -12px rgba(11, 59, 62, 0.18);
  --st-shadow-lg: 0 24px 60px -20px rgba(11, 59, 62, 0.28);

  --st-font-body: "Tajawal", "Segoe UI", sans-serif;
  --st-font-head: "Almarai", "Tajawal", sans-serif;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--st-font-body);
  color: var(--st-ink-soft);
  font-weight: 500;
  background: var(--st-paper);
  line-height: 1.8;
}

a {
  color: var(--st-teal-700);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover { color: var(--st-amber); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--st-font-head);
  color: var(--st-ink);
  font-weight: 800;
}

img { max-width: 100%; }

::selection { background: var(--st-teal-500); color: #fff; }

:focus-visible {
  outline: 3px solid var(--st-amber);
  outline-offset: 2px;
}

.container { max-width: 1220px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--st-paper);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  border: 5px solid var(--st-teal-50);
  border-top-color: var(--st-teal-600);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  animation: st-spin 0.9s linear infinite;
}

@keyframes st-spin {
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--st-ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--st-shadow);
  transition: all 0.35s;
}

.back-to-top i { font-size: 24px; color: #fff; line-height: 0; }

.back-to-top:hover { background: var(--st-teal-600); transform: translateY(-4px); }

.back-to-top.active { visibility: visible; opacity: 1; }

@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Top notice bar
--------------------------------------------------------------*/
.st-topbar {
  background: var(--st-ink);
  color: #EAF6F6;
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.2px;
}

.st-topbar .st-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39D6A5;
  margin-left: 8px;
  box-shadow: 0 0 0 0 rgba(57, 214, 165, 0.6);
  animation: st-pulse 1.8s infinite;
}

.st-topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.st-topbar a:hover { color: var(--st-amber); }

@keyframes st-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(57, 214, 165, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(57, 214, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 214, 165, 0); }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  transition: all 0.35s;
  z-index: 997;
  padding: 14px 0;
  top: 34px;
  box-shadow: 0 1px 0 var(--st-line);
}

#header.header-scrolled {
  top: 0;
  padding: 8px 0;
  box-shadow: 0 8px 24px -16px rgba(11, 59, 62, 0.35);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-family: var(--st-font-head);
}

#header .logo a {
  color: var(--st-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#header .logo .st-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--st-teal-600), var(--st-teal-900));
  color: #fff;
  flex-shrink: 0;
}

#header .logo .st-mark svg { width: 20px; height: 20px; }

.appointment-btn {
  margin-right: 18px;
  background: var(--st-amber);
  color: #fff;
  border-radius: 999px;
  padding: 10px 26px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px -10px rgba(232, 147, 58, 0.7);
}

.appointment-btn:hover { background: var(--st-amber-dark); color: #fff; transform: translateY(-1px); }

@media (max-width: 768px) {
  .appointment-btn { padding: 8px 16px; }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar { padding: 0; }

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.navbar li { position: relative; }

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-family: var(--st-font-head);
  font-size: 16px;
  color: var(--st-ink);
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 700;
  border-radius: 999px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--st-teal-700);
  background: var(--st-teal-50);
}

.mobile-nav-toggle {
  color: var(--st-ink);
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x { color: #fff; }

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: rgba(11, 41, 43, 0.94);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 18px;
  left: 20px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 70px;
  right: 16px;
  left: 16px;
  bottom: 16px;
  padding: 12px 0;
  border-radius: var(--st-radius);
  background-color: var(--st-white);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 14px 22px;
  font-size: 16px;
  color: var(--st-ink);
  border-radius: 0;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--st-teal-700);
  background: var(--st-teal-50);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  min-height: 620px;
  background-color: var(--st-ink);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item {
  position: absolute;
  inset: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 41, 43, 0.55) 0%, rgba(11, 41, 43, 0.72) 55%, rgba(11, 41, 43, 0.92) 100%);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.st-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #EAF6F6;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.st-badge .st-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #39D6A5;
  animation: st-pulse 1.8s infinite;
}

#hero h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1.25;
  margin-bottom: 18px;
  max-width: 820px;
}

#hero h1 span { color: var(--st-teal-500); }

#hero p.hero-lead {
  color: #DDEFEF;
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 34px auto;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.btn-hero {
  font-family: var(--st-font-head);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  transition: 0.3s;
  color: #fff;
  border: 2px solid transparent;
}

.btn-hero.primary { background: var(--st-amber); box-shadow: 0 14px 30px -12px rgba(232, 147, 58, 0.8); }
.btn-hero.primary:hover { background: var(--st-amber-dark); color: #fff; transform: translateY(-2px); }

.btn-hero.ghost { border-color: rgba(255,255,255,0.5); background: transparent; }
.btn-hero.ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.hero-trust {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  color: #fff;
}

.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #CFE6E6;
}

.hero-trust .item i { color: var(--st-teal-500); font-size: 20px; }

#hero .carousel-indicators { z-index: 3; bottom: 24px; }

#hero .carousel-indicators li,
#hero .carousel-indicators [data-bs-target] {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  opacity: 0.45;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  margin: 0 4px;
  transition: 0.3s;
}

#hero .carousel-indicators li.active,
#hero .carousel-indicators .active { opacity: 1; width: 22px; border-radius: 5px; background: var(--st-teal-500); }

#hero .carousel-control-prev, #hero .carousel-control-next { z-index: 3; width: 8%; opacity: 1; }

#hero .carousel-control-prev-icon, #hero .carousel-control-next-icon {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.3);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; line-height: 0;
  transition: 0.3s;
}

#hero .carousel-control-prev-icon:hover, #hero .carousel-control-next-icon:hover { background: var(--st-teal-600); }

@media (max-width: 768px) {
  #hero h1 { font-size: 32px; }
  #hero p.hero-lead { font-size: 16px; }
  .hero-trust { gap: 18px; }
}

@media (max-height: 560px) {
  #hero { height: auto; min-height: 100vh; padding: 130px 0 60px; }
}

/*--------------------------------------------------------------
# Sections general
--------------------------------------------------------------*/
section { padding: 90px 0; overflow: hidden; }

.section-bg { background-color: var(--st-teal-50); }

.section-title { text-align: center; padding-bottom: 48px; max-width: 720px; margin: 0 auto 0; }

.section-title .eyebrow {
  display: inline-block;
  color: var(--st-teal-700);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  background: var(--st-teal-50);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title p { margin-bottom: 0; color: var(--st-ink-soft); font-size: 16.5px; }

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .section-title h2 { font-size: 27px; }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .about-media {
  position: relative;
  border-radius: var(--st-radius);
  overflow: hidden;
  box-shadow: var(--st-shadow-lg);
}

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

.about .about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid var(--st-paper);
  border-radius: var(--st-radius);
  pointer-events: none;
}

.about .content { padding-inline-start: 10px; }

.about-text {
  font-size: 17px;
  line-height: 2;
  font-weight: 500;
  color: var(--st-ink-soft);
  margin-bottom: 20px;
}

.about-text:last-of-type { margin-bottom: 0; }

.about .content ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about .content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--st-ink);
  font-size: 14.5px;
  background: var(--st-teal-50);
  padding: 10px 14px;
  border-radius: var(--st-radius-sm);
}

.about .content ul i { font-size: 18px; color: var(--st-teal-600); }

/*--------------------------------------------------------------
# Featured Services (appliance categories)
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--st-white);
  box-shadow: var(--st-shadow);
  transition: all 0.35s ease;
  border-radius: var(--st-radius);
  z-index: 1;
  text-align: center;
  height: 100%;
  border: 1px solid var(--st-line);
}

.featured-services .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--st-shadow-lg);
  border-color: var(--st-teal-500);
}

.featured-services .icon-box .cat-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--st-teal-50);
}

.featured-services .icon-box .cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-services .icon-box:hover .cat-media img { transform: scale(1.08); }

.featured-services .title {
  font-weight: 800;
  margin: 0;
  padding: 18px 10px;
  font-size: 19px;
  color: var(--st-ink);
}

/*--------------------------------------------------------------
# Services grid
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 0;
  text-align: center;
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 38px 26px;
  height: 100%;
  transition: all 0.3s;
}

.services .icon-box:hover {
  border-color: var(--st-teal-500);
  box-shadow: var(--st-shadow);
  transform: translateY(-4px);
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  background: var(--st-teal-50);
  border-radius: 20px;
  color: var(--st-teal-700);
}

.services .icon i { font-size: 32px; line-height: 0; }
.services .icon img { width: 38px; height: 38px; object-fit: contain; }

.services .title {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 19px;
}

.services .title a { color: var(--st-ink); transition: 0.3s; }
.services .title a:hover { color: var(--st-teal-700); }

.services .description { line-height: 1.9; font-size: 14.5px; color: var(--st-ink-soft); }

/*--------------------------------------------------------------
# Local Areas
--------------------------------------------------------------*/
.local-areas .area-card {
  height: 100%;
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-sm);
  padding: 28px 24px;
  box-shadow: var(--st-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.local-areas .area-card:hover {
  transform: translateY(-5px);
  border-color: var(--st-teal-500);
  box-shadow: var(--st-shadow-lg);
}

.local-areas .area-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.45;
}

.local-areas .area-card p {
  margin-bottom: 20px;
  color: var(--st-ink-soft);
  line-height: 1.9;
}

.local-areas .area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.local-areas .area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--st-teal-50);
  color: var(--st-teal-700);
  font-size: 13px;
  font-weight: 800;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery { overflow: hidden; background: var(--st-teal-50); }

.gallery .gallery-slider.swiper { padding: 20px 0 50px; }

.gallery .swiper-slide {
  border-radius: var(--st-radius-sm);
  overflow: hidden;
  box-shadow: var(--st-shadow);
}

.gallery .swiper-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery .swiper-slide:hover img { transform: scale(1.05); }

.gallery .swiper-pagination { margin-top: 10px; position: relative; }

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background-color: var(--st-white);
  opacity: 1;
  border: 1px solid var(--st-teal-600);
}

.gallery .swiper-pagination .swiper-pagination-bullet-active { background-color: var(--st-teal-600); }

@media (min-width: 992px) {
  .gallery .swiper-slide-active {
    transform: scale(1.06);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-card {
  height: 100%;
  overflow: hidden;
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-sm);
  box-shadow: var(--st-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--st-shadow-lg);
  border-color: var(--st-teal-500);
}

.blog .blog-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--st-teal-50);
}

.blog .blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog .blog-card:hover .blog-media img { transform: scale(1.06); }

.blog .blog-content { padding: 24px 24px 26px; }

.blog .blog-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--st-teal-700);
  font-size: 13px;
  font-weight: 800;
}

.blog h3 {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.45;
}

.blog p {
  color: var(--st-ink-soft);
  line-height: 1.9;
  margin-bottom: 18px;
}

.blog .blog-link {
  font-weight: 800;
  color: var(--st-amber-dark);
}

.blog .blog-link:hover { color: var(--st-teal-700); }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .map-wrap {
  border-radius: var(--st-radius);
  overflow: hidden;
  box-shadow: var(--st-shadow);
  line-height: 0;
  margin-bottom: 46px;
}

.contact .map-wrap iframe { display: block; width: 100%; }

.contact .info-box {
  color: var(--st-ink-soft);
  text-align: center;
  background: var(--st-white);
  border: 1px solid var(--st-line);
  box-shadow: var(--st-shadow);
  padding: 34px 20px;
  border-radius: var(--st-radius);
  height: 100%;
  transition: 0.3s;
}

.contact .info-box:hover { transform: translateY(-4px); border-color: var(--st-teal-500); }

.contact .info-box .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--st-teal-50);
  margin-bottom: 16px;
}

.contact .info-box i { font-size: 26px; color: var(--st-teal-700); }

.contact .info-box h3 {
  font-size: 18px;
  color: var(--st-ink);
  font-weight: 800;
  margin: 0 0 8px;
}

.contact .info-box p, .contact .info-box a {
  padding: 0;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  color: var(--st-ink-soft);
  font-weight: 700;
}

.contact .info-box a:hover { color: var(--st-teal-700); }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--st-ink);
  padding: 40px 0 18px;
  color: #CFE0E0;
  font-size: 14px;
}

#footer .footer-top { background: transparent; padding: 0; }

#footer .footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--st-font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
}

#footer hr {
  border-color: rgba(255,255,255,0.12);
  margin: 20px 0;
}

#footer .copyright {
  text-align: center;
  padding-top: 6px;
  color: #A9C3C3;
}

#footer .copyright span { color: #fff; font-weight: 700; }

#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #8FADAD;
}

#footer .credits a { color: var(--st-teal-500); }

/*--------------------------------------------------------------
# Floating quick actions
--------------------------------------------------------------*/
.contacts {
  position: fixed;
  bottom: 24px;
  z-index: 998;
  left: 20px;
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-icon-wats a, .contact-icon-calls a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--st-shadow-lg);
  transition: transform 0.3s;
  background: var(--st-white);
}

.contact-icon-wats a:hover, .contact-icon-calls a:hover { transform: scale(1.08) translateY(-2px); }

.contacts img { width: 100%; height: 100%; object-fit: cover; }

/* legacy leftover element hidden — replaced by .st-topbar */
.notification-top { display: none; }

/*--------------------------------------------------------------
# Hero Carousel Slide Tags
--------------------------------------------------------------*/
.carousel-slide-tag {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/*--------------------------------------------------------------
# Service Card — Icon-only variant (Deepfreeze)
--------------------------------------------------------------*/
.cat-media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--st-teal-50);
}

.cat-media--icon i {
  font-size: 72px;
  color: var(--st-teal-600);
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Stats Counter
--------------------------------------------------------------*/
.stats { padding: 70px 0; }

.stat-item {
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 34px 20px;
  transition: 0.3s;
  box-shadow: var(--st-shadow);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--st-teal-500);
  box-shadow: var(--st-shadow-lg);
}

.stat-number {
  display: inline-block;
  font-family: var(--st-font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--st-teal-700);
  line-height: 1;
}

.stat-plus {
  font-family: var(--st-font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--st-amber);
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}

.stat-label {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--st-ink-soft);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials { background: var(--st-paper); }

.testimonial-card {
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 30px 26px;
  box-shadow: var(--st-shadow);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--st-teal-500);
  box-shadow: var(--st-shadow-lg);
}

.testimonial-stars {
  color: #F5A623;
  font-size: 17px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--st-ink-soft);
  flex: 1;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--st-line);
  padding-top: 16px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--st-teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 26px;
  color: var(--st-teal-600);
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--st-ink);
  font-weight: 800;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--st-ink-soft);
  font-weight: 500;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: var(--st-teal-500);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--st-font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--st-ink);
  cursor: pointer;
  text-align: right;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--st-teal-700); }

.faq-item.active .faq-question { color: var(--st-teal-700); }

.faq-question .bi-question-circle {
  font-size: 20px;
  color: var(--st-teal-600);
  flex-shrink: 0;
}

.faq-arrow {
  margin-inline-start: auto;
  font-size: 18px;
  color: var(--st-teal-600);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--st-ink-soft);
  margin: 0;
}

/*--------------------------------------------------------------
# Mobile Sticky CTA Bar
--------------------------------------------------------------*/
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  height: 58px;
  box-shadow: 0 -4px 20px rgba(11, 59, 62, 0.18);
}

.mobile-cta-call,
.mobile-cta-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--st-font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-cta-call:hover,
.mobile-cta-whatsapp:hover { opacity: 0.9; color: #fff; }

.mobile-cta-call {
  background: var(--st-teal-700);
}

.mobile-cta-whatsapp {
  background: #25D366;
}

.mobile-cta-call i,
.mobile-cta-whatsapp i { font-size: 20px; }

/* Push footer content up on mobile to clear the sticky bar */
@media (max-width: 991px) {
  body { padding-bottom: 58px; }
  .contacts { display: none; }
  .back-to-top { bottom: 72px; }
}
