/* ===== Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #fff;
  color: #222;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== Fade-in Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(160deg, #fff8f2 0%, #ffeedf 60%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #222;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,122,0,0.15), transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(255,165,70,0.15), transparent 60%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 700px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  animation: fadeUp 1.2s ease forwards;
}

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

.logo {
  width: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: #ff7a00;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h2 span {
  color: #ff7a00;
}

.tagline {
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 30px;
  color: #555;
  line-height: 1.7;
}

.btn-primary {
  background: linear-gradient(90deg, #ff7a00, #ffa94d);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255,122,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,122,0,0.5);
}

/* ===== About Section ===== */
.about {
  text-align: center;
  padding: 120px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.about h2 {
  font-family: 'Poppins', sans-serif;
  color: #ff7a00;
  font-size: 2.2rem;
  margin-bottom: 25px;
}
.about p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

/* ===== Reviews Section ===== */
.reviews {
  background: #fdfaf7;
  padding: 120px 20px;
  text-align: center;
}
.reviews h2 {
  font-family: 'Poppins', sans-serif;
  color: #ff7a00;
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.review-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}
.review-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}
.review-card span {
  color: #888;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.95rem;
  color: #777;
  background: #fff3e6;
  letter-spacing: 0.3px;
}
