
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Poppins", sans-serif;
        overflow-x: hidden;
        scroll-behavior: smooth;
        background-color: #fffaf5;
      }
      /* Top Bar */
      .top-bar {
        background: #1e1b13;
        color: #f8f4e3;
        font-size: 0.85rem;
        padding: 8px 0;
      }
      .top-bar a {
        color: #ffb347;
        text-decoration: none;
        transition: 0.3s;
      }
      .top-bar a:hover {
        color: #ff9f1c;
      }
      .social-icons a {
        color: #f8f4e3;
        margin-left: 12px;
        font-size: 0.9rem;
      }
      .social-icons a:hover {
        color: #ffb347;
      }
      /* Navbar Sticky */
      .navbar {
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        padding: 12px 0;
      }
      .navbar-sticky {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1030;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.4s;
      }
      @keyframes slideDown {
        from {
          transform: translateY(-100%);
        }
        to {
          transform: translateY(0);
        }
      }
      .navbar-brand img {
        max-height: 50px;
        width: auto;
      }
      .nav-link {
        font-weight: 500;
        color: #2c2b28 !important;
        margin: 0 6px;
        transition: 0.3s;
      }
      .nav-link:hover,
      .nav-link.active {
        color: #d35400 !important;
      }
      .btn-cta {
        background: #d35400;
        color: white;
        border-radius: 40px;
        padding: 8px 20px;
        font-weight: 500;
        transition: 0.3s;
        border: none;
      }
      .btn-cta:hover {
        background: #a04000;
        transform: scale(1.02);
        color: white;
      }
      .btn-outline-cta {
        border: 2px solid #d35400;
        color: #d35400;
        border-radius: 40px;
        padding: 8px 20px;
        font-weight: 500;
        transition: 0.3s;
      }
      .btn-outline-cta:hover {
        background: #d35400;
        color: white;
      }
      /* Hero Parallax */
      .hero {
        background:
          linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
          url("https://images.pexels.com/photos/699953/pexels-photo-699953.jpeg?auto=compress&cs=tinysrgb&w=1600")
            no-repeat center center/cover;
        background-attachment: fixed;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
      }
      .hero h1 {
        font-size: 3rem;
        font-weight: 800;
        text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
      }
      .hero p {
        font-size: 1.2rem;
        margin: 20px 0;
      }
      .feature-badge {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(6px);
        padding: 6px 12px;
        border-radius: 40px;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      /* Sections */
      section {
        padding: 80px 0;
        overflow: hidden;
      }
      .section-title {
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }
      .section-title:after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 70px;
        height: 3px;
        background: #d35400;
      }
      .card-hover {
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        border: none;
        overflow: hidden;
        border-radius: 20px;
      }
      .card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
      }
      .service-icon {
        font-size: 2.5rem;
        color: #d35400;
      }
      .gallery-img {
        border-radius: 18px;
        transition: 0.4s;
        cursor: pointer;
        height: 250px;
        object-fit: cover;
        width: 100%;
      }
      .gallery-img:hover {
        transform: scale(1.02);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
      }
      .process-step {
        text-align: center;
        padding: 20px;
      }
      .process-icon {
        font-size: 3rem;
        background: #ffe8dd;
        width: 90px;
        height: 90px;
        line-height: 90px;
        border-radius: 50%;
        margin: 0 auto 20px;
        color: #d35400;
      }
      .testimonial-card {
        background: white;
        border-radius: 30px;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      }
      .faq-accordion .accordion-button:not(.collapsed) {
        background: #fff0e6;
        color: #d35400;
      }
      .cta-bg {
        background:
          linear-gradient(92deg, #1e1b13b3, #1e1b13b3),
          url("https://images.pexels.com/photos/1624487/pexels-photo-1624487.jpeg?auto=compress&cs=tinysrgb&w=1600")
            center/cover fixed;
        border-radius: 0;
      }
      footer {
        background: #0f0e0a;
        color: #ddd;
      }
      .whatsapp-float {
        position: fixed;
        bottom: 80px;
        right: 20px;
        background: #25d366;
        color: white;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        line-height: 55px;
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
      }
      .whatsapp-float:hover {
        transform: scale(1.1);
        background: #20b859;
        color: white;
      }
      .call-sticky {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: #d35400;
        color: white;
        padding: 10px 18px;
        border-radius: 50px;
        font-weight: bold;
        z-index: 99;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        font-size: 1rem;
        transition: 0.3s;
      }
      .call-sticky i {
        margin-right: 8px;
      }
      .call-sticky:hover {
        background: #b13d00;
        color: white;
      }
      @media (max-width: 768px) {
        .hero h1 {
          font-size: 1.8rem;
        }
        .hero p {
          font-size: 1rem;
        }
        section {
          padding: 50px 0;
        }
        .top-bar .row div {
          font-size: 0.7rem;
        }
        .navbar-nav {
          text-align: center;
          background: white;
          padding: 15px;
        }
        .btn-cta,
        .btn-outline-cta {
          margin: 5px 0;
        }
        .whatsapp-float {
          bottom: 80px;
          right: 15px;
          width: 48px;
          height: 48px;
          line-height: 48px;
          font-size: 26px;
        }
        .call-sticky {
          bottom: 20px;
          left: 15px;
          padding: 6px 14px;
          font-size: 0.85rem;
        }
      }
      .map-container iframe {
        width: 100%;
        border-radius: 20px;
        height: 280px;
        border: 0;
      }
      .form-control,
      .form-select {
        border-radius: 30px;
        padding: 12px 20px;
        border: 1px solid #e0cfbf;
      }
      button[type="submit"] {
        background: #d35400;
        border: none;
        padding: 12px 30px;
        border-radius: 40px;
        font-weight: 600;
      }
      /* Custom Lightbox Styles */
      .custom-lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        cursor: pointer;
        justify-content: center;
        align-items: center;
      }
      .custom-lightbox.active {
        display: flex;
      }
      .lightbox-img {
        max-width: 90%;
        max-height: 85%;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
      }
      .close-lightbox {
        position: absolute;
        top: 20px;
        right: 40px;
        color: white;
        font-size: 45px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
        z-index: 10000;
      }
      .close-lightbox:hover {
        color: #d35400;
        transform: scale(1.1);
      }
      .lightbox-caption {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        font-size: 18px;
        background: rgba(0, 0, 0, 0.6);
        padding: 10px;
        margin: 0 auto;
        width: fit-content;
        border-radius: 30px;
      }
      @media (max-width: 768px) {
        .close-lightbox {
          font-size: 35px;
          top: 15px;
          right: 20px;
        }
        .lightbox-caption {
          font-size: 14px;
          bottom: 15px;
        }
      }