/* ===== BASE ===== */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* ===== WHATSAPP FLOAT BUTTON (OPTIMIZED) ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 10000;

  display: flex;
  align-items: center;
  gap: 10px;

  transition: all 0.3s ease;

  animation: floatPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1ebe5d;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

.whatsapp-icon {
  font-size: 18px;
  animation: pulseIcon 1.6s infinite;
}

/* ===== HERO ===== */
.hero {
  height: 90vh;
  background: url('hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 70px;
  letter-spacing: 5px;
  margin: 0;
}

.hero p {
  font-size: 20px;
  margin-top: 10px;
  opacity: 0.9;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* ===== CARD ===== */
.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.03);
}

/* ===== ABOUT ===== */
.about p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  color: #444;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.contact p {
  max-width: 600px;
  margin: 10px auto;
  color: #555;
}

.contact form {
  max-width: 500px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #25D366;
}

/* ===== BUTTON ===== */
.contact button {
  padding: 12px;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact button:hover {
  background: #333;
}

.contact a {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* ===== FOOTER (FIXED PERFECTLY) ===== */
.footer {
  width: 100%;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
  position: relative;
}

.footer p {
  margin: 8px 0;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 92%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  animation: zoomIn 0.25s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes floatPulse {
  0% { box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
  100% { box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
}

@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .whatsapp-float {
    padding: 12px 14px;
    font-size: 13px;
  }
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 6px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #111;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #25D366;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #111;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #25D366;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}
.section-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section-animate.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-description {
  margin-top: 20px;
  font-size: 18px;
  color: #e0e0e0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  position: relative;
}
.hero-main-text {
  font-size: 20px;
  color: #fff;
  max-width: 700px;
  margin: 10px auto 0;
  line-height: 1.6;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.2s;
}