* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 25%, #ff6b6b 50%, #ee5a24 75%, #ff3838 100%);
  min-height: 100vh;
  line-height: 1.6;
  color: #2d3436;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 126, 95, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(254, 180, 123, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(255, 107, 107, 0.2) 0%, transparent 50%);
  animation: sunset 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes sunset {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
  33% { 
    transform: translateY(-10px) rotate(120deg);
    opacity: 1;
  }
  66% { 
    transform: translateY(5px) rotate(240deg);
    opacity: 0.9;
  }
}

header {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.95) 0%, rgba(238, 90, 36, 0.9) 100%);
  backdrop-filter: blur(15px);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 126, 95, 0.3);
}

header::before {
  content: '☀️';
  position: absolute;
  font-size: 10rem;
  opacity: 0.1;
  top: 20px;
  left: 50px;
  animation: sunRotate 10s linear infinite;
}

@keyframes sunRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

header h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

header h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

#services {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.95) 100%);
  margin: 60px auto;
  border-radius: 30px;
  max-width: 1200px;
  box-shadow: 0 30px 80px rgba(255, 126, 95, 0.2);
  color: #2d3436;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 126, 95, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: warmGlow 8s ease-in-out infinite;
}

@keyframes warmGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

#services h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: #e17055;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

#services h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b, #ff6b6b);
  border-radius: 3px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 240, 0.8) 100%);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(255, 126, 95, 0.15);
  border-left: 6px solid #ff7e5f;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(255, 126, 95, 0.25);
  border-left-color: #e17055;
}

.service-card strong {
  color: #e17055;
  font-size: 1.6rem;
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-card p {
  color: #636e72;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  margin: 12px 0;
  position: relative;
  padding-left: 25px;
  color: #636e72;
  font-size: 1.05rem;
}

.service-card li::before {
  content: "🔥";
  position: absolute;
  left: 0;
  font-size: 1rem;
}

#why-choose {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.95) 0%, rgba(238, 90, 36, 0.9) 100%);
  margin: 80px auto;
  border-radius: 30px;
  max-width: 1200px;
  box-shadow: 0 30px 80px rgba(255, 126, 95, 0.4);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

#why-choose::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(254, 180, 123, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

#why-choose h2 {
  font-size: 3.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.why-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-item strong {
  color: #ffffff;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.05rem;
}

#contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #feb47b 0%, #ff6b6b 50%, #ee5a24 100%);
  margin: 80px auto;
  border-radius: 30px;
  max-width: 1200px;
  box-shadow: 0 30px 80px rgba(254, 180, 123, 0.4);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '💌';
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 5rem;
  opacity: 0.2;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

#contact h2 {
  font-size: 3.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

#contact p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

#contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

#contact a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#tid-bits-link {
  text-align: center;
  padding: 80px 20px;
  margin: 100px auto 60px;
  max-width: 800px;
}

#tid-bits-link a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 25px 70px;
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.9), rgba(238, 90, 36, 0.8));
  border-radius: 60px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  display: inline-block;
  backdrop-filter: blur(10px);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 50px rgba(255, 126, 95, 0.3);
  position: relative;
  overflow: hidden;
}

#tid-bits-link a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

#tid-bits-link a:hover::before {
  left: 100%;
}

#tid-bits-link a:hover {
  background: linear-gradient(135deg, rgba(255, 126, 95, 1), rgba(238, 90, 36, 0.9));
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(255, 126, 95, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

footer {
  background: linear-gradient(135deg, rgba(238, 90, 36, 0.9), rgba(189, 56, 20, 0.95));
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px;
  text-align: center;
  margin-top: 100px;
  border-top: 3px solid rgba(255, 126, 95, 0.5);
}

footer p {
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 3rem;
  }
  
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  #services,
  #why-choose,
  #contact {
    margin: 40px 15px;
    padding: 60px 25px;
  }
  
  #services h2,
  #why-choose h2,
  #contact h2 {
    font-size: 2.5rem;
  }
}