/* ============================================================
   K STROK PRODUCTS – style.css
   Color Theme: #3F5BE3 (Primary Blue) + White Background
   Font: Barlow / Barlow Condensed
   ============================================================ */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #3F5BE3;
  --blue-dark: #2940b8;
  --blue-deeper: #1e2d8a;
  --blue-light: #eef1fd;
  --blue-mid: #6b83ea;
  --accent: #f0c040;
  --white: #ffffff;
  --gray-100: #f8f9fc;
  --gray-200: #e9ecf4;
  --gray-600: #5a6070;
  --gray-800: #2b2f3a;
  --text: #1e2333;
  --shadow-sm: 0 2px 10px rgba(63, 91, 227, 0.10);
  --shadow-md: 0 6px 28px rgba(63, 91, 227, 0.15);
  --shadow-lg: 0 12px 48px rgba(63, 91, 227, 0.20);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ---- SECTION UTILITIES ---- */
.section-pad {
  padding: 80px 0;
}

.bg-light-custom {
  background: var(--gray-100);
}

.bg-blue-dark {
  background: var(--blue-deeper);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(63, 91, 227, 0.2);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-label-white {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(240, 192, 64, 0.12);
  border: 1px solid rgba(240, 192, 64, 0.25);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 12px;
}

.text-blue {
  color: var(--blue) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid var(--blue);
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(63, 91, 227, 0.30);
}

.btn-primary-custom:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--blue) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: 6px;
  border: 2px solid var(--blue);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--blue);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--blue-deeper);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.88);
  transition: var(--transition);
}

.topbar-link:hover {
  color: var(--accent);
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}

.topbar-social:hover {
  background: var(--blue);
  color: var(--white);
}

/* ---- HEADER / NAVBAR ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(63, 91, 227, 0.10);
  z-index: 999;
}

.navbar {
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--gray-800) !important;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-size: 20px;
}

.brand-text {
  color: var(--gray-800);
}

.brand-accent {
  color: var(--blue);
}

.toggler-icon {
  font-size: 24px;
  color: var(--blue);
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 4px 8px;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue) !important;
  background: var(--blue-light);
}

/* ---- HERO ---- */
.hero-slide {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 8s ease;
}

.carousel-item.active .hero-bg-img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 60%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
  padding: 60px 0 40px;
  animation: heroFadeUp 0.8s ease forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(240, 192, 64, 0.12);
  border: 1px solid rgba(240, 192, 64, 0.3);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 6px;
  border: 2px solid var(--blue);
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(63, 91, 227, 0.4);
}

.btn-hero-primary:hover {
  background: var(--white);
  color: var(--blue) !important;
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--blue) !important;
  border-color: var(--white);
}

/* Carousel controls */
.carousel-ctrl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.carousel-ctrl-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0 20px;
  opacity: 1;
}

.carousel-indicators button {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--accent);
  width: 50px;
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  background: var(--blue);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--blue-mid);
  border-bottom: 3px solid var(--blue-mid);
}

.marquee-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marqueeScroll 80s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.marquee-track span i {
  color: var(--accent);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---- ABOUT ---- */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-main-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 4px solid var(--white);
}

.badge-number {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.88;
  line-height: 1.3;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-feature i {
  font-size: 18px;
}

/* ---- SERVICES ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 30, 100, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  opacity: 0;
  transition: var(--transition);
}

.service-img-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--blue);
  padding: 6px 18px;
  border-radius: 20px;
}

.service-card:hover .service-img-overlay {
  opacity: 1;
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--blue);
  color: var(--white);
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.service-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--blue-dark);
}

/* ---- WHY CHOOSE US ---- */
.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(240, 192, 64, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--blue);
  border: 3px solid rgba(255, 255, 255, 0.15);
  color: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--accent);
  color: var(--blue-deeper);
  border-color: var(--accent);
}

.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

/* ---- COUNTER SECTION ---- */
.counter-section {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.counter-box {
  padding: 30px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.counter-box:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.counter-icon {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.counter-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  display: inline;
}

.counter-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
  display: inline;
}

.counter-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- GALLERY ---- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(63, 91, 227, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--blue) !important;
  box-shadow: var(--shadow-md);
}

.faq-btn {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-800) !important;
  background: var(--white) !important;
  padding: 16px 20px;
  box-shadow: none !important;
  border: none;
}

.faq-btn:not(.collapsed) {
  color: var(--blue) !important;
  background: var(--blue-light) !important;
}

.faq-btn::after {
  filter: none !important;
}

.faq-btn:not(.collapsed)::after {
  filter: none !important;
}

.faq-body {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  background: var(--white);
  padding: 16px 20px 20px;
}

/* ---- CONTACT ---- */
.contact-info-card {
  background: var(--blue-deeper);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.contact-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.7;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.88);
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-input {
  border: 1.5px solid var(--gray-200) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 14px;
  padding: 11px 14px;
  color: var(--gray-800) !important;
  transition: var(--transition);
  box-shadow: none !important;
}

.form-input:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(63, 91, 227, 0.12) !important;
  outline: none;
}

.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.form-success i {
  font-size: 20px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--gray-800);
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.brand-icon-f {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-brand-text span {
  color: var(--blue-mid);
}

.footer-about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  font-size: 16px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--blue-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-list i {
  color: var(--blue-mid);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- FLOATING BUTTONS ---- */
.float-whatsapp,
.float-call {
  position: fixed;
  bottom: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  transition: var(--transition);
  text-decoration: none;
}

.float-whatsapp {
  left: 24px;
  background: #25D366;
}

.float-whatsapp:hover {
  transform: scale(1.12);
  background: #1ebe5d;
  color: var(--white);
}

.float-call {
  right: 24px;
  background: var(--blue);
}

.float-call:hover {
  transform: scale(1.12);
  background: var(--blue-dark);
  color: var(--white);
}

/* Pulse animation for floating buttons */
.float-whatsapp::before,
.float-call::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: floatPulse 3.5s ease-out infinite;
}

.float-whatsapp::before {
  background: rgba(37, 211, 102, 0.35);
}

.float-call::before {
  background: rgba(63, 91, 227, 0.35);
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 1040;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-sm);
}

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

.back-to-top:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-4px);
}

/* ---- SCROLL REVEAL ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 70px 0;
  }

  .hero-slide {
    min-height: 75vh;
  }

  .hero-heading {
    font-size: clamp(34px, 6vw, 60px);
  }

  .hero-content {
    padding: 40px 0;
  }

  .about-badge {
    right: 0;
    bottom: -14px;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 16px;
    margin-top: 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
  }

  .nav-link {
    padding: 10px 14px !important;
    border-radius: var(--radius-sm);
  }

  .btn-primary-custom {
    margin-top: 8px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 56px 0;
  }

  .hero-slide {
    min-height: 82vh;
  }

  .hero-content {
    padding: 24px 0;
  }

  .hero-btns {
    gap: 10px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 11px 22px;
    font-size: 13px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 24px 18px;
  }

  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .counter-number {
    font-size: 38px;
  }

  .counter-plus {
    font-size: 30px;
  }

  .gallery-item {
    aspect-ratio: 1;
  }

  .service-img-wrap {
    height: 250px;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    font-size: 12px;
    padding: 7px 0;
  }

  .hero-slide {
    min-height: 88vh;
  }

  .hero-heading {
    font-size: clamp(30px, 8vw, 44px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .marquee-track span {
    font-size: 12px;
  }

  .float-whatsapp,
  .float-call {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .float-whatsapp {
    left: 16px;
    bottom: 24px;
  }

  .float-call {
    right: 16px;
    bottom: 24px;
  }

  .back-to-top {
    bottom: 84px;
    right: 16px;
  }
}

/* ---- PREFERS REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-aos] {
    transition: none !important;
  }
}