 
    :root {
        --font-inter: 'Lora', serif;
        --font-playfair: 'Playfair Display', serif;
        --background: 36 25% 97%;
        --foreground: 222 47% 11%;
        --primary: #131d34;
        --primary-foreground: #fffaeb;
        --secondary: 36 20% 95%;
        --muted: 36 20% 95%;
        --muted-foreground: 220 9% 46%;
        --accent: 38 72% 44%;
        --accent-foreground: 0 0% 100%;
        --border: 220 13% 91%;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-inter);
      background: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.5;
    }

    .font-playfair {
      font-family: var(--font-playfair);
    }

   
    /* Hero Section */
    .hero {
      position: relative;
      padding-top: 160px;
      padding-bottom: 80px;
      background: #f8f6f1;
    }

    .hero-content {
      max-width: 896px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
    }

    .hero-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: hsl(var(--accent));
      margin-bottom: 24px;
    }

    .hero-title {
      font-family: var(--font-playfair);
      font-size: 48px;
      font-weight: 700;
      color: hsl(var(--primary));
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .hero-title .accent {
      color: hsl(var(--accent));
    }

    .hero-subtitle {
      color: hsl(var(--muted-foreground));
      font-size: 18px;
      max-width: 672px;
      margin: 0 auto;
    }

    /* Services Grid */
    .services-section {
      padding: 80px 24px;
      background: #f8f6f1;
    }

    .services-grid {
      max-width: 1152px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 24px;
    }

    .service-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      height: 320px;
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-4px);
    }

    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s;
    }

    .service-card:hover img {
      transform: scale(1.05);
    }

    .service-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), rgba(0,0,0,0.1));
    }

    .service-card-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 28px;
    }

    .service-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .service-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-icon svg {
      width: 20px;
      height: 20px;
      color: white;
    }

    .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 12px;
      border-radius: 9999px;
      background: hsl(var(--accent));
      color: hsl(var(--accent-foreground));
      font-size: 11px;
      font-weight: 700;
    }

    .service-badge svg {
      width: 12px;
      height: 12px;
      fill: currentColor;
    }

    .service-card-body h3 {
      font-family: var(--font-playfair);
      font-size: 20px;
      font-weight: 700;
      color: white;
      margin-bottom: 8px;
    }

    .service-card-body p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      line-height: 1.6;
    }

   

    /* Responsive */
    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .navbar-links, .navbar-btn {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero-title {
        font-size: 32px;
      }

      .hero-subtitle {
        font-size: 16px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    } 