/* ============================================
   MYSTIC GROVE - CREATIVE ARTISTIC DESIGN
   Modern Tech Store with Artistic Flair
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - CREATIVE ARTISTIC STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2E3192;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2E3192 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00D4FF, #2E3192);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2E3192;
}

h4 {
  font-size: 18px;
  color: #34495e;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: #00D4FF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2E3192;
  transform: translateY(-2px);
}

strong {
  font-weight: 700;
  color: #2E3192;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(46, 49, 146, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #00D4FF;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(2deg);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  color: #2E3192;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00D4FF;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover::before,
.main-nav a.active::before {
  width: 80%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #00D4FF;
  background: rgba(0, 212, 255, 0.1);
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2E3192, #00D4FF);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(46, 49, 146, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #2E3192 0%, #1a1d5c 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: white;
  color: #2E3192;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(0, 212, 255, 0.2);
  padding-left: 30px;
  color: #00D4FF;
}

/* ============================================
   BUTTONS - CREATIVE ARTISTIC STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #2E3192, #00D4FF);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 49, 146, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: white;
  color: #2E3192;
  border: 2px solid #2E3192;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #2E3192;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(46, 49, 146, 0.3);
}

.btn-link {
  color: #00D4FF;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover::after {
  margin-left: 12px;
}

/* ============================================
   HERO SECTION - VIBRANT & CREATIVE
   ============================================ */

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  background: none;
  -webkit-text-fill-color: white;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   PAGE HERO - FOR INNER PAGES
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #2E3192 0%, #00D4FF 100%);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: white;
  font-size: 42px;
  -webkit-text-fill-color: white;
  background: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs span {
  color: #00D4FF;
  font-weight: 600;
}

/* ============================================
   SECTIONS - FLEXBOX LAYOUTS
   ============================================ */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   CARD LAYOUTS - FLEXBOX ONLY
   ============================================ */

.category-grid,
.values-grid,
.services-grid,
.product-grid,
.features-grid,
.testimonials-grid,
.bundles-grid,
.guide-grid,
.scenarios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

/* ============================================
   CATEGORY CARDS - ARTISTIC STYLE
   ============================================ */

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 30px rgba(46, 49, 146, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.category-card:hover::before {
  transform: scale(1);
}

.category-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.category-card h3 {
  color: #2E3192;
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.category-card p {
  color: #5a6c7d;
  font-size: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

/* ============================================
   VALUE PROPOSITION CARDS
   ============================================ */

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.value-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(46, 49, 146, 0.15);
}

.value-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2E3192;
}

.value-item p {
  font-size: 14px;
  color: #5a6c7d;
  line-height: 1.6;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 24px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2E3192, #00D4FF);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(46, 49, 146, 0.15);
  border-color: #00D4FF;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2E3192;
}

.service-card p {
  color: #5a6c7d;
  margin-bottom: 16px;
}

.service-card .price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #00D4FF;
  margin-top: 16px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.product-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.2);
}

.product-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

.product-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #F0F4F8 0%, #e0e7ef 100%);
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image-placeholder::before {
  content: '📱';
  font-size: 64px;
  opacity: 0.3;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2E3192;
}

.product-specs {
  font-size: 13px;
  color: #7f8c8d;
  margin-bottom: 12px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #00D4FF;
  margin: 12px 0;
}

.product-rating {
  font-size: 14px;
  color: #f39c12;
  margin-bottom: 16px;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ============================================
   TESTIMONIALS - DARK TEXT FOR READABILITY
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #F0F4F8 0%, #e8f0f7 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  color: #2E3192;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(46, 49, 146, 0.1);
  position: relative;
  margin-bottom: 24px;
  border-left: 4px solid #00D4FF;
}

.testimonial-card .rating {
  color: #f39c12;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  color: #2E3192;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
  font-style: normal;
}

.trust-score {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-score strong {
  font-size: 36px;
  color: #00D4FF;
  display: block;
  margin-bottom: 8px;
}

.trust-score .source {
  font-size: 14px;
  color: #7f8c8d;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2E3192, #00D4FF);
  color: white;
  border-radius: 50%;
  line-height: 60px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2E3192;
}

.step p {
  font-size: 14px;
  color: #5a6c7d;
}

/* ============================================
   FILTER SIDEBAR
   ============================================ */

.filter-sidebar {
  flex: 0 0 250px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-sidebar h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: #2E3192;
  border-bottom: 2px solid #00D4FF;
  padding-bottom: 12px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #2E3192;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  color: #2c3e50;
  font-size: 14px;
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #00D4FF;
}

/* ============================================
   PRODUCTS MAIN AREA
   ============================================ */

.products-main {
  flex: 1 1 calc(100% - 280px);
  min-width: 0;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.results-count {
  color: #5a6c7d;
  font-size: 14px;
}

.sort-select {
  padding: 10px 16px;
  border: 2px solid #e0e7ef;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  background: white;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.sort-select:hover,
.sort-select:focus {
  border-color: #00D4FF;
  outline: none;
}

/* ============================================
   TABS NAVIGATION
   ============================================ */

.category-tabs {
  background: white;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tabs-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 12px 24px;
  background: #F0F4F8;
  border: 2px solid transparent;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2E3192;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab-btn:hover,
.tab-btn.active {
  background: linear-gradient(135deg, #2E3192, #00D4FF);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* ============================================
   FEATURE ITEMS
   ============================================ */

.feature-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(46, 49, 146, 0.12);
}

.feature-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 14px;
  color: #5a6c7d;
}

/* ============================================
   BUNDLE CARDS
   ============================================ */

.bundle-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(46, 49, 146, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 24px;
}

.bundle-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: #00D4FF;
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.bundle-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2E3192;
}

.bundle-card p {
  font-size: 14px;
  color: #5a6c7d;
  margin-bottom: 16px;
}

.bundle-price {
  margin: 20px 0;
}

.bundle-price .old-price {
  text-decoration: line-through;
  color: #95a5a6;
  font-size: 18px;
  margin-right: 8px;
}

.bundle-price strong {
  font-size: 28px;
  color: #00D4FF;
}

.savings {
  display: inline-block;
  background: #2ECC71;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================
   CONTACT FORMS
   ============================================ */

.contact-form-section {
  background: white;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background: #F0F4F8;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  border-left: 4px solid #00D4FF;
}

.form-note p {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 8px;
}

/* ============================================
   LOCATION & MAP
   ============================================ */

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
}

.location-details {
  flex: 1 1 400px;
}

.location-details p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.map-placeholder {
  flex: 1 1 400px;
  background: #F0F4F8;
  border-radius: 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-hero {
  background: linear-gradient(135deg, #2E3192 0%, #00D4FF 100%);
  padding: 60px 20px;
  margin-bottom: 40px;
  color: white;
}

.legal-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.legal-content {
  background: white;
  padding: 40px 20px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #F0F4F8;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2E3192;
}

.legal-section h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2E3192;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
}

.legal-section ul li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
}

.legal-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00D4FF;
  font-weight: 700;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  color: white;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: #2ECC71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2E3192 0%, #1a1d5c 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #00D4FF;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #2ECC71;
  color: white;
}

.cookie-btn-accept:hover {
  background: #27AE60;
}

.cookie-btn-reject {
  background: #E74C3C;
  color: white;
}

.cookie-btn-reject:hover {
  background: #C0392B;
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.cookie-btn-settings:hover {
  background: white;
  color: #2E3192;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E74C3C;
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #C0392B;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #2E3192;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F0F4F8;
  border-radius: 15px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2E3192;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #5a6c7d;
  margin-bottom: 8px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2ECC71;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #95a5a6;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-buttons .btn {
  flex: 1;
  min-width: 150px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #2E3192 0%, #1a1d5c 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D4FF, #2E3192, #00D4FF);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-section h4 {
  color: #00D4FF;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #00D4FF;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Card layouts - stack on mobile */
  .category-card,
  .value-item,
  .service-card,
  .product-card,
  .feature-item,
  .testimonial-card,
  .bundle-card,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Filter sidebar - full width on mobile */
  .filter-sidebar {
    flex: 1 1 100%;
    position: static;
  }
  
  .products-main {
    flex: 1 1 100%;
  }
  
  /* Location content - stack */
  .location-content {
    flex-direction: column;
  }
  
  .location-details,
  .map-placeholder {
    flex: 1 1 100%;
  }
  
  /* Footer - stack sections */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent - stack */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-consent-buttons .btn {
    flex: 1;
    min-width: 120px;
  }
  
  /* Process steps - stack */
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .category-card,
  .value-item,
  .feature-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .product-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .bundle-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}