:root{--bg:#0b0d10;--fg:#e8edf2;--muted:#9bb0c2;--card:#131820;--accent:#4ea1ff}
*{box-sizing:border-box}body{margin:0;background:var(--bg);color:var(--fg);font:16px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu}
a{color:var(--accent);text-decoration:none}
.nav{display:flex;gap:16px;align-items:center;padding:12px 16px;background:#0f1319;border-bottom:1px solid #1e2835;position:sticky;top:0}
.brand{font-weight:700}.grow{flex:1}.button{background:var(--accent);color:#001b33;padding:8px 12px;border-radius:10px}
.container{max-width:1100px;margin:24px auto;padding:0 16px}
.flash{margin:12px 0}.flash-item{padding:8px 12px;border-radius:8px;margin-bottom:8px}.flash-item.success{background:#11331a}.flash-item.danger{background:#331313}.flash-item.info{background:#112233}
.filters{display:grid;gap:12px;margin:12px 0}.grid{display:grid;gap:8px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.cards{display:grid;gap:16px;grid-template-columns:repeat(auto-fill,minmax(260px,1fr))}
.card{background:var(--card);border:1px solid #273245;border-radius:14px;overflow:hidden;display:flex;flex-direction:column}
.thumb{background:#111 center/cover no-repeat;height:160px}.card-body{padding:12px}.muted{color:var(--muted);font-size:14px;margin-bottom:8px}
.actions{display:flex;gap:8px;flex-wrap:wrap}
label{display:flex;flex-direction:column;gap:6px}
input,select,textarea{background:#0f1319;color:var(--fg);border:1px solid #273245;border-radius:10px;padding:8px}
.loading{opacity:.7}.panel{margin:24px 0;padding:16px;border:1px solid #273245;border-radius:14px;background:rgba(19,24,32,.6)}
/* Container */
.share-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Base button style */
.share-group .icon {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Make icons visible on dark backgrounds */
.share-group .icon img {
  filter: brightness(0) invert(1); /* make white by default */
  width: 22px;
  height: 22px;
}

/* Hover effect — colored backgrounds per brand */
.icon.whatsapp:hover { background-color: #25D366; }
.icon.facebook:hover { background-color: #1877F2; }
.icon.x:hover        { background-color: #000000; }
.icon.link:hover     { background-color: #999999; }
.icon.embed:hover    { background-color: #444444; }

/* When hovered, make SVG icon visible (invert back to dark for contrast) */
.icon.whatsapp:hover img,
.icon.facebook:hover img,
.icon.x:hover img,
.icon.link:hover img,
.icon.embed:hover img {
  filter: brightness(0) invert(0);
}

/* Optional subtle hover grow */
.icon.whatsapp img { filter: invert(64%) sepia(77%) saturate(495%) hue-rotate(92deg) brightness(93%) contrast(94%); }
.icon.facebook img { filter: invert(32%) sepia(87%) saturate(2321%) hue-rotate(206deg) brightness(95%) contrast(92%); }
.icon.x img        { filter: brightness(1) invert(1); }
.icon.link img     { filter: invert(76%) sepia(0%) saturate(0%) hue-rotate(177deg) brightness(97%) contrast(84%); }
.icon.embed img    { filter: invert(60%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(70%) contrast(80%); }


/*hero*/
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 40px;
}

.hero-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.hero-overlay .button {
  background: #42d35c;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.hero-overlay .button:hover {
  background: #36b74e;
}

/*responsive*/
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 50px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Background iframe */
.hero-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.55);
  pointer-events: none; /* Prevent accidental clicks */
}

/* Overlay content */
.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-overlay p {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 700px;
  margin-bottom: 1.8rem;
}

.hero-btn {
  background: #42d35c;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: #36b74e;
  transform: scale(1.05);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 992px) {
  .hero {
    height: 420px;
  }
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
    max-width: 90%;
  }
}

/* Phones */
@media (max-width: 600px) {
  .hero {
    height: 360px;
    border-radius: 10px;
  }
  .hero-overlay {
    padding: 15px;
  }
  .hero-overlay h1 {
    font-size: 1.7rem;
  }
  .hero-overlay p {
    font-size: 0.95rem;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/*logo*/
.nav .brand-logo {
  height: 100px;
  width: auto;
  vertical-align: middle;
  margin:0;
}





/* ===== ENHANCED COLOR PALETTE ===== */
    :root {
      --bg-primary: #0a0e14;
      --bg-secondary: #0f1419;
      --bg-card: linear-gradient(135deg, #1a1f2e 0%, #141820 100%);
      --text-primary: #ffffff;
      --text-secondary: #b8c5d6;
      --text-muted: #7a8a9e;
      --accent-primary: #00d9ff;
      --accent-secondary: #6366f1;
      --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --success: #10b981;
      --danger: #ef4444;
      --warning: #f59e0b;
      --border: rgba(255, 255, 255, 0.08);
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
      --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    /* ===== GLOBAL RESETS & BASE ===== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: var(--bg-primary);
      color: var(--text-primary);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* ===== ENHANCED NAVIGATION ===== */
    .nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1px 32px;
      background: rgba(15, 20, 25, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      animation: slideDown 0.4s ease-out;
    }

    @keyframes slideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .brand-logo {
      height: 48px;
      width: auto;
      transition: transform 0.3s ease;
    }

    .brand-logo:hover {
      transform: scale(1.05);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-menu a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-primary);
      transition: width 0.3s ease;
    }

    .nav-menu a:hover {
      color: var(--text-primary);
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .button {
      background: #42d35c;
      color: white;
      padding: 10px 24px;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    }

    /* ===== ENHANCED HERO SECTION ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 700px;
      overflow: hidden;
      margin-bottom: 80px;
      border-radius: 0;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .hero-bg iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: brightness(0.5);
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: linear-gradient(135deg, rgba(15, 20, 30, 0.85) 0%, rgba(10, 14, 20, 0.9) 100%);
      padding: 40px 20px;
      animation: fadeIn 1s ease-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-overlay h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #ffffff 0%, #00d9ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeIn 1s ease-out 0.2s both;
    }

    .hero-overlay p {
      font-size: 1.4rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin-bottom: 40px;
      animation: fadeIn 1s ease-out 0.4s both;
    }

    .hero-overlay .button {
      font-size: 1.1rem;
      padding: 16px 40px;
      animation: fadeIn 1s ease-out 0.6s both;
    }

    /* ===== ENHANCED CARDS ===== */
    .cards {
      display: grid;
      gap: 32px;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      padding: 0 20px;
    }

    .card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 1;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(102, 126, 234, 0.5);
    }

    .card:hover::before {
      opacity: 1;
    }

    .thumb {
      position: relative;
      background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
      background-size: cover;
      background-position: center;
      height: 220px;
      overflow: hidden;
    }

    .thumb::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, rgba(15, 20, 25, 0.9), transparent);
    }

    .card-body {
      padding: 24px;
      position: relative;
      z-index: 2;
    }

    .card-body h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .muted {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 16px;
    }

    /* ===== ENHANCED FILTERS ===== */
    .filters {
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      margin: 40px 20px;
      box-shadow: var(--shadow-md);
    }

    .grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      margin-bottom: 24px;
    }

    label {
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-weight: 500;
      color: var(--text-secondary);
    }

    input, select, textarea {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-primary);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 16px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: var(--accent-primary);
      background: black;
      box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    }
    .filters button {
      width: 100%;
      padding: 16px 24px;
      background: #42d35c;
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(66, 211, 92, 0.3);
      position: relative;
      overflow: hidden;
    }

    .filters button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .filters button:hover::before {
      width: 300px;
      height: 300px;
    }

    .filters button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(66, 211, 92, 0.5);
    }

    .filters button:active {
      transform: translateY(0);
    }
    /* ===== ENHANCED ICONS & ACTIONS ===== */
    .actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 16px;
    }

    .icon {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .icon:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: scale(1.1);
      border-color: var(--accent-primary);
    }

    .icon img {
      width: 20px;
      height: 20px;
      filter: brightness(0) invert(1);
    }

    .icon-heart {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .icon-heart:hover {
      background: rgba(239, 68, 68, 0.2);
      border-color: var(--danger);
      transform: scale(1.1);
    }

    .icon-heart.active {
      background: rgba(16, 185, 129, 0.2);
      border-color: var(--success);
    }

    .icon-heart.active path {
      fill: var(--success);
      stroke: var(--success);
    }

    /* ===== FLASH MESSAGES ===== */
    .flash-item {
      padding: 16px 24px;
      border-radius: 12px;
      margin: 16px 20px;
      animation: slideIn 0.4s ease-out;
      border-left: 4px solid;
    }

    @keyframes slideIn {
      from {
        transform: translateX(-100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .flash-item.success {
      background: rgba(16, 185, 129, 0.15);
      border-color: var(--success);
      color: var(--success);
    }

    .flash-item.danger {
      background: rgba(239, 68, 68, 0.15);
      border-color: var(--danger);
      color: var(--danger);
    }

    .flash-item.info {
      background: rgba(0, 217, 255, 0.15);
      border-color: var(--accent-primary);
      color: var(--accent-primary);
    }

    /* ===== LOADING STATE ===== */
    .loading {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
      font-size: 1.2rem;
    }

    .loading::after {
      content: '';
      display: block;
      width: 40px;
      height: 40px;
      margin: 20px auto;
      border: 3px solid var(--border);
      border-top-color: var(--accent-primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* ===== CONTAINER ===== */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .container h1 {
      font-size: 3rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 992px) {
      .hero {
        height: 500px;
      }

      .hero-overlay h1 {
        font-size: 3rem;
      }

      .hero-overlay p {
        font-size: 1.2rem;
      }

      .cards {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .nav {
        padding: 12px 16px;
      }

      .hero {
        height: 400px;
      }

      .hero-overlay h1 {
        font-size: 2.2rem;
      }

      .hero-overlay p {
        font-size: 1rem;
      }

      .container h1 {
        font-size: 2.2rem;
      }

      .cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .filters {
        padding: 20px;
      }

      .grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== PANEL ===== */
    .panel {
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      margin: 40px 0;
      box-shadow: var(--shadow-md);
    }

    .panel h3 {
      font-size: 1.8rem;
      margin-bottom: 24px;
      color: var(--text-primary);
    }

    /* ===== ENHANCED BUTTON VARIANTS ===== */
    .button.delete-btn {
      background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
      box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    }

    .button.delete-btn:hover {
      box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
    }

    /* ===== SHARE GROUP ===== */
    .share-group {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .share-group .icon.whatsapp:hover {
      background: #25D366;
      border-color: #25D366;
    }

    .share-group .icon.facebook:hover {
      background: #1877F2;
      border-color: #1877F2;
    }

    .share-group .icon.x:hover {
      background: #000000;
      border-color: #333333;
    }

    .share-group .icon.link:hover {
      background: var(--accent-primary);
      border-color: var(--accent-primary);
    }

    .share-group .icon.embed:hover {
      background: var(--accent-secondary);
      border-color: var(--accent-secondary);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border);
      margin-top: 80px;
      padding: 60px 20px 30px;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-section h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: var(--text-primary);
      font-weight: 700;
    }

    .footer-section p,
    .footer-section a {
      color: var(--text-muted);
      line-height: 2;
      text-decoration: none;
      display: block;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--accent-primary);
      padding-left: 5px;
    }

    .footer-logo {
      height: 50px;
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--accent-gradient);
      border-color: transparent;
      transform: translateY(-3px);
      padding-left: 0;
    }

    .social-links img {
      width: 20px;
      height: 20px;
      filter: brightness(0) invert(1);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 30px;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .footer-bottom a {
      color: var(--accent-primary);
      text-decoration: none;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* ===== CONTACT PAGE ===== */
    .contact-hero {
      text-align: center;
      padding: 80px 20px 40px;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
      border-radius: 20px;
      margin-bottom: 60px;
    }

    .contact-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }

    .contact-hero p {
      font-size: 1.3rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .contact-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--accent-primary);
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      background: var(--accent-gradient);
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .contact-icon svg {
      width: 30px;
      height: 30px;
      stroke: white;
      fill: none;
    }

    .contact-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--text-primary);
    }

    .contact-card p {
      color: var(--text-secondary);
      margin-bottom: 15px;
    }

    .contact-card a {
      color: var(--accent-primary);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .contact-card a:hover {
      color: var(--text-primary);
    }

    .contact-form {
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 50px;
      max-width: 800px;
      margin: 0 auto;
    }

    .contact-form h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 10px;
      color: var(--text-secondary);
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .form-submit {
      text-align: center;
      margin-top: 30px;
    }

    /* ===== PRICING PAGE ===== */
    .pricing-hero {
      text-align: center;
      padding: 80px 20px 60px;
    }

    .pricing-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }

    .pricing-hero p {
      font-size: 1.3rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .pricing-toggle {
      display: inline-flex;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 5px;
      margin-bottom: 60px;
    }

    .pricing-toggle button {
      background: transparent;
      border: none;
      color: var(--text-secondary);
      padding: 12px 30px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .pricing-toggle button.active {
      background: var(--accent-gradient);
      color: white;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .pricing-card {
      background: var(--bg-card);
      border: 2px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: var(--accent-gradient);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      border-color: var(--accent-primary);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }

    .pricing-card:hover::before {
      opacity: 1;
    }

    .pricing-card.featured {
      border-color: var(--accent-primary);
      transform: scale(1.05);
    }

    .pricing-card.featured::before {
      opacity: 1;
    }

    .pricing-badge {
      display: inline-block;
      background: var(--accent-gradient);
      color: white;
      padding: 6px 20px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .pricing-card h3 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: var(--text-primary);
    }

    .pricing-price {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 10px;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pricing-price small {
      font-size: 1.5rem;
      color: var(--text-muted);
    }

    .pricing-description {
      color: var(--text-secondary);
      margin-bottom: 30px;
      font-size: 1.05rem;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 30px 0;
      text-align: left;
    }

    .pricing-features li {
      padding: 15px 0;
      color: var(--text-secondary);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--success);
      font-weight: 800;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .pricing-features li.unavailable {
      opacity: 0.4;
    }

    .pricing-features li.unavailable::before {
      content: '✕';
      color: var(--text-muted);
    }

    .pricing-cta {
      margin-top: 30px;
    }

    .pricing-cta .button {
      width: 100%;
      padding: 16px;
      font-size: 1.1rem;
    }

    /* ===== ACCESSIBILITY ===== */
    :focus-visible {
      outline: 2px solid var(--accent-primary);
      outline-offset: 2px;
    }

    button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }





