/* =============================== Hero Punch Line =============================== */
.hero-punch p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-punch p {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0.3rem 0;
}

/* =============================== Reinvented Alternating Sections =============================== */

/* On-Demand Section - Clean Two Column Layout */
.on-demand {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.on-demand::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.on-demand-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.on-demand-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.on-demand-text .subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-style: italic;
}

.on-demand-text .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
  border-radius: 2px;
  margin: 0.5rem auto 2rem auto; /* FIXED: Reduced top margin */
}

.on-demand-text .description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.on-demand-text .description::before {
  content: '💡';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

.on-demand-text .cta-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
  border: none;
  cursor: pointer;
}

.on-demand-text .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.on-demand-text .cta-button:hover::before {
  left: 100%;
}

.on-demand-text .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
}

.on-demand-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.on-demand-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(0, 115, 230, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.on-demand-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(10, 102, 194, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.on-demand-image img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(10, 102, 194, 0.15);
}

/* Consulting Section - Image Left, Services Right */
.consulting {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.consulting::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 115, 230, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.consulting-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.consulting-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1.5rem;
}

.consulting-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(0, 115, 230, 0.1) 0%, rgba(10, 102, 194, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.consulting-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 115, 230, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.consulting-image img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(0, 115, 230, 0.15);
}

/* Option 1: Modern Badge */
.consulting-image::after {
  content: '✓ TRUSTED';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 35px;
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
  z-index: 3;
  transition: all 0.3s ease;
}

.consulting-image::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(0, 115, 230, 0.1) 0%, rgba(10, 102, 194, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.image-caption {
  margin-top: 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  border-left: 4px solid #0a66c2;
  position: relative;
  order: -1;
}

.image-caption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.02) 0%, rgba(0, 115, 230, 0.01) 100%);
  border-radius: 12px;
  pointer-events: none;
}

.image-caption p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.consulting-image:hover::after {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
}

.consulting-text {
  position: relative;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.2);
  margin-bottom: 2rem;
}

.consulting-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.consulting-text .subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0;
  font-weight: 400;
  font-style: italic;
}

.consulting-text .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
  border-radius: 2px;
  margin: 0.5rem auto 2rem auto; /* FIXED: Reduced top margin */
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Hero Section - Modern Full-Width */
.hero {
  position: relative;
  background: url('../images/hero.webp') center/cover no-repeat;
  background-attachment: scroll; /* Faster than fixed */
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  opacity: 1;
  /* Loading optimizations */
  will-change: transform;
  transform: translateZ(0); /* Hardware acceleration */
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}


.hero-content {
  position: relative;
  z-index: 3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInHeroText 0.6s ease-out forwards;
}

@keyframes fadeInHeroText {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 900px;
}

.nowrap {
  white-space: nowrap;
}

.hero p {
  font-size: 1.25rem;
  margin: 0;
  color: #ffffff;
  max-width: 700px;
  font-weight: 400;
  line-height: 1.5;
}

/* Keep the first line on one line and centered visually */
.hero h1 .nowrap {
  white-space: nowrap;
}

/* Modern Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-content {
    max-width: 900px;
  }
  
  .why-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .why-intro, .why-benefits {
    padding: 1rem;
  }
  
  .why-intro p {
    font-size: 0.95rem;
  }
  
  .why-benefits h3 {
    font-size: 1.2rem;
  }
  
  /* Package container mobile improvements */
  .package-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .package-item {
    padding: 1.5rem;
  }
  
  .package-item h3 {
    font-size: 1.3rem;
  }
  
  .package-item .price {
    font-size: 1.1rem;
  }
  
  .why-points {
    grid-template-columns: 1fr;
  }
  
  .addons-intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  /* Reinvented Sections Responsive */
  .on-demand-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .on-demand-text h2,
  .on-demand-text .subtitle,
  .on-demand-text .description {
    text-align: center;
  }
  
  .on-demand-text .divider {
    margin: 0.5rem auto 2rem auto; /* FIXED: Reduced top margin */
  }
  
  .consulting-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .consulting-text h2,
  .consulting-text .subtitle {
    text-align: center;
  }
  
  .consulting-text .divider {
    margin: 0.5rem auto 2rem auto; /* FIXED: Reduced top margin */
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding: 1rem;
  }
  
  .hero h1 { font-size: 2rem; line-height: 1.2; }
  .hero h1 .nowrap { font-size: 0.95em; }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .hero-content {
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .why-seemost h2 {
    font-size: 1.8rem;
  }
  
  .packages h2 {
    font-size: 1.8rem;
  }
  
  /* Package container mobile - make wider and more readable */
  .package-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
  }
  
  .package-item {
    padding: 1.5rem;
    margin: 0;
    width: 100%;
  }
  
  .package-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .package-item .price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .package-item ul {
    text-align: left;
    padding-left: 1rem;
  }
  
  .package-item ul li {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  
  /* Reinvented Sections Mobile */
  .on-demand-wrapper {
    gap: 2rem;
  }
  
  .on-demand-text h2 {
    font-size: 1.8rem;
  }
  
  .on-demand-text .subtitle {
    font-size: 1.1rem;
  }
  
  .on-demand-image img {
    max-width: 350px;
  }
  
  .consulting-wrapper {
    gap: 2rem;
  }
  
  .consulting-text h2 {
    font-size: 2rem;
  }
  
  .consulting-text .subtitle {
    font-size: 1.1rem;
  }
  
  .consulting-image img {
    max-width: 350px;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* =============================== Packages Section =============================== */
.packages {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/packages-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  width: 100%;
}

.packages .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.packages h2 { 
  color: #fff; 
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.package-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile responsive package container */
@media (max-width: 1024px) {
  .package-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .package-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
  }
}
.package-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e6eaf0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
}

.package-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #0a66c2;
}
.package-item i {
  font-size: 2.5rem;
  color: #0a66c2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.package-item:hover i {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
}

.package-item h3 { font-size: 1.4em; margin-bottom: 0.5em; }
.package-item .price { font-size: 1.2em; font-weight: bold; color: #0073e6; margin-bottom: 1em; }
.package-item ul { list-style: none; padding: 0; margin: 0 0 1.5em; text-align: left; }
.package-item ul li { padding: 0.4em 0; border-bottom: 1px solid #eee; }
.package-item ul li:last-child { border-bottom: none; }

/* Packages header overrides (contextual only) */
.packages .section-title {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
}
.packages .section-subline {
  color: #f1f1f1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .35);
}
.packages .section-divider { background-color: #66a8ff; opacity: 1; }

/* Why Seemost Section - Modern Full-Width */
.why-seemost {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.why-seemost::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.why-seemost::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 115, 230, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.why-seemost h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a202c;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.why-seemost .subline { 
  font-size: 1.2rem;
  color: #64748b; 
  margin-bottom: 1rem;
  font-weight: 400;
  text-align: center;
  font-style: italic;
}

.why-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.why-intro {
  text-align: left;
  margin: 0;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0a66c2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-intro p {
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
  margin: 0 0 1.5rem 0;
  font-weight: 500;
}

.why-highlight {
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #0a66c2;
  margin-top: 1rem;
}

.why-highlight h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 0.5rem 0;
}

.why-highlight p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

.why-benefits {
  text-align: left;
  margin: 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0a66c2;
  display: flex;
  flex-direction: column;
}

.why-benefits h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.why-benefits h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
  border-radius: 1px;
}

.why-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  text-align: left;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: white;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.why-point:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-point i {
  color: #0a66c2;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-point span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}


.why-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  font-style: italic;
}

.why-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  background: none;
  border: none;
  transition: all 0.3s ease;
}

.why-point:hover {
  transform: translateY(-2px);
}

.why-point i {
  color: #10b981;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-point span {
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .why-content {
    gap: 1rem;
  }
  
  .why-text p {
    font-size: 1rem;
  }
  
  .addons-intro-content {
    gap: 1.5rem;
  }
  
  .addons-intro-text h3 {
    font-size: 1.5rem;
  }
  
  .addons-intro-text p {
    font-size: 1rem;
  }
  
  .why-points {
    gap: 0.8rem;
  }
  
  .why-point span {
    font-size: 0.9rem;
  }
}

/* =============================== Add-Ons =============================== */
.addons {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.addons::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.addons::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 115, 230, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.addons h2 { 
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a202c;
  position: relative;
  z-index: 2;
}

.addons .subline {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.addons-intro {
  margin: 3rem 0;
  position: relative;
  z-index: 2;
}

.addons-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.addons-intro-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.addons-intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.addons-intro-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.addons-intro-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(0, 115, 230, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.addons-intro-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.addons-intro-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.addon-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Mobile responsive addon container */
@media (max-width: 1024px) {
  .addon-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .addon-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
  }
}
.addon-item { 
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.addon-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
}

.addon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #0a66c2;
}

.addon-item i { 
  font-size: 2.5rem;
  color: #0a66c2;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.addon-item:hover i {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
}

.addon-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1a202c;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.addon-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
  border-radius: 1px;
}

.addon-item p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  margin-top: 1.2rem;
  text-align: center;
}

/* =============================== Mini-Hero Section =============================== */
.mini-hero {
  position: relative;
  background: url('../images/mini-hero.jpg') center/cover no-repeat;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.mini-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.mini-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1em;
}
.mini-hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #fff;
}
.mini-hero p {
  font-size: 1.1rem;
  margin-bottom: 1.2em;
  font-style: italic;
  color: #f1f1f1;
}

/* =============================== On-Demand IT Support (Home) =============================== */
.on-demand {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.on-demand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(10, 102, 194, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 115, 230, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.on-demand h2 {
  font-size: 1.8rem;
  margin-bottom: 0.3em;
  color: #000000;
  position: relative;
  z-index: 2;
}
.on-demand .ondemand-text {
  max-width: 700px;
  margin: 0 auto 1.5em auto;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* =============================== Consulting (Home) =============================== */
.consulting {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.consulting::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(10, 102, 194, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 115, 230, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.consulting h2 {
  font-size: 1.8rem;
  margin-bottom: 0.3em;
  color: #000000;
  position: relative;
  z-index: 2;
}
.consulting-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-bottom: 2em;
  position: relative;
  z-index: 2;
}
.consulting-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #e6eaf0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.consulting-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
}

.consulting-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #0a66c2;
}

.consulting-item i {
  font-size: 2.5rem;
  color: #0a66c2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.consulting-item:hover i {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
}

.consulting-item h3 {
  margin-bottom: 0.8rem;
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.consulting-item p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* =============================== Service Progression =============================== */
.service-progression {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-progression::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(10, 102, 194, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 115, 230, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.progression-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.progression-left,
.progression-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.progression-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.progression-image:hover {
  transform: scale(1.05);
  border-color: rgba(10, 102, 194, 0.5);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.progression-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.progression-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(10, 102, 194, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.progression-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.progression-arrow {
  font-size: 2rem;
  color: #ffffff;
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.progression-arrow:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  color: #0a66c2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(10, 102, 194, 0.5);
}

@media (max-width: 768px) {
  .progression-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .progression-left,
  .progression-right {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  
  .progression-arrow {
    transform: rotate(90deg);
  }
  
  .progression-text {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  
  .progression-image {
    width: 80px;
    height: 80px;
  }
}

/* =============================== Subtle Divider Between Sections =============================== */
.section-long-divider {
  width: 40%;
  height: 1px;
  background-color: #ccc;
  margin: 2.5em auto;
  border-radius: 1px;
}
