:root {
    --brand: #A65C06;
    --dark: #1a1a1a;
  }

  body {
    font-family: Inter, sans-serif;
    color: #333;
    line-height: 1.7;
  }

  .text-primary {
    color: var(--brand) !important;
  }

  .btn-outline-primary {
    border-color: var(--brand);
    color: var(--brand);
  }

  .btn-outline-primary:hover {
    background-color: var(--brand);
    border-color: var(--brand);
  }

  .btn-outline-primary.white {
    border-color: #fff;
    color: #fff;
  }

  .btn-outline-primary.white:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--brand);
  }

  .btn-rounded {
    border-radius: 25px !important;
  }

  /* NAVBAR */
  .navbar {
    background: #fff;
  }

  .navbar-brand {
    font-weight: 800;
    color: var(--brand) !important;
    letter-spacing: .5px;
  }

  .nav-link {
    font-weight: 500;
    color: #333 !important;
    text-transform: uppercase;
  }

  .nav-link:hover {
    color: var(--brand) !important;
  }

  .btn-brand {
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
  }

  .btn-brand:hover {
    background: var(--brand);
    color: #fff;
  }

  /* HERO */
  .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .carousel-caption {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    max-width: 750px;
    text-align: left;
  }

  .carousel-caption h1 {
    font-size: 3.3rem;
    font-weight: 800;
  }

  .carousel-caption p {
    font-size: 1.2rem;
    margin-top: 15px;
  }

  /* SECTIONS */
  section {
    padding: 90px 0;
  }

  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title h2 {
    color: var(--brand);
    font-weight: 800;
    margin-bottom: 10px;
  }

  .section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
  }

  /* CARDS */
  .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
  }

  /* WHY US */
  .icon-box {
    text-align: center;
    padding: 30px;
  }

  .icon-box h5 {
    font-weight: 700;
    margin-top: 15px;
  }

  /* GALLERY */
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(166, 92, 6, 0.85),
        rgba(0, 0, 0, 0.3));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }

  .gallery-overlay h5 {
    font-weight: 700;
    margin-bottom: 5px;
  }

  .gallery-overlay p {
    font-size: 0.95rem;
    margin: 0;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
  }


  /* FOOTER */
  footer {
    background: var(--dark);
    color: #aaa;
    padding: 50px 0;
  }

  footer h6 {
    color: #fff;
    font-weight: 700;
  }

  footer a {
    color: #aaa;
    text-decoration: none;
  }

  footer a:hover {
    color: #fff;
  }

  input.form-control{
    height: 60px;
  }

  @media screen and (max-width:767px) {
    .carousel-caption h1 {
      font-size: 2.5rem;
    }
  }

  @media screen and (max-width:575px) {
    .carousel-caption {
      width: 90%;
    }
    .btn {
      display: block;
      width: 100%;
    }
  }


  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}