/* ============================================================
   DISSPOPACK.IN — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green:       #2d6a4f;
  --green-light: #52b788;
  --green-pale:  #d8f3dc;
  --gold:        #e9c46a;
  --dark:        #1b2b1f;
  --gray:        #f4f7f5;
  --text:        #2c3e35;
  --muted:       #7a9a85;
  --white:       #ffffff;
  --radius:      14px;
  --shadow:      0 8px 32px rgba(45,106,79,.13);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; width: 100%; object-fit: cover; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  display: flex; 
  flex-wrap: wrap; 
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: .5px;
}

.navbar .logo-text span { color: var(--green-light); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 8px 18px;
  color: var(--white);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: var(--green);
  color: var(--white);
}

/* ── DROPDOWN ───────────────────────────────────────────────── */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  min-width: 230px;
  box-shadow: var(--shadow);
  border: 1px solid var(--green-pale);
  overflow: hidden;
  z-index: 999;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray);
  transition: var(--transition);
}

.dropdown-menu a:last-child { border-bottom: none; }

.dropdown-menu a:hover {
  background: var(--green-pale);
  color: var(--green);
  padding-left: 28px;
}


/* ── SLIDER ─────────────────────────────────────────────────── */
.slider {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,43,31,.7) 0%, rgba(27,43,31,.25) 100%);
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.slide-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.slide-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
}

.slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active { background: var(--gold); transform: scale(1.3); }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover { background: var(--green); border-color: var(--green); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 10px;
}

.section-header .underline {
  width: 60px;
  height: 4px;
  background: var(--green-light);
  border-radius: 2px;
  margin: 0 auto 14px;
}

.section-header p { color: var(--muted); font-size: 1rem; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  padding: 80px 5%;
  background: var(--gray);
  overflow: hidden;
}

.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--gray), transparent); }
.testimonials-track-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--gray), transparent); }

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scrollLeft 28s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-light);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: .93rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}

.testimonial-card .reviewer {
  font-weight: 600;
  color: var(--green);
  font-size: .9rem;
}

.testimonial-card .reviewer-title {
  font-size: .82rem;
  color: var(--muted);
}

/* ── ADDRESS / MAP ──────────────────────────────────────────── */
.address-section {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.address-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.address-info .detail {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.address-info .detail .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--green);
}

.address-info .detail p { font-size: .95rem; line-height: 1.6; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 36px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-icons {
  display: flex;
  gap: 20px;
}

.footer-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.footer-icon.whatsapp { background: #25d366; }
.footer-icon.location { background: var(--green); }
.footer-icon.phone    { background: var(--gold); color: var(--dark); }

.footer-icon:hover { transform: translateY(-4px) scale(1.1); }

.footer-copy {
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
}

/* ── PRODUCTS PAGE ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--green) 100%);
  padding: 60px 5%;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p { color: rgba(255,255,255,.8); font-size: 1rem; }

.products-section {
  padding: 64px 5%;
  background: var(--gray);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(45,106,79,.18);
}

.product-card .product-img {
  height: 220px;
  overflow: hidden;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}

.product-card:hover .product-img img { transform: scale(1.06); }

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-info p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.enquire-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}

.enquire-btn:hover { background: var(--green-light); transform: translateY(-2px); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 5%;
  background: var(--white);
  border-bottom: 1px solid var(--green-pale);
  font-size: .88rem;
  color: var(--muted);
}

.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .address-section {
    grid-template-columns: 1fr;
  }

  .slider { height: 360px; }

  .nav-links { display: none; }

  .navbar { padding: 0 4%; }
}

