/* =============================================
   SATISH SLIDING WINDOW SERVICE
   Main Stylesheet
   ============================================= */

/* ---- Custom Fonts ---- */
@font-face {
  font-family: 'Poppins';
  src: url('../libs/fonts/poppins-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../libs/fonts/poppins-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../libs/fonts/poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../libs/fonts/poppins-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- CSS Variables ---- */
:root {
  --primary:      #1565c0;
  --primary-dark: #0d47a1;
  --primary-light:#1e88e5;
  --accent:       #00bcd4;
  --accent-dark:  #0097a7;
  --dark:         #0a1628;
  --dark-2:       #0d1f40;
  --white:        #ffffff;
  --light-bg:     #f0f4f8;
  --text-dark:    #1a2332;
  --text-muted:   #6c7a8d;
  --card-shadow:  0 8px 32px rgba(21, 101, 192, 0.12);
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNavbar {
  background: rgba(10, 22, 40, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

#mainNavbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  padding: 0.4rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(21,101,192,0.4);
}

.brand-text {
  line-height: 1.2;
}

.brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}

.brand-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 0.42rem 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 12px rgba(21,101,192,0.35);
  border: none;
  transition: var(--transition);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(21,101,192,0.5) !important;
}

.nav-cta::after { display: none !important; }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem 0.5rem;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* =============================================
   HERO CAROUSEL
   ============================================= */
#heroCarousel {
  margin-top: 62px;
}

.carousel-slide {
  height: 100vh;
  min-height: 580px;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(13, 40, 86, 0.72) 50%,
    rgba(21, 101, 192, 0.4) 100%
  );
  z-index: 1;
}

.carousel-slide .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-text {
  animation: slideUp 0.8s ease both;
  padding: 0 0.5rem;
  text-align: center;
}

.slide-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 0.9rem;
}

.slide-text h1 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.slide-text p {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 1.6rem;
  line-height: 1.75;
}

.btn-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(21,101,192,0.5);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-slide-cta:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(21,101,192,0.6);
  color: white;
}

.btn-slide-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.72rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  margin-left: 0.8rem;
}

.btn-slide-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(21,101,192,0.6);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-size: 55%;
  border: 2px solid rgba(255,255,255,0.3);
}

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

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

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

#home {
  padding: 0;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(21,101,192,0.12), rgba(0,188,212,0.12));
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 30px;
  border: 1px solid rgba(21,101,192,0.2);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.section-title span {
  color: var(--primary);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.section-divider.left {
  margin-left: 0;
}

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

.about-img-wrapper {
  position: relative;
  overflow: visible;
}

.about-img-wrapper img {
  border-radius: 18px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(21,101,192,0.2);
  transition: var(--transition);
}

.about-img-wrapper:hover img {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(21,101,192,0.28);
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(21,101,192,0.4);
}

.about-badge-box .num {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge-box .lbl {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 1rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid rgba(21,101,192,0.08);
}

.expertise-list li:last-child {
  border-bottom: none;
}

.expertise-list li i {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(21,101,192,0.35);
  transition: var(--transition);
  border: none;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(21,101,192,0.5);
  color: white;
}

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(21,101,192,0.07);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(21,101,192,0.2);
  border-color: rgba(21,101,192,0.2);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 40, 86, 0.6) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition);
}

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

.service-body {
  padding: 1.4rem;
}

.service-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-service:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: white;
  transform: translateY(-1px);
}

/* =============================================
   GALLERY SECTION
   ============================================= */
#gallery {
  background: var(--dark);
}

#gallery .section-badge {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  border-color: rgba(0,188,212,0.3);
}

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

#gallery .section-divider {
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 40, 86, 0.85) 0%,
    rgba(21, 101, 192, 0.3) 100%
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.gallery-overlay i {
  font-size: 2rem;
  color: white;
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* =============================================
   LIGHTBOX
   ============================================= */
#lightboxModal {
  background: rgba(0,0,0,0.92);
}

#lightboxModal .modal-dialog {
  max-width: 90vw;
  margin: auto;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

#lightboxModal .modal-content {
  background: transparent;
  border: none;
}

#lightboxModal .modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightboxImg {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-nav {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(21,101,192,0.7);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1100;
}

.lightbox-nav:hover {
  background: var(--primary);
  border-color: white;
}

#lightboxPrev { left: 15px; }
#lightboxNext { right: 15px; }

#lightboxClose {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.15);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1100;
}

#lightboxClose:hover {
  background: rgba(255,255,255,0.3);
}

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

.why-card {
  background: var(--white);
  border: 1px solid rgba(21,101,192,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(21,101,192,0.07);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(21,101,192,0.16);
  border-color: rgba(21,101,192,0.2);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(0,188,212,0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent-dark));
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item .num {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-item .lbl {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto;
}

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

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(21,101,192,0.07);
  height: 100%;
}

.contact-info-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(21,101,192,0.07);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.2rem;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--primary);
}

.contact-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn.whatsapp { background: #25d366; }
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  color: white;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(21,101,192,0.07);
}

.contact-form-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  border: 1.5px solid rgba(21,101,192,0.15);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
  outline: none;
}

.form-control::placeholder {
  color: rgba(108, 122, 141, 0.6);
}

textarea.form-control {
  resize: none;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,0.4);
}

/* Google Map */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(21,101,192,0.1);
  height: 100%;
  min-height: 420px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

@media (max-width: 991.98px) {
  .map-wrapper,
  .map-wrapper iframe {
    min-height: 300px;
    height: 300px;
  }
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  /* padding: 70px 0 0; */
}

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

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.72rem;
  color: var(--accent);
}

footer p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

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

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

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--accent);
}

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

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

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

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

.footer-contact-list li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 0;
  /* margin-top: 2.5rem; */
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  text-align: center;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  color: white;
}

.float-btn.whatsapp {
  background: #25d366;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

.float-btn.call {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 6px 22px rgba(21, 101, 192, 0.5);
}

.float-btn.scroll-top {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 1rem;
  width: 42px;
  height: 42px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.float-btn.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

/* Pulse animation for floating buttons */
.float-btn.whatsapp::before,
.float-btn.call::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulse-ring 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.float-btn.whatsapp::before { color: #25d366; }
.float-btn.call::before { color: var(--primary-light); }

@keyframes pulse-ring {
  0%   { transform: scale(0.85); opacity: 0.6; }
  70%  { transform: scale(1.3);  opacity: 0; }
  100% { transform: scale(1.3);  opacity: 0; }
}

/* Tooltip labels */
.float-label {
  position: absolute;
  right: 62px;
  white-space: nowrap;
  background: var(--dark);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: 'Poppins', sans-serif;
}

.float-btn:hover .float-label {
  opacity: 1;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 99999;
  transition: width 0.1s linear;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 22px;
  z-index: 9999;
}

.toast {
  background: var(--dark);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  min-width: 260px;
}

.toast-header {
  background: rgba(21,101,192,0.2);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px 12px 0 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  section { padding: 70px 0; }

  .navbar-collapse {
    background: rgba(10, 22, 40, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 1rem !important;
    border-radius: 8px;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.05);
  }

  .about-badge-box {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  section { padding: 60px 0; }

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

  .carousel-slide {
    height: 70vh;
    min-height: 500px;
  }

  .slide-text {
    text-align: center;
    padding: 0 0.25rem;
  }

  .slide-text h1 {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
    line-height: 1.3;
    margin-bottom: 0.7rem;
  }

  .slide-text p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }

  .slide-badge {
    font-size: 0.68rem;
    margin-bottom: 0.7rem;
  }

  .slide-text .d-flex {
    justify-content: center;
  }

  .btn-slide-cta {
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
  }

  .btn-slide-secondary {
    display: none;
  }

  .about-img-wrapper {
    margin-bottom: 2.5rem;
  }

  .about-badge-box {
    bottom: 10px;
    right: 10px;
    padding: 0.9rem 1.1rem;
  }

  .about-badge-box .num {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .carousel-slide {
    min-height: 450px;
  }

  .floating-buttons {
    bottom: 20px;
    right: 14px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-label { display: none; }
}
