
:root {
  --theme-primary: #0f756d;
  --theme-secondary: #0a5851;
  --theme-surface: #e6f1f0;
  --theme-dark: #073a36;
  --theme-footer: #0f172a; /* Slate 900 for premium feel */
}

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

body { 
  font-family: 'Poppins', sans-serif; 
  line-height: 1.6; 
  color: #334155; 
  overflow-x: hidden; 
  background-color: #ffffff;
}

html { scroll-behavior: smooth; }

.navbar-custom { 
  background: #ffffff !important; 
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); 
  padding: 1.2rem 0; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.navbar-brand { font-weight: 800; font-size: 1.5rem; color: #0f172a !important; }

.nav-link { 
  font-weight: 600; 
  color: #475569 !important; 
  margin: 0 0.75rem; 
  position: relative; 
  transition: color 0.3s ease; 
}

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

.nav-link::after { 
  content: ''; 
  position: absolute; 
  bottom: -4px; 
  left: 0; 
  width: 0; 
  height: 2px; 
  background: var(--theme-primary); 
  transition: width 0.3s ease; 
}

.nav-link:hover::after { width: 100%; }

.btn-primary { 
  background: var(--theme-primary) !important; 
  border-color: var(--theme-primary) !important; 
  padding: 0.8rem 1.8rem; 
  font-weight: 600; 
  border-radius: 10px; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover { 
  background: var(--theme-secondary) !important; 
  border-color: var(--theme-secondary) !important; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3); 
}

.btn-outline-light {
  border-width: 2px;
  border-radius: 10px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.text-primary { color: var(--theme-primary) !important; }
.bg-primary { background: var(--theme-primary) !important; }

.hero-section { 
  min-height: 100vh; 
  background-size: cover; 
  background-position: center; 
  background-attachment: fixed;
  display: flex; 
  align-items: center; 
  position: relative; 
}

.hero-overlay { 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%); 
}

.hero-content { position: relative; z-index: 2; color: white; padding-top: 100px; }

.hero-title { 
  font-size: 4.5rem; 
  font-weight: 900; 
  line-height: 1.1;
  margin-bottom: 1.5rem; 
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

.section-padding { padding: 5rem 0; }
.bg-light { background: var(--theme-surface) !important; }

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.custom-card { 
  background: white; 
  border-radius: 20px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
  height: 100%; 
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  border: 1px solid rgba(0,0,0,0.03); 
}

.custom-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.1); 
  border-color: rgba(5, 150, 105, 0.1);
}

.custom-card:not(.p-0) {
  padding: 3rem 2.5rem; 
}

.service-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body .btn {
  margin-top: auto;
}

.icon-box { 
  width: 80px; 
  height: 80px; 
  background: var(--theme-surface); 
  border-radius: 16px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 2rem; 
  font-size: 2rem; 
  color: var(--theme-primary); 
  transition: all 0.4s ease; 
}

.custom-card:hover .icon-box { 
  background: var(--theme-primary); 
  color: white; 
  transform: scale(1.1) rotate(5deg); 
}

.icon-box-small {
  width: 48px;
  height: 48px;
  background: var(--theme-surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--theme-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.footer-custom { 
  background: var(--theme-footer); 
  color: white; 
  padding: 6rem 0 2rem; 
}

.footer-link {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--theme-primary);
  padding-left: 5px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: white;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--theme-primary);
  transform: translateY(-3px);
}

.whatsapp-float { 
  position: fixed; 
  bottom: 40px; 
  right: 40px; 
  width: 65px; 
  height: 65px; 
  background: #22c55e; 
  color: white; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 2rem; 
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3); 
  z-index: 1000; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  text-decoration: none; 
}

.whatsapp-float:hover { 
  transform: scale(1.1) rotate(10deg); 
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4); 
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
}

.page-header {
  background-color: var(--theme-surface);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background-attachment: fixed;
}

.breadcrumb-item a {
  color: var(--theme-primary);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 991px) { 
  .hero-title { font-size: 3.2rem; letter-spacing: -1px; } 
  .section-padding { padding: 4rem 0; } 
  .section-title { font-size: 2.2rem; }
  .hero-overlay { background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.4) 100%); }
}

@media (max-width: 576px) { 
  .hero-title { font-size: 2.4rem; letter-spacing: -0.5px; } 
  .hero-subtitle { font-size: 1.1rem; }
  .section-padding { padding: 3rem 0; } 
  .custom-card { padding: 2rem; } 
  .hero-section { min-height: 80vh; }
}

.form-control-custom {
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.form-control-custom:focus {
  background-color: #ffffff;
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
  outline: none;
}


.service-slider {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  padding-top: 1rem;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--theme-primary) #f1f1f1;
}
.service-slider::-webkit-scrollbar {
  height: 8px;
}
.service-slider::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.service-slider::-webkit-scrollbar-thumb {
  background: var(--theme-primary);
  border-radius: 4px;
}
.service-slider .col-slider {
  flex: 0 0 auto;
  width: 320px;

}
@media (max-width: 768px) {
  .service-slider .col-slider {
    width: 280px;
  }
}


/* Slider Navigation Buttons */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--theme-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slider-nav-btn:hover {
  background: var(--theme-primary);
  color: white;
  box-shadow: 0 6px 16px rgba(15, 117, 109, 0.2);
}
.prev-btn { left: -22px; }
.next-btn { right: -22px; }

@media (max-width: 991px) {
  .prev-btn { left: -10px; }
  .next-btn { right: -10px; }
  .slider-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

.service-slider {
  scroll-snap-type: x mandatory;
}
.service-slider .col-slider {
  scroll-snap-align: start;
}


/* Customer Badge New Design */
.customer-badge-new {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 25px 35px;
  border-radius: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 10;
  text-align: center;
  min-width: 180px;
}

.customer-badge-new h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 5px;
}

.customer-badge-new p {
  color: #475569;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .customer-badge-new {
    bottom: -10px;
    right: -10px;
    padding: 15px 20px;
    min-width: 140px;
    border-radius: 25px;
  }
  .customer-badge-new h2 {
    font-size: 1.8rem;
  }
}
