/* ==========================================================================
   AZIZIFY AGENCY PORTFOLIO - ULTIMATE PREMIUM DARK OVERHAUL
   Color Palette: Deep Obsidian, Electric Gold, Neon Purple & Cyan
   ========================================================================== */

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

/* =========================================
   1. COLOR PALETTE & DESIGN TOKENS
   ========================================= */
:root {
  /* Hyper-Premium Dark Theme */
  --bg-color: #050505;
  --bg-gradient: radial-gradient(circle at 50% -20%, #161026 0%, #050505 50%, #020202 100%);
  
  --card-bg: rgba(10, 10, 12, 0.6);
  --card-glass: rgba(15, 15, 18, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(255, 255, 255, 0.2);
  
  --primary: #FFFFFF;
  --primary-gradient: linear-gradient(135deg, #FFFFFF 0%, #A1A1AA 100%);
  --gold-gradient: linear-gradient(135deg, #FACC15 0%, #D97706 100%);
  --cyan-gradient: linear-gradient(135deg, #22D3EE 0%, #3B82F6 100%);
  --purple-gradient: linear-gradient(135deg, #A855F7 0%, #6366F1 100%);
  
  --accent: #FACC15; /* Primary Accent: Gold */
  --accent-secondary: #22D3EE; /* Cyan */
  
  --text: #E4E4E7;
  --text-muted: #A1A1AA;
  --text-light: #71717A;
  
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(5, 5, 5, 0.85);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(250, 204, 21, 0.15);
}

/* =========================================
   2. RESET & LAYOUT
   ========================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  background-color: #050505;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   3. ANIMATIONS & MICRO-INTERACTIONS
   ========================================= */
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-30px) scale(1.1) rotate(180deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; filter: blur(80px); }
  50% { opacity: 0.6; filter: blur(100px); }
}

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

@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mesh Gradients */
.orb-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 15s ease-in-out infinite, pulseGlow 10s ease-in-out infinite alternate;
}
.orb-gold { width: 500px; height: 500px; background: rgba(250, 204, 21, 0.15); }
.orb-purple { width: 600px; height: 600px; background: rgba(168, 85, 247, 0.12); }
.orb-cyan { width: 450px; height: 450px; background: rgba(34, 211, 238, 0.12); }

/* =========================================
   4. ANNOUNCEMENT BAR
   ========================================= */
.announcement-bar {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  color: var(--text-muted);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.announcement-bar .badge-pulse {
  background: var(--gold-gradient);
  color: #000;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   5. GLASS NAVIGATION
   ========================================= */
.navigation {
  position: sticky;
  top: 15px;
  z-index: 1000;
  margin: 0 auto;
  width: 95%;
  max-width: 1200px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 12px 30px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFF;
  letter-spacing: -0.5px;
}
.logo-text span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: #FFF;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

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

.cta-button {
  background: var(--primary);
  color: #050505 !important;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-button::after { display: none; } /* Remove underline */

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #0A0A0A;
  z-index: 2000;
  padding: 30px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.mobile-menu.active { right: 0; }
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.menu-close {
  font-size: 1.5rem;
  color: #FFF;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}
.mobile-nav a:hover { color: #FFF; padding-left: 10px; }

/* =========================================
   6. CINEMATIC HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 30px;
  animation: slideUpFade 0.8s ease-out;
}
.hero-tag i { color: var(--accent); }

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 25px;
  animation: slideUpFade 1s ease-out 0.1s backwards;
}
.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
  animation: slideUpFade 1s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUpFade 1s ease-out 0.3s backwards;
}

.btn-secondary-outline {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: #FFF;
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  perspective: 1000px;
  animation: slideUpFade 1.2s ease-out 0.4s backwards;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
}
.hero-image-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-glow);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  animation: floatOrb 6s ease-in-out infinite;
}
.badge-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
}
.badge-info h5 { font-size: 1.2rem; margin-bottom: 2px; }
.badge-info p { font-size: 0.85rem; color: var(--text-muted); }

/* =========================================
   7. BENTO BOX / PREMIUM GRIDS (Global)
   ========================================= */
.section-padding { padding: 120px 5%; position: relative; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.section-subtitle {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 20px; }

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary);
  transition: var(--transition);
}
.bento-card:hover .card-icon {
  background: var(--primary);
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

/* Specific Grid Spans */
.col-span-12 { grid-column: span 12; }
.col-span-8 { grid-column: span 8; }
.col-span-6 { grid-column: span 6; }
.col-span-4 { grid-column: span 4; }

@media (max-width: 992px) {
  .col-span-8, .col-span-6, .col-span-4 { grid-column: span 12; }
}

/* =========================================
   8. RESTAURANT SOLUTIONS SPECIFIC
   ========================================= */
.feature-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: var(--transition);
}
.feature-box:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--card-border-hover);
  transform: translateY(-3px);
}
.feature-box-icon {
  font-size: 1.5rem;
  color: var(--accent-secondary);
}
.feature-box h4 { font-size: 1.1rem; margin-bottom: 5px; }
.feature-box p { font-size: 0.9rem; color: var(--text-muted); }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  margin-top: 60px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.video-showcase {
  width: min(100%, 1000px);
  margin: 32px auto 0;
  transition: width 0.3s ease;
}

.video-showcase-portrait,
.video-showcase.is-video-portrait {
  width: min(100%, var(--video-portrait-width, 420px));
}

.solution-video-player {
  overflow: hidden;
  background: #050507;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
}

.video-player-heading {
  min-height: 76px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #111114;
  border-bottom: 1px solid var(--border);
}

.video-player-heading h3 {
  margin: 3px 0 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.video-player-kicker {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-player-format {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.video-player-format i {
  color: var(--accent-secondary);
}

.video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: var(--video-aspect, 16 / 9);
  background: #000;
  transition: aspect-ratio 0.3s ease;
}

.video-showcase-portrait .video-stage,
.video-showcase.is-video-portrait .video-stage {
  aspect-ratio: var(--video-aspect, 9 / 16);
}

.video-stage video,
.video-stage iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-stage video {
  object-fit: contain;
}

.video-stage video[poster] {
  object-fit: contain;
}

.youtube-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  cursor: pointer;
}

.youtube-video-poster[hidden] {
  display: none;
}

.youtube-video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  font-size: 1.65rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.youtube-video-poster:hover .youtube-video-play-icon,
.youtube-video-poster:focus-visible .youtube-video-play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: #cc0000;
}

.youtube-video-poster:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.video-playlist-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: #111114;
  border-top: 1px solid var(--border);
}

.video-playlist-controls[hidden] {
  display: none;
}

.video-choice {
  min-height: 60px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #18181c;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
}

.video-choice i {
  width: 28px;
  flex: 0 0 28px;
  color: var(--accent-secondary);
  font-size: 1rem;
  text-align: center;
}

.video-choice span,
.video-choice strong {
  display: block;
}

.video-choice strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: 0.82rem;
}

.video-choice.active {
  border-color: var(--accent);
  background: rgba(250, 204, 21, 0.08);
  color: #fff;
}

.video-choice:focus-visible {
  outline: 3px solid rgba(250, 204, 21, 0.35);
  outline-offset: 2px;
}

/* =========================================
   9. FORMS & INPUTS
   ========================================= */
.premium-form {
  display: grid;
  gap: 20px;
}
.input-group input, .input-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: #FFF;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.input-group input:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}

/* =========================================
   10. PWA BANNER
   ========================================= */
.pwa-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 15px 25px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  width: max-content;
  max-width: 90vw;
  animation: slideUpFade 0.5s ease-out;
}
.pwa-icon { font-size: 1.5rem; color: var(--accent); }
.pwa-info strong { display: block; color: #FFF; }
.pwa-info span { font-size: 0.8rem; color: var(--text-muted); }
.pwa-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: 10px;
}
.pwa-close-btn:hover { color: #FFF; }

/* =========================================
   11. FOOTER
   ========================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 5% 40px;
  background: rgba(0,0,0,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.footer-desc { color: var(--text-muted); margin-top: 20px; max-width: 300px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 25px; }
.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--accent); padding-left: 5px; }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* =========================================
   12. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
  .nav-links, .theme-toggle-btn { display: none; }
  .mobile-menu-btn { display: block; }
  
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }
  .floating-badge { left: 10px; right: 10px; bottom: -30px; }
  
  .bento-card { padding: 30px 20px; }
  .section-padding { padding: 80px 20px; }

  .video-player-heading {
    min-height: 68px;
    padding: 13px 14px;
  }

  .video-player-format {
    display: none;
  }

  .video-playlist-controls {
    grid-template-columns: 1fr;
  }
  
  .footer-grid { grid-template-columns: 1fr; }
  
  .pwa-banner { flex-direction: column; text-align: center; bottom: 20px; width: 90vw; border-radius: var(--radius-lg); }
  .pwa-banner .pwa-close-btn { position: absolute; top: 10px; right: 15px; }
}

/* Admin Dashboard Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.data-table th, .data-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  color: var(--text-light);
  font-weight: 600;
}

/* Services Grid Fallback */
.services-grid, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
