body {
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
}

/* Smoother animated background */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0D0D0D;
  transition: background 1s ease;
}

.background-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0D0D0D;
  filter: blur(20px);
  opacity: 0.8;
  animation: gradientDrift 60s ease-in-out infinite alternate;
  transition: all 2s ease;
}

@keyframes gradientDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50px, -50px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(50px, 50px) scale(1);
    opacity: 0.8;
  }
}

/* Add this to your existing service.css, replacing the current .hero section */

/* ========================================
   HERO SECTION - WITH BACKGROUND SUPPORT
======================================== */

/* ========================================
   HERO SECTION - WITH BACKGROUND SUPPORT
======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 2rem 4rem;
  margin-top: 0; /* Changed from 20px to 0 */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-image 0.8s ease-in-out;
}
/* Overlay for background images */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1;
}

/* Gradient fade to page background */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, #0a0a0a, rgba(10, 10, 10, 0));
  z-index: 2;
}

/* Wrapper for content grid */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #dd023c 50%, #ff1744 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  position: relative;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  position: relative;
}

.hero p strong {
  color: white;
  font-weight: 600;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
}

.hero-feature i {
  color: #dd023c;
  font-size: 1.25rem;
  width: 24px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  position: relative;
}

.hero-button-primary {
  background: linear-gradient(135deg, #dd023c 0%, #ff1744 100%);
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hero-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(221, 2, 60, 0.4);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-image-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image-card:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: rgba(221, 2, 60, 0.5);
  box-shadow: 0 16px 40px rgba(221, 2, 60, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image-card:hover .hero-image {
  transform: scale(1.03);
}

/* Parallax effect for desktop */
@media (min-width: 1025px) {
  .hero {
    background-attachment: fixed;
  }
}

/* ========================================
   RESPONSIVE DESIGN - HERO
======================================== */

@media (max-width: 968px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero {
    padding: 4rem 2rem;
    background-attachment: scroll;
    background-position: center center;
  }
  
  .hero::before {
    background: rgba(10, 10, 10, 0.7);
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-container {
    max-width: 350px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero h1 br {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 1rem 3rem;
    min-height: auto;
    background-position: center top;
  }
  
  .hero::before {
    background: rgba(10, 10, 10, 0.75);
  }
  
  .hero::after {
    height: 30%;
  }

  /* Hide the visual on mobile */
  .hero-visual {
    display: none;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 1rem 2rem;
  }
}
/* Pricing Section */
.pricing-section {
  padding: 6rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #dd023c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Plan Switcher */
.plan-switcher {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.25rem;
  position: relative;
}

.switch-button {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.switch-button.active {
  color: #fff;
}

.switch-highlight {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: calc(100% - 0.5rem);
  background: linear-gradient(135deg, #dd023c 0%, #ff1744 100%);
  border-radius: 50px;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Pricing Grid - 4 columns */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 2rem 1.5rem;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(221, 2, 60, 0.3);
  box-shadow: 0 12px 40px rgba(221, 2, 60, 0.15);
}

.pricing-card.featured {
  border: 2px solid rgba(221, 2, 60, 0.4);
}

.pricing-card.featured:hover {
  border-color: rgba(221, 2, 60, 0.6);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #dd023c 0%, #ff1744 100%);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: #dd023c;
  margin-bottom: 1.25rem;
}

.plan-price .currency {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
}

.plan-price .period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.features-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.features-list li i {
  color: #dd023c;
  font-size: 0.9rem;
  width: 18px;
  flex-shrink: 0;
}

.plan-button {
  width: 100%;
  background: rgba(221, 2, 60, 0.1);
  border: 1px solid rgba(221, 2, 60, 0.3);
  color: #dd023c;
  padding: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.plan-button:hover {
  background: linear-gradient(135deg, #dd023c 0%, #ff1744 100%);
  color: white;
  transform: translateY(-2px);
}

.pricing-card.featured .plan-button {
  background: linear-gradient(135deg, #dd023c 0%, #ff1744 100%);
  color: white;
}

.hidden {
  display: none !important;
}

/* Custom Solutions */
.custom-section {
  margin: 4rem 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.custom-card {
  background: rgba(221, 2, 60, 0.05);
  border: 1px solid rgba(221, 2, 60, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.custom-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.custom-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.custom-button {
  background: linear-gradient(135deg, #dd023c 0%, #ff1744 100%);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.custom-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 2, 60, 0.3);
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: white;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(221, 2, 60, 0.2);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(221, 2, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon i {
  color: #dd023c;
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}

.faq-item.active .faq-icon i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem 1.5rem;
  opacity: 1;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-container {
    max-width: 350px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero h1 br {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }

  .pricing-section {
    padding: 4rem 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .custom-section {
    margin: 3rem 1rem;
  }

  .custom-card {
    padding: 2rem 1.5rem;
  }

  .faq-section {
    padding: 0 1rem;
  }
}

@media (min-width: 1201px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Responsive Improvements */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
  }

  /* Hide the visual on mobile */
  .hero-visual {
    display: none;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}


.disclaimer {
  grid-column: 1 / -1; /* Spans all columns in the grid */
  margin: 1rem auto 0;
  font-size: 0.90rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 400px;
  text-align: center;
}
