/*
Theme Name: AIVeda
Theme URI: https://aiveda.com
Author: AIVeda Sovereign Technologies
Author URI: https://aiveda.com
Description: Private AI & Enterprise LLM Development Company — Premium WordPress theme for AIVeda with mega menus, gold gradient design system, and full page coverage across Platforms, Accelerators, Services, Industries, and Products.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: aiveda
*/

/* =========================================================
   AIVEDA DESIGN SYSTEM — Base Styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --gold-1: #BF953F;
  --gold-2: #FCF6BA;
  --gold-3: #B38728;
  --gold-4: #FBF5B7;
  --gold-5: #AA771C;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--slate-900);
  background-image: radial-gradient(#e5e7eb 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Gold System ── */
.gold-gradient-bg {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-4), var(--gold-5));
}
.gold-text {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ── Buttons ── */
.gold-button,
.btn-gold,
.cta-gold,
.luxury-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-4), var(--gold-5));
  color: #1a1a1a;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(191,149,63,.22);
  text-decoration: none;
}
.gold-button:hover,
.btn-gold:hover,
.cta-gold:hover,
.luxury-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(191,149,63,.45);
  filter: brightness(1.08);
}

.btn-dark {
  display: inline-block;
  background: var(--slate-900);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-dark:hover { background: #1e293b; transform: translateY(-1px); }

/* ── Cards ── */
.bento-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.bento-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.06); }

/* ── Layout Utilities ── */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 1.5rem; }
.section-sm { padding: 4rem 1.5rem; }
.text-center { text-align: center; }

/* ── Typography ── */
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--slate-600); }

/* ── Mega Menu ── */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.23,1,0.32,1);
  position: absolute;
  left: 0; right: 0; top: 100%;
  width: 100%;
  background: white;
  border-top: 1px solid var(--slate-100);
  box-shadow: 0 50px 80px -20px rgba(0,0,0,.1);
  z-index: 100;
}
.nav-item:hover .mega-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.menu-item-card {
  transition: all 0.2s ease;
  border: 1px solid transparent;
  padding: 1rem; border-radius: 12px; cursor: pointer;
}
.menu-item-card:hover {
  background: rgba(191,149,63,.04);
  border-color: var(--gold-1);
}
.menu-item-card:hover h4 {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.menu-item-card h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.menu-item-card p  { font-size: 0.75rem; color: var(--slate-500); }

/* ── Nav ── */
.site-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid var(--slate-100);
}
.nav-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
  height: 5.5rem; display: flex; justify-content: space-between; align-items: center;
}
.site-logo { font-size: 1.5rem; font-weight: 900; font-style: italic; letter-spacing: -0.05em; text-decoration: none; color: var(--slate-900); }
.site-logo span { color: var(--slate-400); }

.nav-links { display: flex; height: 100%; align-items: center; gap: 0; }
.nav-item  { position: relative; height: 100%; display: flex; align-items: center; }
.nav-item > a,
.nav-item > span {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--slate-500); padding: 0 1.2rem;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: color 0.2s;
}
.nav-item > a:hover,
.nav-item > span:hover { color: var(--slate-900); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--slate-800); margin: 5px 0; transition: all 0.3s; }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-nav {
    display: none; position: fixed; top: 5.5rem; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 150; overflow-y: auto; padding: 2rem;
    border-top: 1px solid var(--slate-100);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 0.9rem 0; font-weight: 700; font-size: 0.95rem; color: var(--slate-800); border-bottom: 1px solid var(--slate-100); text-decoration: none; }
  .mobile-section-title { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-1); margin: 1.5rem 0 0.5rem; }
}

/* ── Footer ── */
.site-footer { background: var(--slate-900); color: #fff; padding: 5rem 1.5rem 2rem; }
.footer-inner { max-width: 80rem; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-size: 1.5rem; font-weight: 900; font-style: italic; letter-spacing: -0.05em; margin-bottom: 1.5rem; background: linear-gradient(135deg, var(--gold-1), var(--gold-5)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-col h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { font-size: 0.8rem; color: var(--slate-400); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 1rem; margin-top: 0.5rem; }
.footer-social a { color: var(--slate-400); font-size: 1rem; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold-1); }
.footer-newsletter { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.footer-newsletter input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 0.75rem; padding: 0.6rem 1rem; font-size: 0.8rem; color: #fff; outline: none; }
.footer-newsletter input::placeholder { color: var(--slate-500); }
.footer-newsletter button { background: #d97706; color: #fff; border: none; padding: 0.6rem 1rem; border-radius: 0.75rem; font-size: 0.75rem; font-weight: 700; cursor: pointer; }
.footer-bottom { padding-top: 2rem; text-align: center; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--slate-500); }

/* ── Page Content Sections ── */
.page-hero { padding: 8rem 1.5rem 5rem; text-align: center; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero p { font-size: 1.2rem; max-width: 48rem; margin: 0 auto 2.5rem; color: var(--slate-500); font-weight: 500; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; font-size: 0.8rem; font-weight: 700; color: var(--slate-400); letter-spacing: 0.05em; }
.hero-badges span i { color: #d97706; margin-right: 0.4rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1023px) { .three-col, .four-col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .two-col, .three-col, .four-col { grid-template-columns: 1fr; } }

.dark-section { background: var(--slate-900); color: #fff; padding: 5rem 1.5rem; }
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: var(--slate-400); }
.light-section { background: var(--slate-50); padding: 5rem 1.5rem; }

.pill { display: inline-block; padding: 0.4rem 1rem; border-radius: 9999px; border: 1px solid var(--slate-200); font-size: 0.8rem; font-weight: 600; margin: 0.25rem; }
.pill-dark { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); color: #fff; }

.step-row { display: flex; gap: 2rem; align-items: flex-start; }
.step-num { font-size: 3rem; font-weight: 800; color: var(--slate-200); flex-shrink: 0; line-height: 1; min-width: 2.5rem; }

.border-gold-left { border-left: 3px solid var(--gold-1); padding-left: 1.5rem; }

.tag { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: #2563eb; }
.tag-gold { color: var(--gold-1); }
.tag-green { color: #16a34a; }

.faq-item { padding: 1.5rem 2rem; border-radius: 1.5rem; background: #fff; border: 1px solid var(--slate-100); margin-bottom: 1rem; }
.faq-item h4 { font-weight: 800; margin-bottom: 0.75rem; }
.faq-item p { font-size: 0.875rem; color: var(--slate-500); }

.phase-card { padding: 1.5rem; border-left: 1px solid rgba(255,255,255,.1); }
.phase-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; background: linear-gradient(135deg, var(--gold-1), var(--gold-5)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Industry Cards */
.industry-badge { display: inline-block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-1); margin-bottom: 0.5rem; }

/* ── WordPress Core Compat ── */
.wp-block-image img, img { max-width: 100%; height: auto; }
.aligncenter { display: block; margin: 0 auto; }
a { color: inherit; }
