* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bitter", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fffef8;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: linear-gradient(
      rgba(255, 204, 102, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("https://images.unsplash.com/photo-1608752436009-7079e8f1e2ee")
      center/cover no-repeat;
  color: #4b2e05;
  text-align: center;
  padding: 100px 20px;
  animation: fadeInDown 1.2s ease;
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
}

header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

section,
.cta {
  margin: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

section.show,
.cta.show {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #b97b16;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #b97b16;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.about-grid img:hover {
  transform: scale(1.03);
}

.about-text {
  font-size: 1rem;
  color: #444;
}

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  margin-top: 30px;
}

.value-box {
  flex: 1 1 250px;
  background: #fff7e0;
  margin: 10px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.value-box:hover {
  background: #ffeab0;
  transform: translateY(-5px);
}

.value-box h3 {
  color: #b97b16;
  margin-bottom: 10px;
}

.cta {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #ffe9b3, #fff4d9);
  border-top: 2px solid #f7e5a1;
  border-radius: 20px;
  margin-top: 80px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4b2e05;
}

.cta button {
  background: #b97b16;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  background: #7a530c;
}

footer {
  background: #4b2e05;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 50px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Popup Contact Form */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-overlay.active {
  display: flex;
}

.popup {
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.6s ease;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup h3 {
  color: #b97b16;
  margin-bottom: 15px;
}

.popup form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup input,
.popup textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.popup input:focus,
.popup textarea:focus {
  border-color: #b97b16;
  box-shadow: 0 0 5px rgba(185, 123, 22, 0.4);
}

.popup button {
  background: #b97b16;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.popup button:hover {
  background: #7a530c;
}

.close-btn1 {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
  .cta {
    padding: 70px 15px;
  }
}
