/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --purple: #726ca8;
  --purple-dark: #5a5490;
  --purple-light: #9189c4;
  --purple-pale: #f0eef9;
  --green: #00a54f;
  --green-dark: #008a41;
  --green-light: #33c270;
  --green-pale: #e6f7ed;
  --red: #ee1d23;
  --red-dark: #c91318;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #2d2d44;
  --text-muted: #6c6c88;
  --light-bg: #f7f6fc;
  --white: #ffffff;
  --border: rgba(114, 108, 168, 0.15);
  --shadow: 0 8px 32px rgba(114, 108, 168, 0.15);
  --shadow-hover: 0 16px 48px rgba(114, 108, 168, 0.25);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ============================================================
   BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

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

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-pale), #e8f7ef);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span { color: var(--purple); }
.section-subtitle { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

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

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 8px 0;
  font-size: 13px;
}

.topbar-info a,
.topbar-info span {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
}

.topbar-info a:hover { color: var(--green-light); }
.topbar-info i { color: var(--green); font-size: 13px; }

.social-icons a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(114, 108, 168, 0.1);
  z-index: 1000;
}

.site-header .navbar { padding: 14px 0; }

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

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-star {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
}

.logo-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav links */
.navbar-nav .nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text) !important;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--purple) !important;
  background: var(--purple-pale);
}

/* Dropdown */
.navbar-nav .dropdown-menu {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--purple);
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 220px;
  margin-top: 4px;
  animation: dropDown 0.2s ease;
}

@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar-nav .dropdown-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
}

.navbar-nav .dropdown-item i { color: var(--purple); font-size: 14px; width: 16px; }
.navbar-nav .dropdown-item:hover {
  background: var(--purple-pale);
  color: var(--purple);
  padding-left: 18px;
}

/* Call Now Button */
.btn-call-now {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 15px rgba(114, 108, 168, 0.4);
  transition: var(--transition);
}

.btn-call-now:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 6px 20px rgba(0, 165, 79, 0.4);
  transform: translateY(-2px);
}

/* Toggler */
.navbar-toggler {
  border: 2px solid var(--purple) !important;
  border-radius: var(--radius-sm) !important;
  padding: 5px 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(114,108,168,1)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   HERO CAROUSEL
============================================================ */
.hero-slide {
  height: 90vh;
  min-height: 550px;
  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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(114,108,168,0.6) 50%, rgba(26,26,46,0.5) 100%);
}

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

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-title span {
  color: var(--green-light);
  position: relative;
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.6s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.7s ease 0.8s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(114,108,168,0.5);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,165,79,0.5);
}

.btn-hero-outline {
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: white;
  color: var(--purple);
  border-color: white;
  transform: translateY(-3px);
}

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

.carousel-indicators button.active {
  background: var(--green);
  width: 30px;
  border-radius: 5px;
}

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

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

.about-main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-badge-box {
  position: absolute;
  bottom: -25px;
  right: -20px;
}

.about-badge {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(114,108,168,0.4);
}

.badge-num {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-shape {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border: 4px solid var(--green);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
  transform: translateX(4px);
}

.about-feature i { color: var(--green); font-size: 16px; }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(114,108,168,0.35);
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,165,79,0.4);
}

/* ============================================================
   SERVICES
============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--purple);
}

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

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(114,108,168,0.85), rgba(0,165,79,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.service-overlay i {
  font-size: 48px;
  color: white;
  transform: scale(0.7);
  transition: var(--transition);
}

.service-card:hover .service-overlay i { transform: scale(1); }

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

.service-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.btn-call-service {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 15px rgba(0,165,79,0.3);
  transition: var(--transition);
  align-self: flex-start;
}

.btn-call-service:hover {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114,108,168,0.4);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 40%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(114,108,168,0.1);
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0,165,79,0.08);
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  height: 100%;
}

.why-card:hover {
  background: rgba(114,108,168,0.2);
  border-color: var(--purple-light);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.why-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(114,108,168,0.4);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 8px 24px rgba(0,165,79,0.5);
  transform: rotate(10deg);
}

.why-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   COUNTER
============================================================ */
.counter-section {
  background: linear-gradient(135deg, var(--purple-pale) 0%, #e8f7ef 100%);
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,108,168,0.06) 0%, transparent 70%);
}

.counter-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 20px;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--green));
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.counter-icon {
  font-size: 36px;
  color: var(--purple);
  margin-bottom: 12px;
}

.counter-num {
  font-family: 'Nunito', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  display: inline-block;
}

.counter-plus {
  font-family: 'Nunito', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--green);
  display: inline-block;
}

.counter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.step-card:hover {
  border-color: var(--purple);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(114,108,168,0.4);
  border: 3px solid var(--white);
}

.step-icon {
  font-size: 44px;
  color: var(--purple);
  margin: 16px 0 16px;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  color: var(--green);
  transform: scale(1.1);
}

.step-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  background: var(--white);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  border-color: var(--purple);
  box-shadow: 0 4px 15px rgba(114,108,168,0.35);
}

.gallery-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  border: 1.5px solid var(--border);
  cursor: pointer;
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(114,108,168,0.85), rgba(0,165,79,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-hover i {
  font-size: 32px;
  color: white;
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-wrap:hover img { transform: scale(1.1); }
.gallery-wrap:hover .gallery-hover { opacity: 1; }
.gallery-wrap:hover .gallery-hover i { transform: scale(1); }

.gallery-item.hidden { display: none; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card.featured {
  background: rgba(114,108,168,0.2);
  border-color: var(--purple-light);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-light);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--purple), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.client-info strong { color: white; font-size: 14px; }
.client-info small { color: rgba(255,255,255,0.55); font-size: 12px; }

.testimonial-indicators {
  position: relative;
  margin-top: 20px;
}

.testimonial-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
}

.testimonial-indicators button.active {
  background: var(--green);
  width: 28px;
  border-radius: 5px;
}

/* ============================================================
   FAQs
============================================================ */
.faq-accordion .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(114,108,168,0.06);
}

.faq-accordion .accordion-button {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  padding: 18px 20px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--purple);
  background: var(--purple-pale);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23726ca8'%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-accordion .accordion-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

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

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light-bg);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.contact-info-icon.green-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.contact-info-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

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

.map-embed { border-radius: var(--radius-sm); overflow: hidden; border: 1.5px solid var(--border); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-wrap h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  background: var(--light-bg);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 3px rgba(114,108,168,0.1);
}

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

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

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

.footer-brand .logo-wrap .logo-star { color: white; }
.footer-brand .logo-wrap .logo-sub { color: var(--purple-light); }
.footer-brand .logo-icon { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}

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

.footer-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.footer-links a i { font-size: 11px; color: var(--purple-light); }

.footer-links a:hover {
  color: var(--green-light);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
}

.footer-contact-list i {
  color: var(--green);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

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

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

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin: 0;
}

/* ============================================================
   FLOATING ICONS
============================================================ */
.float-whatsapp,
.float-call {
  position: fixed;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  z-index: 9999;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.float-whatsapp {
  left: 24px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation: floatPulse 2s ease-in-out infinite;
}

.float-call {
  right: 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  animation: floatPulse 2s ease-in-out infinite 0.5s;
}

.float-whatsapp:hover,
.float-call:hover {
  transform: scale(1.15);
  color: white;
}

.float-tooltip {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

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

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.3), 0 0 0 0 rgba(114,108,168,0.4); }
  50% { box-shadow: 0 6px 24px rgba(0,0,0,0.3), 0 0 0 12px rgba(114,108,168,0); }
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
#scrollTop {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(114,108,168,0.4);
  transition: var(--transition);
  display:none!important
}

#scrollTop:hover {
  background: var(--green);
  transform: translateY(-3px);
}

/* ============================================================
   SUCCESS TOAST
============================================================ */
.success-toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: var(--green);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,165,79,0.4);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(120%);
  transition: transform 0.4s ease;
}

.success-toast.show { transform: translateX(0); }
.cu-lg-wdth{
	width:260px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .section-pad { padding: 65px 0; }
  .hero-slide { height: 75vh; min-height: 450px; }
  .hero-title { font-size: clamp(28px, 5vw, 46px); }
  .about-badge-box { right: 0; }
  .about-main-img { height: 320px; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 767.98px) {
	.cu-mb-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center;
	}
  .section-pad { padding: 50px 0; }
  .hero-slide { height: 65vh; min-height: 380px; }
  .hero-desc { font-size: 15px; }
  .btn-hero-primary, .btn-hero-outline { padding: 11px 22px; font-size: 13px; }
  .about-badge-box { position: static; margin-top: 20px; }
  .about-shape { display: none; }
  .counter-num { font-size: 36px; }
  .contact-form-wrap { margin-top: 30px; }
  .top-bar .topbar-info { font-size: 11px; }
}

@media (max-width: 575.98px) {
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .gallery-wrap { aspect-ratio: 1; }
}
@media(max-width:374px)
{
	.cu-lg-wdth{
		width:220px;
	}
}