/* ===== GLOBAL STYLES - MASTRIQ GREEN THEME ===== */
:root {
  /* Mastriq Green Primary Color - #76b900 */
  --primary: #76b900;
  --primary-dark: #5a8c00;
  --primary-light: rgba(118, 185, 0, 0.15);
  --primary-glow: rgba(118, 185, 0, 0.15);
  
  /* Dark Theme Variables */
  --bg-deep: #0a0c12;
  --bg-dark: #0f1117;
  --bg-card: #1a1f2a;
  --border-dark: #2a2f3a;
  --text-white: #ffffff;
  --text-light: #cbd5e1;
  --text-muted: #8b92a8;
  
  /* Light Theme Variables */
  --bg-white: #ffffff;
  --bg-gray: #f9fafb;
  --border-light: #eaeaea;
  --text-dark: #1a1a1a;
  --text-gray: #4a4a4a;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #0a0c12;
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  gap: 0.7rem;
  box-shadow: 0 5px 15px var(--primary-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.4rem 1.2rem;
  border-radius: 60px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-title .highlight {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .btn-primary, .btn-secondary {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* ===== REMOVE BLUR FROM SPECIFIC ELEMENTS ===== */
.carousel-nav.prev,
.carousel-nav.next,
.gallery-badge,
.video-modal {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}