:root {
  --primary: #fd9300;
  --primary-dark: #e58500;
  --secondary: #004d40;
  --secondary-light: #00695c;
  --hero-dark: #002925;
  --hero-light: #00423c;
  --whatsapp: #25d366;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --bg-light: #f8f9fa;
  --border-color: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header Styles */
/* .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-dark) !important;
        } */

.logo-icon {
  background: var(--primary);
  color: white;
  padding: 8px;
  border-radius: 8px;
  margin-right: 8px;
}

/* .nav-link {
            font-weight: 500;
            color: var(--text-muted) !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--text-dark) !important;
        } */

.btn-call {
  background: var(--secondary);
  color: white !important;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--hero-dark) 0%,
    var(--hero-light) 100%
  );
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(253, 147, 0, 0.15);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(80px);
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(253, 147, 0, 0.1);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(80px);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.trust-badge i {
  color: var(--primary);
}

.badge-instock {
  background: var(--whatsapp);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.rating-stars {
  color: var(--primary);
}

.rating-text {
  color: white;
  font-weight: 600;
}

.rating-count {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
}

.pricing-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-period {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.btn-whatsapp-canon {
  background: var(--whatsapp);
  color: white;
  font-weight: 600;
  padding: 16px 32px !important;
  border-radius: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-canon:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  color: white;
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Kit Section */
.kit-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
}

.kit-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.kit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.kit-icon {
  background: rgba(253, 147, 0, 0.1);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.kit-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.kit-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Why Choose Section */
.why-section {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  padding: 80px 0;
}

.why-card {
  text-align: center;
  color: white;
}

.why-icon {
  background: rgba(253, 147, 0, 0.2);
  color: var(--primary);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.why-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.why-description {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

/* Specs Section */
.specs-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.specs-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.specs-table tr:nth-child(even) {
  background: var(--bg-light);
}

.specs-table td {
  padding: 16px 24px;
  border: none;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.specs-table td:last-child {
  color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.accordion-item {
  background: white;
  border: 1px solid var(--border-color) !important;
  border-radius: 16px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  color: var(--text-dark);
  padding: 20px 24px;
  background: white;
}

.accordion-button:not(.collapsed) {
  background: white;
  color: var(--text-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.accordion-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
}

/* Why Rent Section */
.rent-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.use-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.use-case-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.use-case-badge i {
  color: var(--primary);
}

.area-badge {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  padding: 60px 0 30px;
  color: white;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  background: var(--primary);
}

.footer-description {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .trust-badges {
    flex-wrap: wrap;
  }

  .btn-whatsapp-canon {
  padding: 16px 14px !important;
}

.btn-whatsapp-canon:hover {
  padding: 16px 32px !important;
}


}

