/* ===================================
   NOTEBOOKPRO - VIBRANT ENERGETIC CSS
   Electric colors, dynamic layouts, bold fonts, high energy
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - Bold & Energetic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a3a5c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #d84b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulseGlow 2s ease-in-out infinite;
}

h2 {
  font-size: 32px;
  color: #2C5F8D;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #1a3a5c;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #2d3436;
}

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

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

ol {
  list-style-position: inside;
  margin-bottom: 16px;
}

strong {
  font-weight: 700;
  color: #1a3a5c;
}

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

/* ANIMATIONS */
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}

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

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.8), 0 0 40px rgba(255, 107, 107, 0.4); }
  50% { box-shadow: 0 0 30px rgba(255, 107, 107, 1), 0 0 60px rgba(255, 107, 107, 0.6); }
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1a3a5c 0%, #2C5F8D 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #ff6b6b;
  transform: translateX(10px);
}

/* HEADER */
header {
  background: linear-gradient(135deg, #1a3a5c 0%, #2C5F8D 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #ff6b6b;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.logo:hover img {
  transform: scale(1.1) rotate(-5deg);
}

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

.main-nav a {
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: rgba(255, 107, 107, 0.3);
  transform: translateY(-2px);
}

/* BUTTONS - Energetic & Bold */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}

.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 ease, height 0.6s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #6bcf7f 0%, #5ab572 100%);
  color: white;
  box-shadow: 0 6px 25px rgba(107, 207, 127, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(107, 207, 127, 0.6);
}

.btn-small {
  padding: 12px 24px;
  font-size: 14px;
}

/* HERO SECTION - Dynamic & Eye-catching */
.hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #2C5F8D 50%, #5DADE2 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 207, 127, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: bounce 4s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  font-size: 56px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-description {
  text-align: center;
  font-size: 18px;
  color: #636e72;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #2C5F8D 0%, #5DADE2 100%);
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::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"><rect fill="rgba(255,255,255,0.05)" width="50" height="50"/></svg>');
  opacity: 0.5;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: white;
}

.page-header h1 {
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.page-meta {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* CARDS - Dynamic & Vibrant */
.benefits-grid,
.services-grid,
.features-grid,
.products-grid,
.areas-grid,
.posts-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card,
.service-card,
.feature-item,
.product-card,
.area-card,
.post-card,
.method-card,
.value-card,
.action-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.benefit-card::before,
.service-card::before,
.product-card::before,
.area-card::before,
.post-card::before,
.method-card::before,
.value-card::before,
.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f, #5DADE2);
}

.benefit-card:hover,
.service-card:hover,
.product-card:hover,
.area-card:hover,
.post-card:hover,
.method-card:hover,
.value-card:hover,
.action-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.3);
  border-color: #ff6b6b;
}

.benefit-card h3,
.service-card h3,
.feature-item h3,
.product-card h3,
.area-card h3,
.post-card h3,
.method-card h3,
.value-card h3,
.action-card h3 {
  margin-bottom: 12px;
  color: #1a3a5c;
}

.benefit-card p,
.service-card p,
.feature-item p,
.product-card p,
.area-card p,
.post-card p,
.method-card p,
.value-card p,
.action-card p {
  color: #636e72;
  margin-bottom: 16px;
}

.service-price,
.product-price {
  font-size: 28px;
  font-weight: 700;
  color: #ff6b6b;
  margin: 20px 0;
  text-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);
}

.post-meta {
  display: block;
  font-size: 14px;
  color: #95a5a6;
  margin-top: 12px;
}

/* TESTIMONIALS - Readable Dark Text */
.testimonials {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #ff6b6b;
  position: relative;
}

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

.testimonial-author {
  font-weight: 700;
  color: #1a3a5c;
  font-size: 16px;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #1a3a5c 0%, #2C5F8D 100%);
  padding: 60px 20px;
  text-align: center;
}

.stats h2 {
  color: white;
}

.stats h2::after {
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  margin: 12px auto 0;
  left: 50%;
  transform: translateX(-50%);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #ffd93d;
  margin-bottom: 8px;
  text-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: bounce 6s ease-in-out infinite;
}

.cta-banner h2,
.cta-section h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-banner h2::after,
.cta-section h2::after {
  display: none;
}

.cta-banner p,
.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info {
  color: white;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 24px;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.text-section h2 {
  margin-top: 0;
}

.values-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 600;
  color: #2C5F8D;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.benefit-item {
  padding: 12px 20px;
  background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 100%);
  border-radius: 8px;
  border-left: 4px solid #5DADE2;
  font-weight: 600;
  color: #1a3a5c;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #ff6b6b;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.2);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: #1a3a5c;
}

.faq-item p {
  color: #636e72;
  margin-bottom: 0;
}

/* BLOG */
.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.featured-posts .post-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
  border: 3px solid #ff6b6b;
}

.topics-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.topic-tag {
  padding: 12px 24px;
  background: linear-gradient(135deg, #5DADE2 0%, #4a9cd4 100%);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(93, 173, 226, 0.3);
}

.topic-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(93, 173, 226, 0.5);
}

/* CONTACT */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.contact-method {
  flex: 1 1 300px;
  max-width: 400px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #ff6b6b;
}

.contact-method h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.location-details {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

/* THANK YOU PAGE */
.thank-you-header {
  background: linear-gradient(135deg, #6bcf7f 0%, #5ab572 100%);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content h1 {
  color: white;
  font-size: 64px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: bounce 2s ease-in-out infinite;
}

.success-message {
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.steps-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6bcf7f, #5DADE2);
}

.confirmation-note {
  text-align: center;
  font-size: 14px;
  color: #95a5a6;
  margin-top: 30px;
}

.trust-elements {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.trust-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #6bcf7f;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1a3a5c 0%, #0f2439 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #ffd93d;
  margin-bottom: 16px;
  font-size: 20px;
}

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

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

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

.footer-nav a:hover {
  color: #ffd93d;
  transform: translateX(5px);
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3a5c 0%, #2C5F8D 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #ff6b6b;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 300px;
  color: white;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-accept {
  background: linear-gradient(135deg, #6bcf7f 0%, #5ab572 100%);
  color: white;
}

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

.btn-settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.4s ease;
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #1a3a5c;
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #5DADE2;
}

.cookie-category h3 {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #6bcf7f;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 14px;
  color: #636e72;
  margin: 0;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .benefits-grid,
  .services-grid,
  .features-grid,
  .products-grid,
  .areas-grid,
  .posts-grid,
  .methods-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .product-card,
  .area-card,
  .post-card,
  .method-card {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  .cta-banner h2,
  .cta-section h2 {
    font-size: 28px;
  }
  
  .thank-you-content h1 {
    font-size: 42px;
  }
  
  .steps-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .service-price,
  .product-price {
    font-size: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .btn,
  .cta-banner,
  .cta-section {
    display: none;
  }
}