:root {
  --primary: #10b981;
  --primary-hover: #059669;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Glassmorphism Navbar */
.navbar {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  color: white;
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: white;
}

/* Hero Section */
#HeroSection {
  background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)), url("asset/HeroBanner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.herotitel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  max-width: 700px;
  text-align: center;
  color: white;
  animation: fadeIn 1s ease-out;
}

.herotitel h1 {
  font-size: 3.5rem;
  background: linear-gradient(to right, #4ade80, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.herotitel h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h1 {
  display: inline-block;
  font-size: 2.5rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 10px;
}

.section-header h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* About Us Section */
#AboutUs {
  padding: 100px 0;
  background-color: var(--light);
}

.about-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
}

.about-card h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.about-card h3 {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Services Section */
#Services {
  padding: 100px 0;
  background-color: white;
}

.service-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.service-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.service-card .card-body {
  background: white;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.service-card .card-title {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-card .card-text {
  color: var(--gray);
  margin-bottom: 20px;
}

/* Pricing Section */
#Pricing {
  padding: 100px 0;
  background-color: var(--light);
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gray);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover::before {
  background: var(--primary);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.pricing-card.popular::before {
  background: var(--primary);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.pricing-desc {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 0.95rem;
  height: 50px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

.pricing-amount span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

/* Footer */
footer {
  background-color: white;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.social-media a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Utilities */
.text-gradient {
  background: linear-gradient(to right, var(--primary), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .herotitel h1 {
    font-size: 2.5rem;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}