/* ===== HANA YOG - Main Stylesheet ===== */
:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #a8e6c3;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-gray: #666;
  --bg-light: #f9fdf9;
  --shadow: 0 4px 20px rgba(46,204,113,0.15);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: white;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: white; margin: 0 10px; }
.top-bar a:hover { text-decoration: underline; }
.top-bar .top-links { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.top-bar .top-contact { display: flex; align-items: center; gap: 15px; }
.top-bar .top-contact span { display: flex; align-items: center; gap: 5px; }

/* ===== HEADER / NAVBAR ===== */
header {
  background: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo img {
  height: 70px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--green-dark);
  background: #f0fff5;
}
.nav-menu .has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  border-radius: 6px;
  border-top: 3px solid var(--green);
  z-index: 999;
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-dark);
  transition: all 0.2s;
  border-bottom: 1px solid #f5f5f5;
}
.dropdown li a:hover {
  background: #f0fff5;
  color: var(--green-dark);
  padding-left: 24px;
}
.has-dropdown:hover .dropdown { display: block; }

.nav-enquiry-btn {
  background: var(--green);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
}
.nav-enquiry-btn:hover {
  background: var(--green-dark) !important;
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: 0.3s;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
}
.slide.active { opacity: 1; }
.slide-content {
  padding: 0 80px;
  max-width: 600px;
  animation: slideIn 0.8s ease;
}
@keyframes slideIn {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.slide-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.slide-content p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 13px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,204,113,0.4);
}
.slide-image {
  position: absolute;
  right: 80px;
  bottom: 0;
  height: 500px;
  opacity: 0.2;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(46,204,113,0.4);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active { background: var(--green-dark); transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.slider-arrow:hover { background: var(--green); color: white; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ===== SECTION STYLES ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-light); }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .icon-lotus {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-title p {
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-title .underline {
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.feature-card {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.feature-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
.product-card-placeholder img { max-width: 130px; max-height: 130px; }
.product-info {
  padding: 18px;
  text-align: center;
}
.product-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green-dark);
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-outline:hover {
  background: var(--green);
  color: white;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 240px;
  cursor: pointer;
}
.service-card-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: transform 0.4s;
}
.service-card:hover .service-card-bg { transform: scale(1.05); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.service-overlay h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--green-dark); }
.testimonials .section-title h2 { color: white; }
.testimonials .section-title p { color: rgba(255,255,255,0.8); }
.testimonials .underline { background: white; }
.testimonials-slider { max-width: 800px; margin: 0 auto; }
.testimonial {
  display: none;
  text-align: center;
  padding: 20px;
}
.testimonial.active { display: block; }
.testimonial p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial .author {
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.testimonial .stars { color: #ffd700; font-size: 20px; margin-bottom: 16px; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,204,113,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  opacity: 0;
  transition: 0.3s;
}

/* ===== VIDEO SECTION ===== */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.video-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, #1a5c3a, #2ecc71);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.play-btn:hover { transform: scale(1.1); }
.video-list { display: flex; flex-direction: column; gap: 16px; }
.video-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}
.video-item:hover { background: #e8f5e9; }
.video-thumb {
  width: 80px; height: 55px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
}
.video-item h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.video-item p { font-size: 12px; color: var(--text-gray); margin-top: 4px; }

/* ===== FOOTER ===== */
footer {
  background: #1a2f1a;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img {
  height: 100px;
  width: auto;
  filter: none;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.footer-contact-item span { font-size: 16px; }

.footer-col h4 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:before { content: '›'; color: var(--green); font-size: 18px; }
.footer-col ul li a:hover { color: var(--green); padding-left: 5px; }

.footer-map iframe {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: none;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--green); }

.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: white;
  transition: 0.3s;
}
.social-btn:hover { background: var(--green); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: popIn 0.3s ease;
}
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--text-gray);
}
.modal h3 {
  font-size: 24px; font-weight: 800;
  color: var(--text-dark); margin-bottom: 24px;
  color: var(--green-dark);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); }
.form-group textarea { height: 100px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--green);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.btn-submit:hover { background: var(--green-dark); }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--green);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item h3 {
  font-size: 40px;
  font-weight: 900;
  color: white;
}
.stat-item p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-top: 4px;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(46,204,113,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: 0.3s;
}
.back-top:hover { background: var(--green-dark); transform: translateY(-3px); }
.back-top.visible { display: flex; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-dark);
}
.page-hero .breadcrumb {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 10px;
}
.page-hero .breadcrumb a { color: var(--green-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 5px 20px rgba(0,0,0,0.1); padding: 20px; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 10px; }
  .dropdown { position: static; box-shadow: none; padding-left: 20px; }
  .hamburger { display: flex; }
  header { position: relative; }
  .hero-slider { height: 380px; }
  .slide-content { padding: 0 30px; }
  .slide-content h2 { font-size: 28px; }
  .slide-image { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar .container { justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: pulse 1.5s infinite;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 4px solid black;
    background: white;
    padding: 5px;
    z-index: 9999;
}