
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 160px 0 80px;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 154, 41, 0.1) 0%, transparent 50%);
}
.page-hero-content {
  position: relative;
  text-align: center;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-item a:hover {
  color: var(--gold);
}
.breadcrumb-item.active {
  color: var(--gold);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
.service-card-large {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.service-card-large:hover {
  transform: translateY(-8px);
}
.service-card-large .service-image {
  position: relative;
  height: auto;
  overflow: hidden;
}
.service-card-large .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.service-card-large .service-content {
  padding: 24px;
}
.service-card-large .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-top: -50px;
  position: relative;
  box-shadow: var(--shadow-gold);
}
.service-card-large h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 16px 0 12px;
}
.service-card-large p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.service-features li i {
  color: var(--gold);
}
.service-card-small {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.service-card-small:hover {
  transform: translateY(-5px);
}
.service-card-small .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(217, 154, 41, 0.1), rgba(217, 154, 41, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.service-card-small h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card-small p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.process-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.process-card:hover {
  transform: translateY(-5px);
}
.process-number {
  position: absolute;
  top: -15px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}
.process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(217, 154, 41, 0.1), rgba(217, 154, 41, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.75rem;
  margin: 0 auto 20px;
}
.process-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}
.cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 154, 41, 0.2) 0%, transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-main {
  background: var(--dark);
  color: white;
  padding: 80px 0 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.footer-logo .brand-icon {
  color: var(--gold);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.footer-brand .social-links {
  display: flex;
  gap: 12px;
}
.footer-brand .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.footer-brand .social-links a:hover {
  background: var(--gold);
}
.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--gold);
  padding-right: 8px;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact ul li i {
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}
/* Service Image Carousel Arrows */
.service-image .carousel-control-prev,
.service-image .carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition);

  @media (max-width:767px) {
    opacity: 1;
  }
}

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

.service-image .carousel-control-prev {
  right: 12px;
  left: auto;
}
/* 
.carousel-item img {
  aspect-ratio: 16/9;
} */

.service-image .carousel-control-next {
  left: 12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
    box-shadow: var(--shadow);
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
}
