:root {
        --gold: #c9a227;
        --gold-light: #e8d48b;
        --charcoal: #1a1a1a;
        --charcoal-light: #2d2d2d;
        --cream: #f5f0e6;
        --white: #ffffff;
        --whatsapp: #25d366;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: var(--charcoal);
        color: var(--cream);
        overflow-x: hidden;
        line-height: 1.6;
      }

      /* Hero */
      .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem;
        position: relative;
        background: linear-gradient(
            135deg,
            rgba(201, 162, 39, 0.08) 0%,
            transparent 50%
          ),
          linear-gradient(180deg, var(--charcoal) 0%, #0f0f0f 100%);
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
        pointer-events: none;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 700px;
      }

      .badge {
        display: inline-block;
        background: var(--gold);
        color: var(--charcoal);
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        border-radius: 2px;
      }

      h1 {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(3.5rem, 10vw, 6rem);
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 0.95;
        margin-bottom: 1rem;
        background: linear-gradient(
          180deg,
          var(--cream) 0%,
          var(--gold-light) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero p {
        font-size: 1.2rem;
        color: rgba(245, 240, 230, 0.8);
        margin-bottom: 2.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      /* WhatsApp CTA */
      .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--whatsapp);
        color: white !important;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
      }

      .whatsapp-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
        background: #20bd5a;
      }

      .whatsapp-btn svg {
        width: 28px;
        height: 28px;
      }

      /* Services */
      .services {
        padding: 5rem 2rem;
        background: var(--charcoal-light);
      }

      .section-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: 2.5rem;
        color: var(--gold);
        text-align: center;
        margin-bottom: 3rem;
        letter-spacing: 0.05em;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto;
      }

      .service-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(201, 162, 39, 0.2);
        padding: 2rem;
        border-radius: 8px;
        text-align: center;
        transition: all 0.3s ease;
      }

      .service-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
      }

      .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }

      .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--cream);
      }

      .service-card p {
        font-size: 0.9rem;
        color: rgba(245, 240, 230, 0.6);
      }

      /* CTA Section */
      .cta-section {
        padding: 5rem 2rem;
        text-align: center;
        background: linear-gradient(
          180deg,
          var(--charcoal-light) 0%,
          var(--charcoal) 100%
        );
      }

      .cta-section h2 {
        font-family: "Bebas Neue", sans-serif;
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
        color: var(--cream);
      }

      .cta-section p {
        color: rgba(245, 240, 230, 0.7);
        margin-bottom: 2rem;
        font-size: 1.1rem;
      }

      /* Floating WhatsApp */
      .floating-whatsapp {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 1000;
        animation: pulse 2s infinite;
      }

      .floating-whatsapp a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: var(--whatsapp);
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
        transition: transform 0.3s ease;
      }

      .floating-whatsapp a:hover {
        transform: scale(1.1);
      }

      .floating-whatsapp svg {
        width: 32px;
        height: 32px;
        fill: white;
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      /* Footer */
      footer {
        padding: 2rem;
        text-align: center;
        color: rgba(245, 240, 230, 0.5);
        font-size: 0.9rem;
        border-top: 1px solid rgba(201, 162, 39, 0.2);
      }

      /* Responsive */
      @media (max-width: 600px) {
        .hero {
          padding: 1.5rem;
        }
        .whatsapp-btn {
          padding: 0.9rem 1.5rem;
          font-size: 1rem;
        }
        .floating-whatsapp {
          bottom: 1.5rem;
          right: 1.5rem;
        }
      }