/* =============================================
   ACHAR MAA DE HATH DA — PREMIUM STYLESHEET
   ============================================= */

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

/* ---- CSS VARIABLES ---- */
:root {
  --green-dark:   #1a3d2b;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --mustard:      #c9952a;
  --mustard-lt:   #e8b84b;
  --red:          #8b1a1a;
  --red-lt:       #c0392b;
  --brown:        #5c3317;
  --brown-lt:     #8b5e3c;
  --beige:        #f5efe6;
  --beige-dark:   #e8d9c5;
  --cream:        #fdf6ee;
  --text-dark:    #1e1e1e;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --radius:       16px;
  --radius-sm:    8px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }
.script { font-family: 'Caveat', cursive; }

.section-tag {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--mustard);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
}

section { padding: 90px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- LOADER ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  text-align: center;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader-inner img { width: 120px; border-radius: 50%; margin: 0 auto 1rem; }
.loader-inner p { color: var(--beige); font-family: 'Caveat', cursive; font-size: 1.4rem; }
@keyframes loaderPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.07);opacity:0.85} }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--mustard); }
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); }
.nav-logo-text span { font-size: 0.72rem; color: var(--mustard-lt); font-weight: 300; letter-spacing: 0.08em; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--mustard);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--mustard-lt); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  background: var(--mustard) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--mustard-lt) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #2d4a35 50%, #1a3020 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 0;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,149,42,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139,26,26,0.12) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,149,42,0.2);
  border: 1px solid rgba(201,149,42,0.4);
  padding: 6px 16px; border-radius: 50px;
  color: var(--mustard-lt);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}
.hero-tag span { width: 6px; height: 6px; background: var(--mustard-lt); border-radius: 50%; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s 0.15s ease both;
}
.hero-title .script {
  font-family: 'Caveat', cursive;
  color: var(--mustard-lt);
  font-size: 1.2em;
  display: block;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInDown 0.8s 0.45s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--mustard), var(--mustard-lt));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(201,149,42,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,149,42,0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }

.hero-badges {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 2.5rem;
  animation: fadeInDown 0.8s 0.6s ease both;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px; border-radius: 50px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
}
.badge-icon { font-size: 1rem; }

.hero-visual {
  position: relative; z-index: 2;
  animation: heroFloat 0.9s 0.2s ease both;
}
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  animation: floatBob 3s ease-in-out infinite;
}
.hero-float-badge.top-right { top: -16px; right: -16px; }
.hero-float-badge.bottom-left { bottom: 20px; left: -20px; animation-delay: 1.5s; }
.hero-float-badge .icon { font-size: 1.6rem; }
.hero-float-badge strong { display: block; font-size: 0.9rem; color: var(--green-dark); font-family: 'Playfair Display', serif; }
.hero-float-badge span { font-size: 0.72rem; color: var(--text-light); }

@keyframes floatBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes heroFloat { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

/* ---- DIVIDER ---- */
.wave-divider { overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ---- ABOUT ---- */
#about { background: var(--beige); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%; border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green-dark);
  color: var(--white); border-radius: 20px;
  padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--mustard); line-height: 1; }
.about-img-badge span { font-size: 0.78rem; letter-spacing: 0.08em; opacity: 0.85; }

.about-content { }
.about-quote {
  background: var(--cream);
  border-left: 4px solid var(--mustard);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-family: 'Caveat', cursive; font-size: 1.2rem;
  color: var(--brown);
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 1.5rem; }
.about-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
}
.about-feat .dot { width: 8px; height: 8px; background: var(--mustard); border-radius: 50%; flex-shrink: 0; }

/* ---- WHY CHOOSE US ---- */
#why { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mustard), var(--green-mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--beige), var(--beige-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); }
.why-card h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-light); }

/* ---- PRODUCTS ---- */
#products { background: var(--beige); }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-img {
  height: 200px; overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--beige), var(--beige-dark));
  display: flex; align-items: center; justify-content: center;
}
.product-img .emoji { font-size: 5rem; transition: transform var(--transition); }
.product-card:hover .emoji { transform: scale(1.15) rotate(-5deg); }

.product-badge-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--green-dark); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
}

.product-body { padding: 22px 20px; }
.product-body h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.4rem; }
.product-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--beige);
  border-top: 1px solid var(--beige-dark);
}
.product-footer span { font-size: 0.8rem; color: var(--text-mid); }
.order-btn {
  background: var(--green-dark);
  color: var(--white);
  padding: 7px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: background var(--transition), transform var(--transition);
}
.order-btn:hover { background: var(--green-mid); transform: scale(1.04); }

/* ---- SPECIALTY ---- */
#specialty {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e3a2f 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
#specialty::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
#specialty .section-title { color: var(--white); }
#specialty .section-tag { color: var(--mustard-lt); }
#specialty .section-sub { color: rgba(255,255,255,0.7); }

.spec-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 3rem;
}
.spec-list { display: flex; flex-direction: column; gap: 20px; }
.spec-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 22px; border-radius: var(--radius);
  transition: background var(--transition);
}
.spec-item:hover { background: rgba(255,255,255,0.1); }
.spec-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,149,42,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.spec-item h4 { font-size: 1rem; color: var(--mustard-lt); margin-bottom: 0.25rem; }
.spec-item p { font-size: 0.84rem; color: rgba(255,255,255,0.65); }

.spec-visual { position: relative; }
.spec-visual img { border-radius: 24px; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.spec-stat-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 16px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 16px; text-align: center;
}
.stat-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--mustard-lt); }
.stat-card span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ---- GALLERY ---- */
#gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px; margin-top: 2.5rem;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden; position: relative; cursor: pointer;
  background: var(--beige-dark);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item .gal-emoji {
  font-size: 4rem;
  transition: transform var(--transition);
}
.gallery-item:hover .gal-emoji { transform: scale(1.3); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,61,43,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }

/* ---- REVIEWS ---- */
#reviews { background: var(--beige); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--mustard); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 1.2rem;
  font-style: italic;
}
.review-text::before { content: '"'; font-size: 2rem; color: var(--mustard); line-height: 0; vertical-align: -0.5rem; margin-right: 4px; font-family: 'Playfair Display', serif; }
.review-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--beige-dark); padding-top: 14px;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.9rem; color: var(--green-dark); }
.review-author-info span { font-size: 0.78rem; color: var(--text-light); }

/* ---- FAQ ---- */
#faq { background: var(--cream); }
.faq-wrap { max-width: 780px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--beige-dark);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem; color: var(--green-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--mustard); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--beige); border: 1px solid var(--beige-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--mustard); color: var(--white); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.9rem; color: var(--text-mid);
}
.faq-answer-inner { padding: 0 0 18px; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 200px; }

/* ---- CONTACT ---- */
#contact { background: var(--beige); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start; margin-top: 3rem;
}
.contact-info h3 {
  font-size: 1.5rem; color: var(--green-dark); margin-bottom: 1.5rem;
}
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon-box {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-icon-box.green { background: rgba(45,106,79,0.12); }
.contact-icon-box.mustard { background: rgba(201,149,42,0.12); }
.contact-icon-box.red { background: rgba(139,26,26,0.1); }

.contact-item strong { display: block; font-size: 0.88rem; color: var(--green-dark); margin-bottom: 2px; }
.contact-item span { font-size: 0.9rem; color: var(--text-mid); }

.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.btn-whatsapp {
  background: #25d366; color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1eb855; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.btn-call {
  background: var(--green-dark); color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-call:hover { background: var(--green-mid); transform: translateY(-2px); }

.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-top: 20px;
}
.map-wrap iframe { display: block; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 1.4rem; color: var(--green-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 14px;
  border: none; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(26,61,43,0.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,61,43,0.45); }
.form-success {
  display: none;
  background: rgba(82,183,136,0.1);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px; margin-top: 14px;
  color: var(--green-dark); font-size: 0.9rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer-brand img { width: 80px; border-radius: 50%; margin-bottom: 1rem; border: 2px solid var(--mustard); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin: 0.8rem 0 1.2rem; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background var(--transition), transform var(--transition);
}
.social-btn:hover { background: var(--mustard); transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--white);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.84rem;
  color: rgba(255,255,255,0.6); margin-bottom: 8px;
  transition: color var(--transition), transform var(--transition);
}
.footer-col a:hover { color: var(--mustard-lt); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--mustard-lt); }

/* ---- FLOATING BUTTONS ---- */
.float-wa, .float-call {
  position: fixed; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wa {
  background: #25d366; right: 24px; bottom: 24px;
  animation: floatPop 0.5s 1.5s ease both, floatPulse 2.5s 2s ease-in-out infinite;
}
.float-call {
  background: var(--green-dark); right: 24px; bottom: 90px;
  animation: floatPop 0.5s 1.7s ease both;
}
.float-wa:hover, .float-call:hover { transform: scale(1.15); box-shadow: var(--shadow-lg); }

@keyframes floatPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
@keyframes floatPulse {
  0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.4)}
  50%{box-shadow:0 0 0 12px rgba(37,211,102,0)}
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---- MOBILE NAV ---- */
@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; inset: 0; top: 72px;
    background: rgba(26,61,43,0.98); flex-direction: column;
    align-items: center; justify-content: center; gap: 32px;
    z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-btns { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-btns { flex-direction: column; }
  .hero-float-badge.top-right { display: none; }
  .about-img-badge { position: static; margin-top: 16px; display: inline-block; }
}
