/* ========== Global Styles ========== */
:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --dark-color: #2d3748;
  --light-color: #f7fafc;
  --text-color: #4a5568;
  --border-color: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* ========== Top Bar ========== */
.top-bar {
  background: var(--dark-color);
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 1030;
}

.top-bar-link {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s;
}

.top-bar-link:hover {
  color: var(--primary-color);
}

.top-bar-link i {
  margin-right: 5px;
}

.top-bar-social .social-link {
  color: white;
  margin-left: 15px;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.top-bar-social .social-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ========== Navigation ========== */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s;
  background: white;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.brand-text {
  font-size: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 15px;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* ========== Hero Slider ========== */
.hero-slider {
  position: relative;
  height: 600px;
  z-index: 1;
  margin-top: 0;
}

.hero-slider .carousel-item {
  height: 600px;
  position: relative;
  z-index: 1;
}

.carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 10;
  position: relative;
}

.carousel-caption h1 {
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.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;
}

/* ========== About Section ========== */
.about-section {
  background: var(--light-color);
}

.section-title {
  color: var(--dark-color);
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-box i {
  font-size: 1.5rem;
}

.about-image img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========== Services Section ========== */
.services-section {
  background: var(--light-color);
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.service-card h4 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

/* ========== Service Detail Cards ========== */
.service-detail-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s;
}

.service-detail-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-detail-card h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* ========== Why Choose Cards ========== */
.why-choose-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.why-choose-card h4 {
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 600;
}

/* ========== CTA Section ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0;
}

/* ========== Page Header ========== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 100px 0 80px;
  margin-bottom: 0;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.6);
}

/* ========== Reference Cards ========== */
.reference-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  height: 100%;
}

.reference-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.reference-image {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-color), white);
  text-align: center;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.reference-card:hover .reference-image img {
  transform: scale(1.1);
}

.reference-content {
  padding: 30px;
}

.reference-content h4 {
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 600;
}

/* ========== Stats Section ========== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.stat-box {
  padding: 20px;
}

.stat-box i {
  color: rgba(255,255,255,0.9);
}

.stat-box h3 {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0;
}

/* ========== Contact Section ========== */
.contact-info-box,
.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-content h5 {
  color: var(--dark-color);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-info-content a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-content a:hover {
  color: var(--primary-color);
}

.social-link-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--light-color);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link-large:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: translateY(-3px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  border: 2px solid var(--border-color);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.map-container iframe {
  border-radius: 15px;
  margin-top: 30px;
}

/* ========== Footer ========== */
.footer {
  background: var(--dark-color);
  color: white;
  margin-top: 80px;
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.footer-text {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
}

.footer-contact i {
  color: var(--primary-color);
  width: 20px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
}

/* ========== WhatsApp Float Button ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  color: white;
}

/* ========== Phone Float Button ========== */
.phone-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  text-decoration: none;
}

.phone-float:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: scale(1.1);
  color: white;
}

/* ========== Service Image ========== */
.service-image {
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-detail-card:hover .service-image img {
  transform: scale(1.1);
}

/* ========== About Page Styles ========== */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.vision-mission-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.vision-mission-card h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.value-card i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.value-card h4 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-image {
  padding: 60px;
  background: linear-gradient(135deg, var(--light-color), white);
  text-align: center;
  color: var(--primary-color);
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h4 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-contact {
  margin-top: 15px;
  text-align: left;
}

.team-contact p {
  margin-bottom: 10px;
  color: var(--text-color);
}

.team-contact i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}

.feature-detail-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-number {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.feature-detail-card h4 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.feature-detail-card p {
  position: relative;
  z-index: 1;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  .hero-slider,
  .hero-slider .carousel-item {
    height: 500px;
  }
  
  .navbar-nav .nav-link {
    margin: 5px 0;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-slider,
  .hero-slider .carousel-item {
    height: 400px;
  }
  
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  
  .top-bar-link {
    font-size: 0.8rem;
    margin-right: 10px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .phone-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ========== Product Cards ========== */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.product-info p {
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: center;
}

.product-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* ========== Package Cards ========== */
.package-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.package-image {
  height: 250px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.1);
}

.package-header {
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #000;
}

.package-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.package-header p {
  color: #000;
  margin: 0;
}

.package-header i {
  color: #000;
}

.package-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-description {
  color: #666;
  line-height: 1.8;
}

.package-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.package-items li {
  padding: 10px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
}

.package-items li:last-child {
  border-bottom: none;
}

.package-items li i {
  color: #28a745;
  margin-right: 12px;
  margin-top: 3px;
  font-size: 0.9rem;
}

.package-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
}

.feature-badge i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* ========== Featured Products (Small) ========== */
.featured-product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.product-image-small {
  height: 200px;
  overflow: hidden;
}

.product-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-product-card:hover .product-image-small img {
  transform: scale(1.1);
}

.product-info-small {
  padding: 20px;
  text-align: center;
}

.product-info-small h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.product-info-small p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* ========== Advantage Cards ========== */
.advantage-card {
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.advantage-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.advantage-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.advantage-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ========== Custom Package Section ========== */
.custom-package-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ========== Featured Products Section ========== */
.featured-products-section {
  background: #f8f9fa;
}

.service-preview-section {
  background: #fff;
}
