:root {
  --primary: #0a4fa8;
  --primary-dark: #073580;
  --primary-light: #1e7be8;
  --secondary: #00bcd4;
  --accent: #00e5ff;
  --light-bg: #f0f7ff;
  --dark: #0d2137;
  --text-dark: #1a2332;
  --text-muted: #6b7280;
  --gradient: linear-gradient(135deg, #0a4fa8 0%, #1565c0 60%, #0288d1 100%);
  --gradient-hero: linear-gradient(
    135deg,
    rgba(10, 79, 168, 0.93) 0%,
    rgba(2, 136, 209, 0.87) 100%
  );
  --shadow: 0 10px 40px rgba(10, 79, 168, 0.13);
  --shadow-hover: 0 22px 60px rgba(10, 79, 168, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

[id] {
  scroll-margin-top: 80px;
}

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(10, 79, 168, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  transition: all 0.35s ease;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

#mainNav.scrolled {
  background: rgba(7, 53, 128, 0.99) !important;
  padding: 9px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.22);
}

.nav-logo-box {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #00bcd4, #0288d1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.nav-logo-box:hover {
  transform: rotate(10deg) scale(1.08);
}

.brand-name-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.1;
}
.brand-sub-text {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 15px !important;
  border-radius: 8px;
  transition: all 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
}

.btn-nav-call {
  background: linear-gradient(135deg, #00bcd4, #0288d1);
  color: #fff !important;
  border: none;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.38);
  transition: all 0.3s !important;
}
.btn-nav-call:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
#hero {
  position: relative;
}

.hero-carousel,
.hero-carousel .carousel-item {
  min-height: 100vh;
}

.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hs1 {
  background-image: url("../images/banner-1.jpg");
}
.hs2 {
  background-image: url("../images/banner-2.jpg");
}
.hs3 {
  background-image: url("../images/banner-3.jpg");
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-badge i {
  color: #00e5ff;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}
.hero-title span {
  background: linear-gradient(135deg, #00e5ff, #64ffda);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.83);
  max-width: 550px;
  line-height: 1.82;
  margin-bottom: 32px;
}

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

.btn-hp {
  background: linear-gradient(135deg, #00bcd4, #0288d1);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.38);
}
.btn-hp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 38px rgba(0, 188, 212, 0.5);
  color: #fff;
}

.btn-hs {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s;
}
.btn-hs:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-3px);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  flex-wrap: wrap;
  align-items: center;
}
.h-stat {
  display: flex;
  flex-direction: column;
}
.h-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.h-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}
.h-stat-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
  align-self: stretch;
}

.carousel-indicators [data-bs-target] {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
}
.carousel-indicators .active {
  background: #00e5ff;
  width: 48px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  margin: 0 18px;
  opacity: 1;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 90px 0;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 17px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}
.sec-badge.center {
  margin-left: auto;
  margin-right: auto;
}

.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.sec-title span {
  color: var(--primary);
}

.sec-divider {
  width: 56px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 14px 0 22px;
}
.sec-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.sec-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.82;
}

/* ===== ABOUT ===== */
#about {
  background: #fff;
}

.about-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  transition: transform 0.5s;
}
.about-img-wrap:hover img {
  transform: scale(1.03);
}

.about-badge-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-badge-card strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}
.about-badge-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-exp-tag {
  position: absolute;
  top: 28px;
  right: -18px;
  background: var(--gradient);
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10, 79, 168, 0.38);
}
.about-exp-tag strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}
.about-exp-tag span {
  font-size: 0.73rem;
  opacity: 0.88;
}

.about-feat {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 18px;
}
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 11px;
}
.about-feat-icon {
  width: 34px;
  height: 34px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.about-feat-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.stat-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.stat-card:hover {
  background: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.stat-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 9px;
  display: block;
}
.stat-card .sn {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-card .sl {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ===== SERVICES ===== */
#services {
  background: var(--light-bg);
}

.svc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
  height: 100%;
  border: 1px solid transparent;
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.svc-card-img {
  height: 195px;
  position: relative;
  overflow: hidden;
  background: var(--gradient);
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.1);
}

.svc-icon-box {
  width: 58px;
  height: 58px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(2, 136, 209, 0.28);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.svc-card:hover .svc-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 28px rgba(2, 136, 209, 0.4);
}

.svc-body {
  padding: 24px;
}
.svc-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 9px;
  transition: color 0.3s;
}
.svc-card:hover .svc-body h4 {
  color: var(--primary);
}
.svc-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 18px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.83rem;
  text-decoration: none;
  transition: gap 0.3s;
}
.svc-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ===== BRANDS ===== */
#brands {
  background: #fff;
  padding: 80px 0;
}

.brands-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}
.brands-wrap::before,
.brands-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}
.brands-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.brands-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.brands-track {
  display: flex;
  gap: 18px;
  animation: scrollBrands 32s linear infinite;
  width: max-content;
}
.brands-track:hover {
  animation-play-state: paused;
}

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand-card {
  width: 152px;
  height: 88px;
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid #e8f0fe;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  cursor: default;
  transition: all 0.38s;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.045);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: 13px;
}
.brand-card:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 79, 168, 0.18);
  border-color: var(--primary);
}
.brand-card:hover::before {
  opacity: 0.06;
}

.brand-img {
  max-width: 112px;
  max-height: 54px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) opacity(0.55);
  transition:
    filter 0.38s,
    transform 0.3s;
  position: relative;
  z-index: 1;
}
.brand-card:hover .brand-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

.brand-disclaimer {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 24px;
}

/* ===== WHY CHOOSE US ===== */
#why-choose {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#why-choose::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(0, 188, 212, 0.09) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
#why-choose::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(10, 79, 168, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

#why-choose .sec-badge {
  background: rgba(255, 255, 255, 0.07);
  color: #00e5ff;
}
#why-choose .sec-title {
  color: #fff;
}
#why-choose .sec-title span {
  color: #00e5ff;
}
#why-choose .sec-desc {
  color: rgba(255, 255, 255, 0.58);
}

.feat-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.feat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 19px;
}
.feat-box:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 188, 212, 0.4);
  box-shadow: 0 20px 50px rgba(0, 188, 212, 0.13);
}
.feat-box:hover::before {
  opacity: 0.1;
}

.feat-icon {
  width: 68px;
  height: 68px;
  background: rgba(0, 188, 212, 0.13);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.75rem;
  color: #00e5ff;
  border: 1px solid rgba(0, 188, 212, 0.18);
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.feat-box:hover .feat-icon {
  background: rgba(0, 188, 212, 0.22);
  transform: scale(1.1) rotate(-5deg);
}

.feat-box h5 {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
}
.feat-box p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.83rem;
  line-height: 1.72;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--light-bg);
}

.contact-info-card {
  background: var(--gradient);
  border-radius: 22px;
  padding: 38px;
  color: #fff;
  height: 100%;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 26px;
}
.ci-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.ci-item h6 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.68;
  margin-bottom: 3px;
}
.ci-item p {
  font-size: 0.88rem;
  opacity: 0.94;
  margin: 0;
  line-height: 1.6;
}

.form-control,
.form-select {
  border: 1.5px solid #e0eaff;
  border-radius: 11px;
  padding: 11px 15px;
  font-size: 0.88rem;
  transition: all 0.3s;
  background: #f7faff;
  color: var(--text-dark);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 79, 168, 0.1);
  background: #fff;
}
.form-label {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.btn-submit {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(10, 79, 168, 0.32);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(10, 79, 168, 0.42);
  color: #fff;
}

/* Contact section map (replaces form) */
.contact-map-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 480px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== FOOTER (copyright only) ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ft-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

/* — Call button — */
.call-float {
  position: relative;
}

.call-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0a4fa8, #0288d1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(10, 79, 168, 0.45);
  transition: all 0.3s;
  animation: callPulse 2.5s ease-in-out infinite;
}
.call-btn:hover {
  transform: scale(1.14);
  box-shadow: 0 10px 32px rgba(10, 79, 168, 0.58);
}
.call-btn i {
  font-size: 1.35rem;
  color: #fff;
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 79, 168, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(10, 79, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 79, 168, 0);
  }
}

.call-tip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #0a4fa8, #0288d1);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.call-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: #0288d1;
}
.call-float:hover .call-tip {
  opacity: 1;
}

/* — WhatsApp button — */
.wa-float {
  position: relative;
}

.wa-btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42);
  transition: all 0.3s;
  animation: waPulse 2.2s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.14);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.wa-btn i {
  font-size: 1.65rem;
  color: #fff;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.48);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-tip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: #25d366;
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: #25d366;
}
.wa-float:hover .wa-tip {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }
  .about-exp-tag {
    right: 8px;
  }
}
@media (max-width: 767px) {
  .hero-content {
    padding: 100px 0 55px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .h-stat-div {
    display: none;
  }
  .hero-stats {
    gap: 16px;
  }
  .h-stat-num {
    font-size: 1.5rem;
  }
  section {
    padding: 58px 0;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 24px;
  }
  .about-exp-tag {
    display: none;
  }
}
@media (max-width: 575px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-hp,
  .btn-hs {
    width: 100%;
    justify-content: center;
  }
  .brands-wrap::before,
  .brands-wrap::after {
    width: 40px;
  }
  .contact-map-wrap {
    min-height: 300px;
  }
  .float-btns {
    bottom: 18px;
    right: 16px;
  }
  .call-btn,
  .wa-btn {
    width: 50px;
    height: 50px;
  }
}

/* Prevent any child element from causing horizontal scroll */
section,
.row {
  max-width: 100%;
}
