:root {
  --ink: #1f2420;
  --ink-soft: #333a33;
  --ivory: #f6f2e8;
  --ivory-dim: #ede6d6;
  --gold: #c89b4a;
  --gold-dim: #b98836;
  --forest: #2f4335;
  --clay: #b5563a;
  --white: #ffffff;

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-label: "Space Grotesk", sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 10px 30px -12px rgba(31, 36, 32, 0.25);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.site-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.site-btn--primary {
  background: var(--clay);
  color: var(--white);
}
.site-btn--primary:hover {
  background: #9c4830;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.site-btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.site-btn--ghost:hover {
  background: var(--ink);
  color: var(--ivory);
  transform: translateY(-2px);
}
.site-btn--whatsapp {
  background: var(--forest);
  color: var(--white);
}
.site-btn--whatsapp:hover {
  background: #243a2b;
  transform: translateY(-2px);
}
.site-btn--block {
  width: 100%;
}

/* ---------- Slat loader (page enter) ---------- */
.slat-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  pointer-events: none;
}
.slat-loader span {
  flex: 1;
  background: var(--ink);
  transform-origin: top;
  animation: slatUp 0.7s var(--ease) forwards;
}
.slat-loader span:nth-child(1) {
  animation-delay: 0.02s;
}
.slat-loader span:nth-child(2) {
  animation-delay: 0.08s;
}
.slat-loader span:nth-child(3) {
  animation-delay: 0.14s;
}
.slat-loader span:nth-child(4) {
  animation-delay: 0.2s;
}
.slat-loader span:nth-child(5) {
  animation-delay: 0.26s;
}
.slat-loader span:nth-child(6) {
  animation-delay: 0.32s;
}
@keyframes slatUp {
  to {
    transform: scaleY(0);
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246, 242, 232, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 36, 32, 0.08);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 6px 20px -12px rgba(31, 36, 32, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--gold);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.brand-text em {
  font-style: normal;
  color: var(--clay);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
/* ==========================
   Mobile Menu
========================== */

.nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 1002;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #224434;
  border-radius: 50px;
  transition: 0.35s;
}

@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .header-actions .site-btn {
    display: none;
  }

  .main-nav {
    position: fixed;

    top: 0;
    right: -100%;

    width: 280px;
    height: 100vh;

    background: #fff;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    padding: 90px 25px 30px;

    gap: 0;

    transition: 0.4s ease;

    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);

    z-index: 1001;
  }

  .main-nav a {
    width: 100%;

    padding: 16px 0;

    border-bottom: 1px solid #ececec;
  }

  .main-nav.active {
    right: 0;
  }
}
.main-nav a {
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--clay);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover,
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}
.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-actions .site-btn--whatsapp {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* hero */
/* ==========================
   HERO SECTION
========================== */

.hero {
  position: relative;
}
input:focus {
  outline: 2px solid rgba(13, 125, 78, 0.5);
}

/* Dark Overlay */

#heroSlider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content */

#heroSlider .carousel-caption {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: min(90%, 650px);
  text-align: left;
  z-index: 2;
}

/* Small Heading */

#heroSlider .carousel-caption span {
  display: inline-block;
  color: #d8b07a;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Main Heading */

#heroSlider .carousel-caption h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
}

/* Paragraph */

#heroSlider .carousel-caption p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 550px;
  line-height: 1.8;
}

/* Button */

#heroSlider .site-btn--primary {
  background: #c89b6d;
  border: none;
  padding: 15px 40px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.4s;
}

#heroSlider .site-btn--primary:hover {
  background: #fff;
  color: #000;
}

/* Navigation */

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  background-size: 50%;
}

/* Indicators */

.carousel-indicators {
  bottom: 35px;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  margin: 0 6px !important;
  background: #fff !important;
}

.carousel-indicators .active {
  background: #c89b6d !important;
}
#heroSlider .carousel-item {
  height: clamp(350px, 75vh, 700px);
}

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {
  #heroSlider .carousel-item {
    height: 80vh;
  }

  #heroSlider .carousel-caption {
    width: 90%;
    left: 5%;
  }

  #heroSlider .carousel-caption h1 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  #heroSlider .carousel-item {
    height: 70vh;
  }

  #heroSlider .carousel-caption h1 {
    font-size: 34px;
  }

  #heroSlider .carousel-caption p {
    font-size: 16px;
  }

  #heroSlider .site-btn--primary {
    padding: 12px 30px;
  }
}
.carousel-item.active .carousel-caption h1 {
  animation: fadeUp 0.8s ease;
}

.carousel-item.active .carousel-caption p {
  animation: fadeUp 1s ease;
}

.carousel-item.active .carousel-caption .site-btn {
  animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  #heroSlider .carousel-item {
    height: 70vh;
  }

  #heroSlider .carousel-caption {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
  }

  #heroSlider .carousel-caption h1 {
    font-size: 2.2rem;
  }

  #heroSlider .carousel-caption p {
    font-size: 1rem;
    margin: 0 auto 25px;
  }

  #heroSlider .site-btn {
    padding: 12px 26px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
/* ---------- Feature strip ---------- */
.feature-strip {
  background: #f8f7f2;
  border-bottom: 1px solid rgba(34, 68, 52, 0.12);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 35px 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.feature:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c89b6d, #a87d4f);
  color: #fff;
  font-size: 1.35rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
}

.feature:hover i {
  transform: rotate(10deg) scale(1.08);
}

.feature strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #224434;
  margin-bottom: 4px;
}

.feature span {
  font-size: 0.86rem;
  color: #6b6b6b;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 991px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature {
    padding: 15px;
  }
}

/* ---------- Section basics ---------- */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--ivory-dim);
}
.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 10px 0 16px;
}
.section-copy {
  color: var(--ink-soft);
  max-width: 640px;
  font-size: 1.02rem;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section > .wrap > .section-title.center,
.section > .wrap > .section-copy.center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px -8px rgba(31, 36, 32, 0.15);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ivory-dim);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-media img {
  transform: scale(1.06);
}
.service-body {
  padding: 22px 24px 26px;
}
.service-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--clay);
}
.service-link i {
  transition: transform 0.2s var(--ease);
}
.service-link:hover i {
  transform: translateX(4px);
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--forest);
  color: var(--ivory);
  padding: 64px 0;
  text-align: center;
  position: relative;
}
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  max-width: 760px;
  margin: 0 auto;
}
.quote-attr {
  display: block;
  margin-top: 16px;
  font-family: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

/* ---------- About / Why choose us ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.why-list {
  display: grid;
  gap: 26px;
  margin: 34px 0 36px;
}
.why-item {
  display: flex;
  gap: 16px;
}
.why-item i {
  font-size: 1.2rem;
  color: var(--clay);
  margin-top: 4px;
  width: 26px;
  flex-shrink: 0;
}
.why-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}
.why-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-self: stretch;
}
.stat-block {
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.stat-block span {
  font-size: 0.82rem;
  font-family: var(--font-label);
  color: rgba(246, 242, 232, 0.7);
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
  position: relative;
}
.process-step {
  position: relative;
  padding-top: 10px;
}
.step-no {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-dim);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: 48px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition:
    transform 0.4s var(--ease),
    filter 0.4s var(--ease);
  filter: grayscale(15%);
}
.gallery-grid img:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}
.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(6) {
  grid-row: span 2;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 4px 16px -8px rgba(31, 36, 32, 0.12);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.testimonial-card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  font-style: italic;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.testimonial-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-person strong {
  display: block;
  font-size: 0.92rem;
}
.testimonial-person span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--clay);
  color: var(--white);
  padding: 76px 0;
}
.cta-slats {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.06) 0 10px,
    transparent 10px 26px
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}
.cta-inner p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-inner .hero-cta {
  justify-content: center;
  margin-top: 30px;
}
.cta-inner .site-btn--primary {
  background: var(--ink);
}
.cta-inner .site-btn--primary:hover {
  background: #000;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-details {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}
.contact-details li {
  display: flex;
  gap: 14px;
}
.contact-details i {
  color: var(--clay);
  font-size: 1.05rem;
  width: 24px;
  margin-top: 3px;
}
.contact-details strong {
  display: block;
  font-size: 0.92rem;
}
.contact-details span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.social-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-row span {
  font-family: var(--font-label);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-right: 4px;
}
.social-row a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 50%;
  font-size: 0.85rem;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.social-row a:hover {
  background: var(--clay);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  align-content: start;
}
.form-row {
  display: grid;
  gap: 6px;
}
.form-row label {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-row input,
.form-row select,
.form-row textarea {
  border: 1px solid rgba(31, 36, 32, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--ivory);
  color: var(--ink);
  resize: vertical;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(181, 86, 58, 0.15);
}
.form-note {
  font-size: 0.85rem;
  min-height: 1.2em;
  color: var(--forest);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(246, 242, 232, 0.8);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(246, 242, 232, 0.6);
}
.footer-brand .brand-text {
  color: var(--ivory);
}
.footer-brand .brand-mark {
  background: var(--gold);
  color: var(--ink);
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--gold);
}
.subscribe-form {
  display: flex;
  margin-top: 8px;
  border: 1px solid rgba(246, 242, 232, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
}
.subscribe-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 14px;
  color: var(--ivory);
  font-family: var(--font-body);
}
.subscribe-form input::placeholder {
  color: rgba(246, 242, 232, 0.45);
}
.subscribe-form button {
  background: var(--gold);
  border: none;
  padding: 0 18px;
  color: var(--ink);
}
.footer-bottom {
  border-top: 1px solid rgba(246, 242, 232, 0.12);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(246, 242, 232, 0.55);
  font-family: var(--font-label);
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px -8px rgba(47, 67, 53, 0.6);
  transition: transform 0.25s var(--ease);
}
.float-whatsapp:hover {
  transform: scale(1.08);
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  body.nav-open {
    overflow: hidden;
  }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 30px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
  }
  .header-actions .site-btn--whatsapp span {
    display: none;
  }
  .hero {
    padding: 4px 0 60px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* whatapp ka code  de do  */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: 0.3s;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
  font-size: 28px;
}

.whatsapp-float span {
  font-size: 15px;
  white-space: nowrap;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-4px);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }
}
.call-float {
  position: fixed;
  right: 25px;
  bottom: 100px; /* WhatsApp ke upar */
  background: #224434;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(34, 68, 52, 0.35);
  z-index: 9999;
  transition: 0.3s ease;
  animation: callPulse 2s infinite;
}

.call-float i {
  font-size: 22px;
}

.call-float span {
  font-size: 15px;
  white-space: nowrap;
}

.call-float:hover {
  background: #1b3528;
  color: #fff;
  transform: translateY(-4px);
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 68, 52, 0.45);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(34, 68, 52, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 68, 52, 0);
  }
}

@media (max-width: 768px) {
  .call-float {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    bottom: 90px;
  }

  .call-float span {
    display: none;
  }
}
/* ===============================
   Mobile Header
================================ */

@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .site-btn {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: -100%;

    width: 280px;
    height: calc(100vh - 76px);

    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px;

    gap: 0;

    transition: 0.35s ease;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

    z-index: 999;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav a {
    width: 100%;

    padding: 15px 0;

    border-bottom: 1px solid #ececec;
  }

  .header-inner {
    height: 70px;
  }
}

/* ---------- Final mobile navigation and responsive polish ---------- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 26, 21, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
  z-index: 190;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .whatsapp-float,
body.nav-open .call-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 991px) {
  .wrap {
    padding-inline: 20px;
  }

  .header-inner {
    height: 72px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .brand-text {
    font-size: clamp(0.98rem, 3vw, 1.12rem);
    line-height: 1.15;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .header-actions .site-btn,
  .header-actions .site-btn--whatsapp {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(31, 36, 32, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(31, 36, 32, 0.08);
    position: relative;
    z-index: 230;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(84vw, 340px);
    height: 100dvh;
    margin: 0;
    padding: 92px 22px 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    box-shadow: -18px 0 44px rgba(31, 36, 32, 0.16);
    z-index: 220;
  }

  .main-nav.open,
  .main-nav.active {
    transform: translateX(0);
    left: auto;
    right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(31, 36, 32, 0.08);
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  #heroSlider .carousel-item {
    height: clamp(470px, 78svh, 620px);
  }

  #heroSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #heroSlider .carousel-caption {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 620px);
    text-align: center;
  }

  #heroSlider .carousel-caption p {
    margin: 0 auto 24px;
  }

  .feature-grid {
    gap: 18px;
    padding: 28px 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-copy {
    font-size: 0.98rem;
  }

  .about-grid {
    gap: 36px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    gap: 28px;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(6) {
    grid-row: span 1;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .wrap {
    padding-inline: 16px;
  }

  .main-nav {
    width: min(88vw, 320px);
    padding: 86px 18px 24px;
  }

  #heroSlider .carousel-item {
    height: clamp(420px, 72svh, 540px);
  }

  #heroSlider .carousel-caption h1 {
    font-size: clamp(2rem, 8.6vw, 2.8rem);
  }

  #heroSlider .carousel-caption p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .feature-grid,
  .services-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 16px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .header-inner {
    height: 68px;
  }

  .brand-text {
    font-size: 0.94rem;
  }

  .brand-text em {
    display: block;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    width: 100%;
    max-width: none;
    padding: 82px 16px 22px;
  }

  #heroSlider .carousel-item {
    height: 460px;
  }

  #heroSlider .carousel-caption {
    width: calc(100% - 32px);
  }

  .feature-grid {
    padding: 24px 16px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-block {
    padding: 22px 18px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .call-float,
  .whatsapp-float {
    right: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .call-float {
    bottom: 84px;
  }

  .whatsapp-float {
    bottom: 16px;
  }

  .call-float span,
  .whatsapp-float span {
    display: none;
  }
}
