/* ================================================
   FARHAN DATE PALM TREE - Premium CSS
   Mobile First | Light Theme | SEO Ready
   ================================================ */

:root {
  --gold: #c8a96e;
  --gold-dark: #a8883e;
  --green-deep: #1a3a2a;
  --green-mid: #2d5a3d;
  --green-light: #4a8c5c;
  --cream: #faf7f2;
  --white: #ffffff;
  --gray-100: #f5f3ef;
  --gray-200: #e8e4dc;
  --gray-400: #a09880;
  --gray-600: #6b6355;
  --gray-900: #1c1a16;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(26,58,42,0.08);
  --shadow-md: 0 8px 32px rgba(26,58,42,0.12);
  --shadow-lg: 0 20px 60px rgba(26,58,42,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

@media(min-width: 768px) { .container { padding: 0 32px; } }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
@media(min-width: 768px) { .section { padding: 100px 0; } }
.bg-light { background: var(--cream); }
.bg-dark-green { background: var(--green-deep); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,169,110,0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--gold-dark); }
.section-sub { color: var(--gray-600); font-size: 17px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
  padding: 13px 32px;
}
.btn-outline-dark:hover { background: var(--green-deep); color: white; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.header.scrolled .logo-main { color: var(--green-deep); }
.logo-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}
.header.scrolled .logo-sub { color: var(--gray-400); }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media(min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.header.scrolled .nav-link { color: var(--gray-600); }
.header.scrolled .nav-link:hover { color: var(--green-deep); background: var(--gray-100); }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
@media(min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .menu-btn span { background: var(--green-deep); }

/* Mobile Nav */
@media(max-width: 1023px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open .nav-link { color: var(--gray-900); }
  .nav-links.open .nav-link:hover { background: var(--gray-100); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(15,30,20,0.78), rgba(15,30,20,0.72));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,169,110,0.2);
  border: 1px solid rgba(200,169,110,0.4);
  color: #e8c97a;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-accent { color: var(--gold); display: block; }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; justify-content: center; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Animate in */
.animate-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  width: 4px; height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.8s infinite;
}
@keyframes scroll { 0%{opacity:1;top:6px} 100%{opacity:0;top:22px} }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green-deep);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media(min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--green-deep);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-number { display: block; font-family: var(--font-display); font-size: 40px; color: var(--gold); line-height: 1; }
.badge-text { font-size: 12px; color: rgba(255,255,255,0.7); }
.about-img-secondary {
  position: absolute;
  top: 32px; right: -24px;
  width: 180px; height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
@media(max-width: 768px) { .about-img-secondary { display: none; } .about-img-badge { left: 10px; } }

.about-content { padding: 20px 0; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; font-size: 16px; }
.about-features { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media(min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.product-card.visible { opacity: 1; transform: none; transition: opacity 0.5s, transform 0.5s; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.product-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.product-body { padding: 20px; }
.product-height { font-size: 12px; color: var(--gold-dark); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-family: var(--font-display); font-size: 20px; color: var(--green-deep); margin-bottom: 10px; }
.product-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.product-price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--green-deep); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-wa:hover { background: #1aad52; transform: translateY(-1px); }

.products-cta { text-align: center; margin-top: 48px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media(min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
  background: white;
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible { opacity: 1; transform: none; transition: opacity 0.5s, transform 0.5s; }
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.service-icon { width: 52px; height: 52px; background: rgba(200,169,110,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold-dark); }
.service-icon svg { width: 26px; height: 26px; }
.service-title { font-family: var(--font-display); font-size: 20px; color: var(--green-deep); margin-bottom: 12px; }
.service-desc { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 14px; font-weight: 500; color: var(--gold-dark); }
.service-link:hover { text-decoration: underline; }

/* ===== NUMBERS ===== */
.numbers { padding: 60px 0; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: center;
}
@media(min-width: 768px) { .numbers-grid { grid-template-columns: repeat(4, 1fr); } }
.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.number-item:nth-child(2n) { border-right: none; }
@media(min-width: 768px) {
  .number-item { border-bottom: none; padding: 40px 24px; }
  .number-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.1); }
  .number-item:last-child { border-right: none; }
}
.number-val {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.number-suffix {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
.number-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media(max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: scale(0.97);
}
.gallery-item.visible { opacity: 1; transform: scale(1); }
.gallery-img-lock {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

/* ===== GALLERY PAGE UNIFORM GRID ===== */
.gallery-uniform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media(max-width: 1024px) { .gallery-uniform-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 640px)  { .gallery-uniform-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-locked-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: translateY(16px);
}
.gallery-locked-item.visible { opacity: 1; transform: none; transition: opacity 0.5s, transform 0.5s; }
.gallery-locked-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  transition: transform 0.5s;
}
.gallery-locked-item:hover .gallery-locked-img { transform: scale(1.04); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media(min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  opacity: 0;
  transform: translateY(20px);
}
.review-card.visible { opacity: 1; transform: none; transition: opacity 0.5s, transform 0.5s; }
.stars { color: var(--gold); font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 500; font-size: 15px; color: var(--green-deep); }
.reviewer-role { font-size: 13px; color: var(--gray-400); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}
@media(min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-content h2 { margin-bottom: 16px; }
.contact-content p { color: var(--gray-600); margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.contact-method:hover { background: var(--gray-200); }
.contact-icon { width: 48px; height: 48px; background: white; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-deep); box-shadow: var(--shadow-sm); }
.contact-method strong { color: var(--green-deep); display: block; margin-bottom: 2px; }
.contact-method span { font-size: 14px; color: var(--gray-600); }

.contact-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-deep);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-900);
  background: white;
  transition: 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,90,61,0.1); }
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media(min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-logo .logo-main { color: white; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,0.1); color: white; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; }
.footer-areas { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-areas strong { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-wa { left: 20px; }
.float-call { right: 20px; position: fixed; bottom: 28px; }
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.float-wa { background: #25D366; }
.float-call { background: var(--green-deep); }
.float-call2 { background: var(--green-mid); position: fixed; bottom: 88px; right: 20px; }
@media(max-width: 480px) { .float-label { display: none; } .float-btn { padding: 14px; border-radius: 50%; } .float-call2 { bottom: 96px; } }

/* ===== INNER PAGES ===== */
.page-hero {
  background: var(--green-deep);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  color: white;
  margin-bottom: 16px;
}
.page-hero .accent { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  justify-content: center;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== MOBILE RESPONSIVENESS ===== */
@media(max-width: 767px) {
  /* Hero */
  .hero-content { padding-top: 100px; padding-bottom: 60px; }
  .hero-title { font-size: clamp(30px, 8vw, 48px); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }

  /* Trust bar */
  .trust-bar-inner { gap: 10px 20px; }
  .trust-item { font-size: 13px; }

  /* About */
  .about-grid { gap: 40px; }
  .about-img-main img { height: 280px; }
  .about-img-badge { left: 10px; bottom: -16px; padding: 14px 18px; }
  .badge-number { font-size: 28px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .product-footer { flex-direction: column; align-items: flex-start; }
  .btn-wa { width: 100%; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { gap: 40px; }
  .contact-form-wrap { padding: 24px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Page hero */
  .page-hero { padding: 110px 0 60px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .page-hero p { font-size: 15px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { height: 160px; }
  .gallery-uniform-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

@media(max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
  .stat { align-items: center; }
  .product-card:hover { transform: none; }
  .contact-form-wrap { padding: 20px 16px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item { padding: 24px 12px; }
}
