/* ===================================================
   A1 Enterprises - style.css
   Author: A1 Enterprises
   Description: Main stylesheet for A1 Enterprises website
=================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a5c8a;
  --primary-dark: #0f3d60;
  --primary-light: #2a7ab8;
  --accent: #e8a020;
  --accent-dark: #c98010;
  --accent-light: #f0b840;
  --dark: #0d1b2a;
  --dark-2: #1a2d3e;
  --text: #2c3e50;
  --text-light: #5a6a7a;
  --text-muted: #8a9aaa;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-bg: #eef4f9;
  --border: #d0e0ef;
  --shadow-sm: 0 2px 12px rgba(26,92,138,0.08);
  --shadow-md: 0 8px 32px rgba(26,92,138,0.14);
  --shadow-lg: 0 20px 60px rgba(26,92,138,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== UTILITIES ===== */
.section-padding {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn-primary-custom {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,92,138,0.3);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,92,138,0.4);
  color: var(--white);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,92,138,0.3);
}

.rounded-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.rounded-img-sm {
  border-radius: var(--radius-sm);
  width: 100%;
  object-fit: cover;
}

/* ===== TOP BAR ===== */
.topbar {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1001;
}

.topbar-link {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

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

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

.topbar-social:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#mainHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

#mainNav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-a1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text) !important;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover {
  color: var(--primary) !important;
  background: var(--light-bg);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.45);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

/* Toggler */
.toggler-icon {
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.navbar-toggler {
  border: 2px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* ===== HERO CAROUSEL ===== */
.hero-section {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 820px;
}

.hero-slide {
  height: 92vh;
  min-height: 560px;
  max-height: 820px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide-1 {
  background-image: url('banner1.webp');
}
.hero-slide-2 {
  background-image: url('banner2.webp');
}
.hero-slide-3 {
  background-image: url('banner4.webp');
}
/*
.hero-slide-4 {
  background-image: url('https://images.unsplash.com/photo-1565538810643-b5bdb714032a?w=1600&q=85');
}*/

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,30,50,0.82) 45%, rgba(10,30,50,0.35) 100%);
  z-index: 1;
}

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

.hero-slide .row {
  height: 100%;
}

.hero-content {
  padding: 20px 0;
  animation: heroFadeIn 0.8s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title-accent {
  color: var(--accent-light);
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(232,160,32,0.4);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(232,160,32,0.5);
  color: var(--white);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
  transform: translateY(-3px);
  color: var(--white);
}

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

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

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
}

.about-img-wrapper {
  position: relative;
  padding: 24px 24px 24px 0;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  height: 440px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img-main img {
  transform: scale(1.03);
}

.about-img-badge {
  position: absolute;
  bottom: 40px;
  left: -10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-light);
}

.badge-text {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  opacity: 0.9;
}

.about-img-float {
  position: absolute;
  top: 30px;
  right: -10px;
  width: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  z-index: 3;
}

.about-img-float img {
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-img-float:hover img {
  transform: scale(1.05);
}

.about-lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-body {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.about-feature-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-img-wrap {
  position: relative;
  overflow: hidden;
  /* height: 220px; */
}

.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 bottom, transparent 40%, rgba(13,27,42,0.4));
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(26,92,138,0.3);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: rotate(5deg) scale(1.05);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.btn-service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(26,92,138,0.25);
  align-self: flex-start;
}

.btn-service-cta:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232,160,32,0.35);
  color: var(--white);
}

/* CTA Card */
.service-cta-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.service-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(13,27,42,0.35);
}

.cta-card-inner {
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon {
  font-size: 3rem;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.cta-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.cta-card-inner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-cta-card {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
  transition: var(--transition);
}

.btn-cta-card:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px);
  color: var(--white);
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  transition: var(--transition);
}

.btn-cta-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--white);
}

.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  background: var(--white);
}

.why-icon-wrap {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(26,92,138,0.25);
  transition: var(--transition);
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: scale(1.1) rotate(-5deg);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.counter-plus {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}

.counter-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--light-bg);
}

.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.how-step {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--light-bg);
  position: absolute;
  top: -10px;
  right: 16px;
  line-height: 1;
  user-select: none;
  transition: var(--transition);
}

.how-card:hover .how-step {
  color: rgba(26,92,138,0.08);
}

.how-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  box-shadow: 0 6px 22px rgba(26,92,138,0.3);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.how-card:hover .how-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: scale(1.08);
}

.how-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.how-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

.how-arrow {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  z-index: 2;
}

.col-12.col-md-6.col-lg-3 {
  position: relative;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--dark);
  padding: 90px 0;
}

.gallery-section .section-label {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,92,138,0.9), transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  background: var(--light-bg);
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--light-bg);
  line-height: 1;
  user-select: none;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.testi-stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.testi-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testi-loc i {
  color: var(--primary-light);
}

.testi-prev-btn,
.testi-next-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testi-prev-btn:hover,
.testi-next-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--white);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-btn {
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
  transition: var(--transition);
  font-family: var(--font-body);
}

.faq-btn:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a5c8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 6px 24px 24px;
  background: var(--white);
}

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

.contact-info-wrap {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--accent);
  color: var(--white);
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.55;
  font-weight: 400;
}

.contact-link {
  color: var(--accent-light);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--white);
}

.contact-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.contact-social-btn.wa {
  background: #25d366;
  color: var(--white);
}

.contact-social-btn.wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white);
}

.contact-social-btn.call {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.contact-social-btn.call:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--white);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 100%;
}

.form-label-custom {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.02em;
}

.form-input-custom {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  width: 100%;
  outline: none;
}

.form-input-custom:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,92,138,0.12);
}

.form-input-custom::placeholder {
  color: var(--text-muted);
}

textarea.form-input-custom {
  resize: vertical;
  min-height: 110px;
}

.form-success-msg {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--white);
}

.footer-top {
  padding: 70px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

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

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

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  margin-left: -10px;
  transition: var(--transition);
}

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

.footer-links a:hover::before {
  opacity: 1;
  margin-left: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-contact-list i {
  color: var(--accent-light);
  margin-top: 2px;
  flex-shrink: 0;
}

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

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

.footer-bottom {
  padding: 20px 0;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* ===== FLOATING ICONS ===== */
.float-wa,
.float-call {
  position: fixed;
  bottom: 80px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
}

.float-wa {
  left: 24px;
  background: #25d366;
}

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

.float-call {
  right: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.float-call:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: scale(1.12) translateY(-3px);
  color: var(--white);
}

.float-tooltip {
  position: absolute;
  white-space: nowrap;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  bottom: calc(100% + 10px);
}

.float-wa .float-tooltip {
  left: 50%;
  transform: translateX(-50%);
}

.float-call .float-tooltip {
  right: 50%;
  transform: translateX(50%);
}

.float-wa:hover .float-tooltip,
.float-call:hover .float-tooltip {
  opacity: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(26,92,138,0.35);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-3px);
}

/* ===== PULSING ANIMATIONS (Floating Icons) ===== */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-wa {
  animation: pulse-ring 2.4s infinite;
}

@keyframes pulse-ring-call {
  0% { box-shadow: 0 0 0 0 rgba(26, 92, 138, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(26, 92, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 92, 138, 0); }
}

.float-call {
  animation: pulse-ring-call 2.4s infinite 1.2s;
}
.cu-lg-wdth{
	width:240px;}
/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .about-img-wrapper {
    padding: 0 0 24px;
  }

  .about-img-badge {
    bottom: 30px;
    left: 10px;
  }

  .about-img-float {
    right: 10px;
  }

  .about-img-main img {
    height: 360px;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }

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

  .btn-nav-cta {
    margin-top: 10px;
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .how-arrow {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
  .hero-section,
  .hero-slide {
    height: 85vh;
    min-height: 500px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .about-img-float {
    width: 100px;
  }

  .about-img-float img {
    height: 100px;
  }

  .about-img-main img {
    height: 280px;
  }

  .contact-form-wrap,
  .contact-info-wrap {
    padding: 28px 20px;
  }

  .footer-top {
    padding: 50px 0 30px;
  }

  .float-wa,
  .float-call {
    bottom: 70px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .topbar .row {
    gap: 6px;
  }

  .section-padding {
    padding: 55px 0;
	        overflow-x: hidden;
  }

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

  .testi-card {
    padding: 24px 20px;
  }

  .counter-section {
    padding: 50px 0;
  }
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;}
}