:root {
  --primary-orange: #ff8c00;
  --primary-orange-light: #ffa500;
  --primary-orange-dark: #e67e00;
  --teal: #00423c;
  --teal-light: #006666;
  --teal-dark: #002925;
  --teal-bg: #002626;
  --muted-bg: #f8f9fa;
  --card-shadow: 0 4px 20px -4px rgba(0, 77, 77, 0.1);
  --card-shadow-hover: 0 12px 40px -8px rgba(0, 77, 77, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--teal);
  overflow-x: hidden;
}

/****************/
.fs18 {
  font-size: 18px !important;
}
.fs16 {
  font-size: 16px !important;
}
.fs14 {
  font-size: 14px !important;
}
.fc1 {
  color: var(--teal);
}
.fc2 {
  color: var(--teal-light);
}
.fc3 {
  color: var(--primary-orange-dark);
}

.dsss {
  background-color: #f0f5f5;
}
/****************/

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  min-height: 80vh;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse at center,
    rgb(149 115 74 / 65%) 0%,
    transparent 90%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(175px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 140, 0, 0.2);
  border-radius: 50px;
  color: var(--primary-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--primary-orange);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 0px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Buttons */
.btn-hero {
  background: var(--primary-orange);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  display: block;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px -8px rgba(255, 140, 0, 0.4);
}

.btn-hero:hover {
  background: var(--primary-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(255, 140, 0, 0.6);
  color: white;
}

.btn-hero-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: white;
  color: var(--teal);
}

.btn-whatsapp-new {
  background: #fa9200;
  color: white;
  padding: 14px 32px !important;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px -8px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-new:hover {
  background: #cc7700;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(37, 211, 102, 0.6);
  color: white;
}

.btn-outline-whatsapp {
  background: transparent !important;
  color: #fa9200;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px -8px rgba(37, 211, 102, 0.4);
  border: 2px solid #fa9200 !important;
}

.btn-outline-whatsapp:hover {
  background: #fa9200 !important;
  color: white !important;
}

.packages-section {
  background-color: #f0f5f5 !important;
}

/* Feature Items */
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Trust Stats */
.trust-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

/* Cards */
.feature-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 77, 77, 0.1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary-orange);
  transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
  color: white !important;
}

/* Package Cards */
.package-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.package-card.popular {
  border: 2px solid var(--primary-orange);
  box-shadow: 0 8px 30px -8px rgba(255, 140, 0, 0.4);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-orange);
  color: white;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom-left-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
}

/* Section Headers */
.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 50px;
  color: var(--primary-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: var(--primary-orange);
}

/* Specs Section */
.specs-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
}

.specs-table {
  background: rgba(0, 77, 77, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-row {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Pricing Table */
.pricing-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.pricing-header {
  background: var(--teal);
  color: white;
  padding: 20px;
  font-weight: 700;
}

.pricing-row {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  transition: background 0.2s ease;
}

.pricing-row:hover {
  background: #f8f9fa;
}

.pricing-premium {
  background: rgba(255, 140, 0, 0.05);
  font-weight: 600;
  color: var(--primary-orange);
}

/* Contact Cards */
.contact-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 77, 77, 0.1);
  text-decoration: none;
  display: block;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary-orange);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

/* Accordion */
.accordion-item {
  background: white;
  border: 1px solid rgba(0, 77, 77, 0.1);
  border-radius: 12px !important;
  margin-bottom: 16px;
  box-shadow: var(--card-shadow);
}

.accordion-button {
  font-weight: 600;
  color: var(--teal);
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-orange);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-orange);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  animation: float 2s ease-in-out infinite;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background: var(--primary-orange);
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .btn-whatsapp-new {
    /* background: #fa9200;
  color: white; */
    padding: 14px 22px !important;
    /* border-radius: 12px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px -8px rgba(37, 211, 102, 0.4); */
  }

  .btn-whatsapp-new:hover {
    padding: 14px 22px !important;
    /* background: #cc7700;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(37, 211, 102, 0.6);
  color: white; */
  }

  .trust-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section {
    padding-top: 60px;
  }
}
