/* Digimultivision Custom WordPress Theme Stylesheet */

/* Core Design Tokens & Reset */
:root {
  --color-bg-main: #050505;
  --color-bg-secondary: #080C14;
  --color-bg-card: #0E1320;
  --color-bg-hover: #151D30;
  --color-border: rgba(31, 41, 61, 0.8);
  --color-accent-indigo: #4F46E5;
  --color-accent-cyan: #06B6D4;
  --color-accent-emerald: #10B981;
  --color-text-main: #FFFFFF;
  --color-text-muted: #9CA3AF;
  --color-text-subtle: #6B7280;
  --font-jakarta: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-inter: 'Inter', system-ui, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  font-family: var(--font-inter);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-jakarta);
  margin: 0;
}

/* Layout Container */
.dmv-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography & Utility Classes */
.font-sans { font-family: var(--font-inter); }
.font-jakarta { font-family: var(--font-jakarta); }

.text-gradient {
  background: linear-gradient(135deg, #818CF8 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-glass {
  background: rgba(13, 17, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.border-subtle {
  border: 1px solid rgba(31, 41, 61, 0.8);
}

/* Header & Sticky Nav */
.dmv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

.dmv-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31, 41, 61, 0.8);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.dmv-nav-link {
  color: #D1D5DB;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dmv-nav-link:hover {
  color: #FFFFFF;
}

/* Buttons */
.dmv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.dmv-btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.4);
}

.dmv-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0E1320;
  color: #D1D5DB;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(31, 41, 61, 0.8);
  transition: all 0.3s ease;
}

.dmv-btn-secondary:hover {
  background: #151D30;
  color: #FFFFFF;
}

/* Cards & Grid Systems */
.dmv-card {
  background: #0E1320;
  border: 1px solid rgba(31, 41, 61, 0.8);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.dmv-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-3px);
}

.dmv-grid-4 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dmv-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .dmv-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Hero Section */
.dmv-hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: #050505;
}

.dmv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: #111622;
  border: 1px solid #1F293D;
  color: #06B6D4;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* FAQ Accordion */
.dmv-faq-item {
  background: #0E1320;
  border: 1px solid rgba(31, 41, 61, 0.8);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.dmv-faq-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dmv-faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: #9CA3AF;
  font-size: 0.875rem;
  display: none;
}

.dmv-faq-item.active .dmv-faq-content {
  display: block;
}

/* Responsive Visibility Helpers */
@media (max-width: 1023px) {
  .hidden-mobile { display: none !important; }
  .show-mobile { display: inline-flex !important; }
}

@media (min-width: 1024px) {
  .hidden-mobile { display: flex !important; }
  .show-mobile { display: none !important; }
}

/* Floating WhatsApp Badge */
.dmv-whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.dmv-whatsapp-float:hover {
  transform: scale(1.05);
  background: #20bd5a;
}
