
    * {
      font-family: 'Inter', sans-serif;
    }
    body {
      background: #fffdf9;
      overflow-x: hidden;
    }
    :root {
      --gold: #C6A15B;
      --gold-light: #e9d6b0;
      --beige: #F9F5EB;
      --white: #ffffff;
      --dark: #2d2a24;
    }
    .bg-gold { background-color: var(--gold); }
    .text-gold { color: var(--gold); }
    .btn-gold {
      background-color: var(--gold);
      color: white;
      border-radius: 40px;
      padding: 8px 24px;
      font-weight: 500;
      transition: 0.3s;
      border: none;
    }
    .btn-gold:hover {
      background-color: #a88542;
      color: white;
      transform: translateY(-2px);
    }
    .btn-outline-gold {
      border: 1px solid var(--gold);
      color: var(--gold);
      border-radius: 40px;
      background: transparent;
      padding: 8px 24px;
      font-weight: 500;
    }
    .btn-outline-gold:hover {
      background: var(--gold);
      color: white;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: #2d2a24;
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 3px;
      background: var(--gold);
      border-radius: 3px;
    }
    .navbar {
      transition: all 0.3s ease;
      background-color: white;
      box-shadow: 0 5px 20px rgba(0,0,0,0.03);
      border-bottom: 1px solid #000;
    }
    .navbar.sticky {
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      background: rgba(255,255,255,0.98) !important;
    }
    .nav-link {
      font-weight: 500;
      color: #3a3530 !important;
      margin: 0 6px;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--gold) !important;
    }
    .hero-carousel-item {
      padding: 60px 0 40px 0;
    }
    .service-icon {
      font-size: 2.5rem;
      color: var(--gold);
      background: #fef5e8;
      width: 80px;
      height: 80px;
      line-height: 80px;
      text-align: center;
      border-radius: 50%;
      margin-bottom: 1rem;
      transition: 0.3s;
    }
    .service-card {
      background: white;
      border-radius: 20px;
      padding: 1.5rem 1rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
      transition: all 0.3s;
      border: 1px solid rgba(198,161,91,0.2);
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.05);
      border-color: var(--gold);
    }
    .why-card {
      background: white;
      border-radius: 24px;
      padding: 1.8rem 1rem;
      text-align: center;
      transition: 0.2s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.03);
      height: 100%;
    }
    .process-step {
      background: white;
      border-radius: 30px;
      padding: 1.5rem;
      text-align: center;
      border-bottom: 3px solid var(--gold);
    }
    .testimonial-card {
      background: white;
      border-radius: 28px;
      padding: 2rem;
      box-shadow: 0 12px 28px rgba(0,0,0,0.05);
      margin: 15px;
    }
    .floating-wa {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      text-align: center;
      line-height: 55px;
      font-size: 30px;
      color: white;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: 0.2s;
    }
    .floating-wa:hover {
      background: #128C7E;
      color: white;
      transform: scale(1.05);
    }
    .gallery-img {
      border-radius: 20px;
      cursor: pointer;
      transition: transform 0.3s;
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .gallery-img:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    footer a {
      text-decoration: none;
      color: #ccc;
    }
    .top-bar {
      background: #2d2a24;
      color: #f0e6d2;
      font-size: 0.9rem;
      padding: 8px 0;
    }
    .contact-icon {
      width: 40px;
      text-align: center;
    }
    @media (max-width: 768px) {
      .section-title { font-size: 1.8rem; }
      .hero-carousel-item { text-align: center; }
    }