    :root {
      --bg-color: #0b0b0f;
      --card-bg: #111116;
      --text-main: #eaeaea;
      --text-muted: #b5b5b5;
      --accent: #D4AF37; /* Premium Gold */
      --accent-hover: #f1d279;
      --white: #ffffff;
      --input-bg: #1a1a21;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-color);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Header */
    .site-header {
      padding: 30px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: absolute;
      width: 100%;
      z-index: 10;
    }

    .header-name {
      font-family: 'Dancing Script', cursive;
      font-size: 1.8rem;
      color: var(--white);
      letter-spacing: 1px;
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background-color: var(--bg-color);
      overflow: hidden;
    }

    .hero-image-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      opacity: 0.25;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 850px;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 7vw, 4.5rem);
      margin-bottom: 24px;
      line-height: 1.1;
      font-weight: 700;
      text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    }

    .subtitle {
      font-size: 1.25rem;
      color: var(--text-main);
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 400;
      text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
    }

    .btn-primary {
      display: inline-block;
      padding: 18px 45px;
      background: var(--accent);
      color: #000;
      text-decoration: none;
      font-weight: 700;
      border-radius: 50px;
      transition: all 0.4s ease;
      box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      width: auto;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      background: var(--white);
      box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    }

    /* Contact Form Styles */
    .form-container {
      max-width: 600px;
      margin: 50px auto 0;
      background: var(--card-bg);
      border-radius: 30px;
      padding: 40px;
      border: 1px solid rgba(212, 175, 55, 0.1);
      box-shadow: 0 40px 80px rgba(0,0,0,0.6);
      text-align: left;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-form input, 
    .contact-form select, 
    .contact-form textarea {
      width: 100%;
      padding: 15px 20px;
      background: var(--input-bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .contact-form input:focus, 
    .contact-form select:focus, 
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--accent);
    }

    .contact-form textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-form button.full {
      width: 100%;
      margin-top: 10px;
    }
.header-logo img {
  height: 52px;            /* safe premium size */
  width: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.feature-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-link:hover {
  cursor: pointer;
  transform: translateY(-5px);
}

.feature-link:hover strong {
  color: var(--accent);
}

    /* Rest of Layout */
    .about-me { padding: 120px 0; background: var(--bg-color); }
    .about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
    .about-text h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 30px; color: var(--accent); }
    .about-text p { font-size: 1.15rem; margin-bottom: 25px; color: var(--text-main); }
    .about-image img { width: 100%; border-radius: 30px; border: 1px solid rgba(212, 175, 55, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
    .features { padding: 120px 0; background: var(--card-bg); }
    .features h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; text-align: center; margin-bottom: 70px; }
    .list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .list li { padding: 50px; background: rgba(255, 255, 255, 0.02); border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; }
    .list li:hover { border-color: var(--accent); transform: translateY(-10px); }
    .list li strong { display: block; font-size: 1.5rem; margin-bottom: 15px; color: var(--accent); }
    .cta-section { padding: 120px 0; text-align: center; }
    .webrya-footer { background: #050507; padding: 100px 20px 50px; border-top: 1px solid rgba(255,255,255,0.03); text-align: center; }
    .footer-content { display: flex; flex-direction: column; align-items: center; gap: 60px; }
    .footer-k2-card { width: 100%; max-width: 550px; border-radius: 25px; box-shadow: 0 25px 50px rgba(0,0,0,0.6); }
    .webrya-branding { text-decoration: none; display: flex; flex-direction: column; align-items: center; transition: 0.3s; }
    .footer-logo { width: 150px; filter: grayscale(1) brightness(2.5); }
    .designed-by { font-size: 0.75rem; letter-spacing: 4px; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }

    @media (max-width: 768px) {
      .hero { padding-top: 120px; padding-bottom: 120px; min-height: auto; }
      .hero-image-bg { max-height: 90svh; }
      h1 { font-size: 2.8rem; }
      .about-grid { grid-template-columns: 1fr; text-align: center; }
      .form-container { padding: 30px 20px; }
    }
