:root {
      --black: #0c0c0c;
      --dark: #151515;
      --cream: #f3eee7;
      --copper: #a7653a;
      --copper-light: #c98250;
      --white: #ffffff;
      --gray: #c9c9c9;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--black);
      color: var(--white);
      line-height: 1.6;
    }

    img {
      display: block;
      width: 100%;
    }

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

    .container {
      width: min(1160px, 90%);
      margin: 0 auto;
    }

    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 20;
      padding: 22px 0;
    }

    .nav-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(167, 101, 58, 0.35));
}

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      font-size: 13px;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .nav-button,
    .primary-button {
      display: inline-block;
      padding: 15px 25px;
      border-radius: 999px;
      background: var(--copper);
      color: var(--white);
      font-size: 13px;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: 0.3s ease;
    }

    .nav-button:hover,
.primary-button:hover {
    background: var(--copper-light);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      background-image:
        linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.9) 0%,
          rgba(0, 0, 0, 0.55) 48%,
          rgba(0, 0, 0, 0.15) 100%
        ),
        url("images/hero.JPEG");

      background-size: cover;
      background-position: center;
    }

    .hero-content {
      width: min(1160px, 90%);
      margin: 0 auto;
      padding-top: 100px;
    }

    .eyebrow {
      color: var(--copper-light);
      font-size: 13px;
      font-weight: bold;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(55px, 8vw, 105px);
      line-height: 0.92;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-description {
      max-width: 600px;
      color: #ececec;
      font-size: 19px;
      margin-bottom: 35px;
    }

    .secondary-button {
      display: inline-block;
      margin-left: 14px;
      padding: 14px 24px;
      border: 1px solid rgba(255,255,255,0.7);
      border-radius: 999px;
      font-size: 13px;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: 0.3s ease;
    }

   .secondary-button:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
    .section {
      padding: 100px 0;
    }

    .section-light {
      background: var(--cream);
      color: #2b211a;
    }

    .section-dark {
      background: var(--dark);
    }

    .section-title {
      max-width: 760px;
      font-size: clamp(38px, 5vw, 66px);
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 25px;
    }

    .section-text {
      max-width: 720px;
      font-size: 18px;
      color: #5b5149;
    }

    .section-dark .section-text {
      color: var(--gray);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-top: 55px;
    }

    .feature-card {
      padding: 30px;
      border: 1px solid rgba(105, 72, 48, 0.18);
      background: rgba(255,255,255,0.45);
      border-radius: 18px;
    }
    .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

    .feature-number {
      color: var(--copper);
      font-size: 14px;
      font-weight: bold;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .feature-card h3 {
      font-size: 21px;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: #665a51;
      font-size: 15px;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-top: 50px;
    }

    .service-card {
      min-height: 420px;
      padding: 40px;
      display: flex;
      align-items: flex-end;
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      background-size: cover;
      background-position: center;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.15)
      );
    }

    .service-content {
      position: relative;
      z-index: 2;
    }

    .service-card h3 {
      font-size: 34px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .service-card p {
      color: #dedede;
      max-width: 430px;
    }

    .service-one {
      background-image: url("images/IMG_3413.jpg");
    }

    .service-two {
      background-image: url("images/IMG_3408.jpg");
    }

    .gallery {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 16px;
      margin-top: 50px;
    }

    .gallery img {
      height: 410px;
      object-fit: cover;
      border-radius: 16px;
      transition: 0.35s ease;
      cursor: pointer;
    }

    .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.30);
}

    .contact-box {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 50px;
      align-items: center;
      padding: 55px;
      border-radius: 24px;
      background: linear-gradient(135deg, #744326, #2a1b13);
    }

    .contact-box h2 {
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .contact-details {
      color: #f0ddd0;
      font-size: 17px;
    }

    .contact-details p {
      margin-bottom: 12px;
    }

    footer {
      padding: 34px 0;
      background: #080808;
      color: #9b9b9b;
      text-align: center;
      font-size: 14px;
    }

    .whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,.22);
    transition: all .3s ease;
    z-index: 1000;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,.30);
}

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .features {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery {
        grid-template-columns: 1fr 1fr;
      }

      .gallery img:first-child {
        grid-column: 1 / -1;
      }

      .contact-box {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 650px) {
      .navbar {
        padding: 15px 0;
      }

      .logo {
        width: 60px;
        height: 60px;
      }

      .hero {
        min-height: 820px;
        background-position: center;
      }

      .hero-content {
        padding-top: 145px;
      }

      .hero h1 {
        font-size: 53px;
      }

      .hero-description {
        font-size: 16px;
      }

      .secondary-button {
        margin: 12px 0 0;
      }

      .section {
        padding: 75px 0;
      }

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

      .gallery img,
      .gallery img:first-child {
        height: 340px;
        grid-column: auto;
      }

      .contact-box {
        padding: 35px 25px;
      }
    }.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.review-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card.visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.16);
}

.review-card p {
  color: #5b5149;
  line-height: 1.7;
}

.review-card h3 {
  margin-top: 20px;
  color: #151515;
}

.stars {
  color: #a7653a;
  font-size: 20px;
  letter-spacing: 3px;
}

@media (max-width: 800px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background: #151515;
        padding: 20px;
        border-radius: 12px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(55px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.navbar {
    transition:
        background 0.3s ease,
        padding 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(12, 12, 12, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--copper);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
 
}