*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

img,
video,
iframe,
embed {
  max-width: 100%;
  height: auto;
}

:root {
  --green-dark: #1a4d2e;
  --green-mid: #2d6a4f;
  --gold: #c9952a;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-gray: #64748b;
  --footer-bg: #111827;
  --navbar-strip: #f8fafc;
  --purple: #5b21b6;
  --blue: #1e4d8c;
  --max-w: 1440px;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--green-dark);
  border-radius: 10px;
}

::selection {
  background: var(--gold);
  color: white;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.93)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 149, 42, .4)
  }

  50% {
    box-shadow: 0 0 0 14px rgba(201, 149, 42, 0)
  }
}

/* Reveal — elements start visible, animate when scrolling into view */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service tabs — visible by default, subtle entry when scrolled in */
.svc-tab {
  opacity: 1;
  transform: none;
  transition: transform .3s, box-shadow .3s;
}

.svc-tab:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

/* ===== TOP STRIP ===== */
.topbar-strip {
  background: var(--green-dark);
  color: rgba(255, 255, 255, .85);
  font-size: 12.5px;
  padding: 9px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  letter-spacing: .3px;
}

/* ===== NAVBAR ===== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 60px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo img.full-nav-logo {
  width: auto;
  height: 46px;
  border-radius: 0;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-logo-text .brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--logo-color);
  letter-spacing: .5px;
  line-height: 1.1;
  display: block;
}

.nav-logo-text .brand-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color .25s;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-contact {
  background: var(--green-dark);
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
}

.btn-contact:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* Hamburger */
#mob-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

#mob-menu-btn span {
  width: 24px;
  height: 2.5px;
  background: #333;
  display: block;
  border-radius: 2px;
  transition: .3s;
}

/* Mobile panel */
#mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  border-top: 1px solid #f0f0f0;
}

#mobile-menu.open {
  display: block;
}

#mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
}

#mobile-menu a.mob-sub {
  padding-left: 16px;
  font-weight: 500;
  color: #555;
}

#mobile-menu a.mob-cta {
  margin-top: 14px;
  background: var(--green-dark);
  color: white;
  padding: 13px;
  border-radius: var(--radius);
  text-align: center;
  border-bottom: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: white;
  list-style: none;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
  border-radius: 12px;
  min-width: 210px;
  z-index: 1000;
  border: 1px solid #f0f0f0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13.5px;
  color: #333 !important;
  font-weight: 500;
  transition: all .2s;
}

.dropdown-menu li a:hover {
  background: #f0fdf4;
  color: var(--green-dark) !important;
}

.dropdown-menu li a::after {
  display: none !important;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 520px;
  align-items: center;
  gap: 0;
  background: #fff;
  overflow: hidden;
}

.hero-left {
  padding: 70px 50px 70px 60px;
  animation: fadeUp .8s ease both;
}

.hero-tagline {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.hero-title-green {
  font-size: 58px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.0;
  font-family: 'Playfair Display', serif;
  letter-spacing: -2px;
  white-space: nowrap;
}

.hero-title-gold {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.0;
  font-family: 'Playfair Display', serif;
  letter-spacing: -2px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 15px;
  color: #555;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: var(--green-dark);
  color: white;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
}

.btn-primary-hero:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.btn-arrow {
  background: rgba(255, 255, 255, .25);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.btn-outline-hero {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--green-dark);
  padding: 11px 22px;
  border-radius: 6px;
  transition: all .3s;
}

.btn-outline-hero:hover {
  background: var(--green-dark);
  color: white;
}

/* ===== HERO COLLAGE ===== */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 520px;
}

.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  border-radius: 12px;
  overflow: hidden;
}

.collage-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.collage-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.collage-img:hover img {
  transform: scale(1.06);
}

/* Collage Center Logo */
.collage-logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.collage-logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.collage-logo-inner img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

/* ===== HOME TRUST SECTION ===== */
.home-trust-section {
  padding: 0 40px;
  background: #f8fafc;
  margin-top: -70px;
  position: relative;
  z-index: 40;
}

.home-trust-container {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.home-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-trust-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--green-dark);
  background: #f0fdf4;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.3s ease;
}

.home-trust-card:hover .home-trust-icon-box {
  transform: scale(1.08);
}

.home-trust-svg {
  width: 28px;
  height: 28px;
}

.home-trust-custom-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.home-trust-emoji {
  font-size: 26px;
}

.home-trust-title {
  font-size: 15px;
  font-weight: 700;
  color: #0c2b1a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.home-trust-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
}

/* Hero CTA Buttons */
.btn-hero-call {
  background: var(--green-dark);
  color: white !important;
  border: 1px solid var(--green-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all .25s;
}

.btn-hero-call:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
}

.btn-hero-wa {
  background: white;
  color: #166534 !important;
  border: 1.5px solid #166534;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all .25s;
}

.btn-hero-wa:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}

.btn-hero-icon {
  width: 18px;
  height: 18px;
}

/* Section refinements */
.services-section {
  padding: 100px 60px;
  background: #fdfdfd;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 80px 60px;
  background: #f7f8f5;
}

.section-header-group {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--green-dark);
  font-family: 'Playfair Display', serif;
  margin-bottom: 18px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.divider-line {
  height: 1px;
  width: 60px;
  background: #ccc;
}

.divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.services-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.svc-tab {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.svc-tab:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.svc-tab-header {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.svc-hdr-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.svc-hdr-title {
  font-size: 15px;
  font-weight: 700;
}

.svc-hdr-sub {
  font-size: 11.5px;
  opacity: .8;
  margin-top: 2px;
}

.green-hdr {
  background: linear-gradient(135deg, #1a4d2e, #2d6a4f);
}

.blue-hdr {
  background: linear-gradient(135deg, #1e4d8c, #2563eb);
}

.purple-hdr {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

.red-hdr {
  background: linear-gradient(135deg, #991b1b, #dc2626);
}

.orange-hdr {
  background: linear-gradient(135deg, #9a3412, #ea580c);
}

.yellow-hdr {
  background: linear-gradient(135deg, #a16207, #eab308);
}

.lime-hdr {
  background: linear-gradient(135deg, #3f6212, #84cc16);
}

.teal-hdr {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.cyan-hdr {
  background: linear-gradient(135deg, #0e7490, #0891b2);
}

.indigo-hdr {
  background: linear-gradient(135deg, #3730a3, #6366f1);
}

.purple-hdr {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

.pink-hdr {
  background: linear-gradient(135deg, #be185d, #db2777);
}

.rose-hdr {
  background: linear-gradient(135deg, #9f1239, #f43f5e);
}

.gray-hdr {
  background: linear-gradient(135deg, #1f2937, #6b7280);
}

.brown-hdr {
  background: linear-gradient(135deg, #451a03, #92400e);
}

.dark-hdr {
  background: linear-gradient(135deg, #111827, #374151);
}

.svc-tab-body {
  padding: 20px 22px;
  flex: 1;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
  color: #444;
}

.svc-item:last-child {
  border-bottom: none;
}

.svc-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.green-check {
  background: #1a4d2e;
}

.blue-check {
  background: #2563eb;
}

.purple-check {
  background: #7c3aed;
}

.red-check {
  background: #dc2626;
}

.orange-check {
  background: #ea580c;
}

.yellow-check {
  background: #eab308;
}

.lime-check {
  background: #84cc16;
}

.teal-check {
  background: #14b8a6;
}

.cyan-check {
  background: #0891b2;
}

.indigo-check {
  background: #6366f1;
}

.pink-check {
  background: #db2777;
}

.rose-check {
  background: #f43f5e;
}

.gray-check {
  background: #6b7280;
}

.brown-check {
  background: #92400e;
}

.dark-check {
  background: #374151;
}

.svc-tab-footer {
  padding: 16px 22px;
  border-top: 1px solid #f5f5f5;
}

.btn-more-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--green-dark);
  padding: 9px 20px;
  border-radius: 6px;
  transition: all .25s;
}

.btn-more-details:hover {
  background: var(--green-dark);
  color: white;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: linear-gradient(160deg, #0a2016 0%, #0d2e1a 40%, #1a4d2e 100%);
  padding: 80px 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(201, 149, 42, .06) 0%, transparent 70%);
}

.trust-cards-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: 50px auto 0;
  position: relative;
}

.trust-card {
  padding: 30px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.trust-card:last-child {
  border-right: none;
}

.trust-card:hover .trust-icon-ring {
  transform: scale(1.05);
}

.trust-icon-ring {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(201, 149, 42, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform .3s;
  animation: float 4s ease-in-out infinite;
}

.trust-card:nth-child(2) .trust-icon-ring {
  animation-delay: .6s;
}

.trust-card:nth-child(3) .trust-icon-ring {
  animation-delay: 1.2s;
}

.trust-card:nth-child(4) .trust-icon-ring {
  animation-delay: 1.8s;
}

.trust-card:nth-child(5) .trust-icon-ring {
  animation-delay: 2.4s;
}

.trust-icon {
  font-size: 28px;
}

.trust-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255, 255, 255, .95);
}

/* ===== FOOTER ===== */
footer {
  background: #fff;
  padding: 60px 60px 0;
  border-top: 2px solid #f1f5f9;
  position: relative;
  z-index: 50;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.footer-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-brand-title {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #444;
}

.footer-icon {
  width: 30px;
  height: 30px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.btn-contact-now {
  background: #0c2b1a;
  color: white;
  padding: 11px 22px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}

.btn-contact-now:hover {
  background: var(--green-mid);
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
  transition: all .3s;
}

.social-fb {
  background: #1877f2;
  color: white;
}

.social-yt {
  background: #ff0000;
  color: white;
}

.social-wa {
  background: #25d366;
  color: white;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  opacity: .9;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 8px;
  margin-bottom: 18px;
  box-shadow: 0 8px 30px rgba(201, 149, 42, .12);
}

.footer-logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 149, 42, .6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #fdfcf8;
}

.footer-tagline {
  color: #0c2b1a;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.footer-map iframe {
  border-radius: 12px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0px;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.3s ease;
}

.floating-wa-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.floating-wa-icon {
  width: 32px;
  height: 32px;
}

/* ===== MOBILE BOTTOM NAVIGATION BAR ===== */
.mobile-bottom-nav {
  display: none; /* Hidden on desktop */
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #ffffff;
  border-radius: 30px;
  padding: 6px 8px 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  border: 1.5px solid rgba(15, 23, 42, 0.05);
  z-index: 9999;
  justify-content: space-between;
  align-items: center;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #64748b;
  transition: all 0.2s;
}

.bottom-nav-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #64748b;
  transition: all 0.25s;
}

.bottom-nav-item.active .bottom-nav-icon-wrap {
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  background: #f0fdf4;
}

.bottom-nav-item.active .bottom-nav-label {
  color: var(--green-dark);
  font-weight: 700;
}

.bot-nav-svg {
  width: 18px;
  height: 18px;
}

.bottom-nav-label {
  font-size: 9px;
  margin-top: 2px;
  font-weight: 500;
  display: block;
}

.bottom-nav-item.center-elevated {
  position: relative;
  top: -14px;
  overflow: visible;
  height: 48px;
}

.bot-nav-wa-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #15803d; /* deep WhatsApp green */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(21, 128, 61, 0.35);
  border: 4px solid #ffffff;
  transition: transform 0.2s;
}

.bottom-nav-item.center-elevated:hover .bot-nav-wa-circle {
  transform: scale(1.08);
}

.bot-nav-wa-icon {
  width: 22px;
  height: 22px;
}

/* ===== CONTACT ===== */
.contact-hero {
  background: linear-gradient(135deg, #0d2e1a 0%, #1a4d2e 100%);
  padding: 80px 60px;
  color: white;
  text-align: center;
}

.contact-form-section {
  padding: 80px 60px;
  background: #fafafa;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all .25s;
  background: #fafafa;
  color: #333;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-dark);
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 77, 46, .08);
}

.btn-submit {
  width: 100%;
  background: var(--green-dark);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: inherit;
}

.btn-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.alert-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 14px;
}

.alert-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 14px;
}

/* Service page hero */
.service-detail-section {
  padding: 80px 60px;
}

/* ===== PAGE HELPERS (For About, Contact, Services) ===== */
.page-hero {
  padding: 80px 60px;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 400px;
}

.page-hero-left {
  flex: 1.2;
}

.page-hero-right {
  flex: 1;
  position: relative;
}

.page-hero-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.page-section {
  padding: 80px 60px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: white;
}

.vision-card {
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  transition: transform .3s;
  border: 1px solid #f0f0f0;
}

.vision-card:hover {
  transform: translateY(-8px);
}

.vision-icon {
  font-size: 44px;
  margin-bottom: 20px;
}

/* Contact specific */
.contact-hero {
  background: linear-gradient(135deg, #0d2e1a 0%, #1a4d2e 100%);
  padding: 80px 60px;
  color: white;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Service detail specific */
.service-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-tab-large {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  max-width: 1000px;
  margin: 0 auto;
}

.service-tab-large-header {
  padding: 40px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-tab-large-body {
  padding: 40px;
}

/* ===== BANGLA ===== */
.bangla {
  font-family: 'Poppins', 'Arial Unicode MS', sans-serif;
}

/* ===== WHY CHOOSE US CUSTOM STORY GRID ===== */
.why-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

/* ===== RESPONSIVE — 5-breakpoint system ===== */

/* ── 1280px: Wide screens ── */
@media (max-width: 1280px) {
  .topbar-strip {
    padding: 9px 40px;
  }

  nav {
    padding: 13px 40px;
  }

  .hero-left {
    padding: 70px 40px 70px 40px;
  }

  .hero-title-green {
    font-size: 56px;
  }

  .hero-title-gold {
    font-size: 50px;
  }

  .services-section,
  .why-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-hero,
  .page-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ── 1100px: Laptop ── */
@media (max-width: 1100px) {
  .topbar-strip {
    padding: 8px 24px;
  }

  nav {
    padding: 12px 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 13.5px;
  }

  .hero-left {
    padding: 60px 30px 60px 24px;
  }

  .hero-title-green {
    font-size: 48px;
  }

  .hero-title-gold {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 13px;
    max-width: 420px;
  }

  .services-section {
    padding: 70px 24px;
  }

  .services-tabs {
    gap: 16px;
  }

  .why-section {
    padding: 70px 24px;
  }

  footer {
    padding: 55px 24px 0;
  }

  .footer-grid {
    gap: 32px;
  }

  .service-hero {
    padding: 70px 24px;
    gap: 40px;
  }

  .service-detail-section {
    padding: 70px 24px;
  }

  .page-hero,
  .page-section {
    padding: 60px 24px;
  }

  .grid-2,
  .grid-3 {
    gap: 24px;
  }
}

/* ── 900px: Tablet ── */
@media (max-width: 900px) {

  /* Top */
  .topbar-strip {
    padding: 8px 16px;
    font-size: 11px;
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  /* Nav */
  nav {
    padding: 12px 16px;
  }

  .nav-links {
    display: none !important;
  }

  #nav-cta {
    display: inline-flex !important;
    margin-left: auto;
    margin-right: 12px;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 6px;
  }

  #mob-menu-btn {
    display: flex !important;
  }

  #mobile-menu {
    top: 100%;
  }

  /* Hero */
  .hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: auto;
    overflow: visible;
    align-items: center;
    gap: 0;
  }

  .page-hero {
    display: flex;
    flex-direction: column;
  }

  .hero-left {
    padding: 20px 0 20px 16px;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-hero-left {
    padding: 40px 16px 28px;
    order: 1;
    flex: none;
    width: 100%;
  }

  .hero-right {
    order: 2;
    height: 100%;
    min-height: 350px;
    width: 100%;
    margin: 0;
    display: flex;
  }

  .page-hero-right {
    order: 2;
    min-height: 280px;
    height: 280px;
    flex: none;
    width: 100%;
  }

  .hero-tagline {
    margin-top: 0;
    padding: 0;
    text-align: left;
    font-size: 10px;
    margin-bottom: 6px;
  }

  .hero-title-green {
    font-size: 28px;
    letter-spacing: -.5px;
    text-align: left;
    padding: 0;
  }

  .page-hero h1 {
    font-size: 38px;
    text-align: center;
  }

  .hero-title-gold {
    font-size: 24px;
    letter-spacing: -.5px;
    text-align: left;
    padding: 0;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 11px;
    text-align: left;
    padding: 0;
    margin-bottom: 12px;
  }

  .section-header-group {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .section-label {
    font-size: 13.5px;
    text-align: center;
  }

  .hero-desc {
    font-size: 10px;
    text-align: left;
    padding: 0;
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .page-hero p {
    font-size: 12.5px;
    margin-bottom: 22px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    flex-direction: row;
    gap: 8px;
    padding: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
  }

  .btn-primary-hero {
    padding: 8px 12px;
    font-size: 11px;
    width: auto;
    justify-content: flex-start;
  }

  .btn-outline-hero {
    width: auto;
    justify-content: center;
    padding: 8px 12px;
    font-size: 11px;
  }

  /* Collage on tablet — remove diagonal clip */
  .hero-collage {
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    position: relative;
    gap: 2px;
    display: grid;
  }

  .collage-logo-wrap {
    display: none;
  }

  .hero-badges {
    position: relative;
    flex-direction: column;
    width: 100%;
  }

  .hero-badge {
    flex: 1 1 100%;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 20px;
  }

  .hero-badge:last-child {
    border-bottom: none;
  }

  /* Grid & Sections */
  .services-section,
  .page-section,
  .feature-cards-section {
    padding: 50px 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .services-tabs,
  .grid-2,
  .grid-3,
  .service-feature-grid,
  .why-story-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .home-trust-section {
    padding: 0 10px;
    margin-top: -30px;
    background: #f8fafc;
  }

  .home-trust-container {
    padding: 16px 8px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  }

  .home-trust-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
  }

  .home-trust-icon-box {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 1px solid var(--green-dark) !important;
    background: #f0fdf4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 6px !important;
  }

  .home-trust-svg {
    width: 18px !important;
    height: 18px !important;
  }

  .home-trust-custom-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .home-trust-emoji {
    font-size: 16px !important;
  }

  .home-trust-title {
    font-size: 8.5px !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
    font-weight: 800 !important;
  }

  .home-trust-desc {
    font-size: 6.5px !important;
    line-height: 1.3 !important;
    color: #64748b !important;
  }

  /* Why */
  .why-section {
    padding: 55px 16px;
  }

  .trust-cards-wrap {
    grid-template-columns: 1fr 1fr !important;
    gap: 0;
  }

  .trust-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
    padding: 24px 12px;
  }

  .trust-card:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .1) !important;
  }

  .trust-card:nth-child(5) {
    border-right: none !important;
    border-bottom: none !important;
  }

  .trust-icon-ring {
    width: 60px;
    height: 60px;
  }

  .trust-icon {
    font-size: 24px;
  }

  .trust-text {
    font-size: 12.5px;
  }

  /* Footer */
  footer {
    padding: 45px 16px 0;
    padding-bottom: 75px !important; /* spacing for mobile bottom nav */
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .footer-center {
    padding: 10px 0;
  }

  .footer-logo-circle {
    width: 130px;
    height: 130px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 18px 0;
  }

  .footer-map iframe {
    height: 160px;
  }

  /* Floating WhatsApp Mobile Custom Placement */
  .floating-wa-btn {
    bottom: 85px; /* sit just above bottom navigation bar */
    width: 50px;
    height: 50px;
  }

  .floating-wa-icon {
    width: 26px;
    height: 26px;
  }

  /* Bottom Navigation Mobile Display */
  .mobile-bottom-nav {
    display: flex !important;
  }

  body {
    padding-bottom: 75px !important;
  }

  /* Contact Hero */
  .contact-hero {
    padding: 60px 16px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  /* Service Tab Large */
  .service-tab-large-header {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }

  .service-tab-large-body {
    padding: 24px;
  }
}

/* ── 600px: Mobile phone ── */
@media (max-width: 600px) {

  /* Top */
  .topbar-strip {
    display: none;
  }

  /* Nav */
  nav {
    padding: 10px 14px;
  }

  #mobile-menu {
    top: 60px;
    padding: 14px 16px;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    align-items: center;
  }

  .hero-left {
    padding: 15px 0 45px 12px;
  }

  .page-hero-left {
    padding: 32px 14px 20px;
  }

  .hero-tagline {
    margin-top: 0;
    padding: 5px 10px;
    font-size: 9px;
    margin-bottom: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    display: inline-block;
    color: #64748b;
  }

  .hero-title-green {
    font-size: 24px;
    letter-spacing: -.5px;
    padding: 0;
  }

  .page-hero h1 {
    font-size: 32px;
    letter-spacing: -.5px;
    padding: 0 14px;
  }

  .hero-title-gold {
    font-size: 20px;
    letter-spacing: -.5px;
    padding: 0;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 9px;
    font-weight: 700;
    color: #333;
    padding: 0;
    margin-bottom: 10px;
  }

  .hero-desc {
    display: block;
    font-size: 8.5px;
    margin-bottom: 24px;
    line-height: 1.55;
    padding: 0;
  }

  .page-hero p {
    font-size: 12px;
    margin-bottom: 18px;
    line-height: 1.7;
    padding: 0 14px;
  }

  .hero-btns {
    padding: 0;
    margin-bottom: 30px;
    gap: 10px;
    display: flex;
    flex-direction: row;
  }

  .btn-primary-hero, .btn-outline-hero, .btn-hero-call, .btn-hero-wa {
    padding: 8px 10px;
    font-size: 8.5px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    gap: 4px !important;
  }

  .btn-hero-icon {
    width: 11px !important;
    height: 11px !important;
  }

  .btn-arrow {
    width: 12px;
    height: 12px;
    font-size: 7px;
  }

  .hero-right,
  .page-hero-right {
    height: auto;
    min-height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-collage,
  .page-hero-img {
    width: 100%;
    height: auto;
    position: relative;
  }

  .hero-collage {
    aspect-ratio: 4 / 5;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    display: grid;
  }

  .collage-logo-wrap {
    display: flex;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
  }

  .hero-badge {
    padding: 12px 16px;
  }

  .badge-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .badge-title {
    font-size: 11.5px;
  }

  .badge-sub {
    font-size: 10px;
  }

  /* Sections */
  .services-section,
  .page-section {
    padding: 40px 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-label {
    font-size: 10px;
  }

  .svc-tab-header {
    padding: 16px 16px;
  }

  .svc-hdr-title {
    font-size: 14px;
  }

  .svc-hdr-sub {
    font-size: 11px;
  }

  .svc-tab-body {
    padding: 16px 16px;
  }

  .svc-item {
    font-size: 13px;
    padding: 7px 0;
  }

  .svc-check {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .svc-tab-footer {
    padding: 12px 16px;
  }

  .btn-more-details {
    font-size: 13px;
    padding: 8px 16px;
  }

  .home-trust-card {
    padding: 5px;
  }

  .nav-logo-text .brand-name {
    font-size: 14px;
  }

  .nav-logo-text .brand-sub {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .nav-logo img {
    width: 38px;
    height: 38px;
  }

  /* Why */
  .why-section {
    padding: 45px 14px;
  }

  .trust-cards-wrap {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 4px;
  }

  .trust-card {
    padding: 10px 4px;
    border: none !important;
  }

  .trust-icon-ring {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
  }

  .trust-icon {
    font-size: 14px;
  }

  .trust-text {
    font-size: 7px;
    text-align: center;
  }

  /* Redundant footer overrides removed to allow card footer styling */

  .vision-card {
    padding: 30px 20px;
  }
}

/* ── 400px: Very small phones ── */
@media (max-width: 400px) {

  .hero-title-green,
  .page-hero h1 {
    font-size: 28px;
  }

  .hero-title-gold {
    font-size: 24px;
  }

  .hero-desc,
  .page-hero p {
    font-size: 11.5px;
  }

  .hero-collage,
  .page-hero-img {
    height: 250px;
  }

  .section-title {
    font-size: 22px;
  }

  .divider-line {
    width: 40px;
  }

  .trust-cards-wrap {
    grid-template-columns: 1fr !important;
  }

  .trust-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
  }

  .trust-card:last-child {
    border-bottom: none !important;
  }

  .hero-badges {
    flex-direction: column;
  }

  .hero-badge {
    flex: 1 1 100%;
    border-right: none !important;
  }

  .btn-primary-hero,
  .btn-outline-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
}
}
}