* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: radial-gradient(circle at 10% 30%, #fef9f0, #fff7ed);
  color: #1f2937;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(2px 2px at 20px 30px, #facc15, rgba(0,0,0,0)), repeating-linear-gradient(transparent, transparent 100px, rgba(255,215,0,0.1) 100px);
  opacity: 0.3;
  z-index: -1;
}

.glass-nav {
  background: rgba(255, 248, 235, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #b45309;
}
.logo i {
  font-size: 2rem;
  color: #f59e0b;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #4b2e1a;
  transition: 0.2s;
}
.nav-links a:hover {
  color: #f59e0b;
  transform: translateY(-2px);
}
.phone-btn {
  background: #f59e0b;
  padding: 8px 20px;
  border-radius: 40px;
  color: white !important;
  box-shadow: 0 5px 10px rgba(245,158,11,0.3);
}

.hero-modern {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 3rem auto;
  padding: 2rem;
  gap: 3rem;
  position: relative;
}

.hero-bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.2), transparent);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.hero-content-modern {
  flex: 1;
}
.magic-badge {
  background: #ffedd5;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #b45309;
}
.hero-content-modern h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
}
.gradient-text {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-content-modern p {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  color: #4b5563;
}
.btn-primary-glow {
  background: linear-gradient(95deg, #f59e0b, #d97706);
  border: none;
  padding: 14px 30px;
  border-radius: 60px;
  font-weight: 700;
  color: white;
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(245,158,11,0.4);
  transition: 0.2s;
}
.btn-primary-glow:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 22px rgba(245,158,11,0.6);
}
.btn-outline-light {
  border: 2px solid #f59e0b;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  color: #b45309;
  margin-left: 1rem;
}
.floating-cards {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.floating-card {
  background: white;
  border-radius: 80px;
  padding: 8px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  font-weight: 500;
}
.hero-illustration i {
  font-size: 12rem;
  color: #f59e0b;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.services-modern {
  max-width: 1280px;
  margin: 6rem auto;
  padding: 0 2rem;
}
.section-header-modern {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header-modern span {
  background: #ffedd5;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}
.section-header-modern h3 {
  font-size: 2.2rem;
  margin: 0.5rem 0;
}
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card-modern {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid #ffe4bf;
}
.service-card-modern:hover {
  transform: translateY(-8px);
  border-color: #f59e0b;
  box-shadow: 0 20px 30px rgba(245,158,11,0.15);
}
.service-card-modern i {
  font-size: 2.8rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}
.service-card-modern h4 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.card-hint {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: #f59e0b;
}

.quote-magic {
  background: linear-gradient(125deg, #fffbeb, #fff1e0);
  border-radius: 3rem;
  margin: 4rem 2rem;
  padding: 3rem;
}
.quote-magic-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.quote-magic-info {
  flex: 1;
}
.quote-magic-info i {
  font-size: 2.5rem;
  color: #f59e0b;
}
.quote-magic-info h3 {
  font-size: 2rem;
  margin: 0.5rem 0;
}
.magic-contact {
  margin-top: 1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 2rem;
}
.quote-magic-form {
  flex: 1.5;
  background: white;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 20px 35px rgba(0,0,0,0.05);
}
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.form-row input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ffe0b5;
  border-radius: 50px;
  font-family: inherit;
  background: #fefcf7;
}
textarea {
  border-radius: 28px;
}
.btn-magic-submit {
  background: #f59e0b;
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
.form-hint {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 1rem;
}
.footer-magic {
  background: #2d1b0c;
  color: #ffedd5;
  padding: 3rem 2rem 1rem;
  border-radius: 3rem 3rem 0 0;
}
@media (max-width: 800px) {
  .hero-content-modern h2 { font-size: 2rem; }
  .nav-links { gap: 1rem; }
}