/* ========================================
   BRIGHTGAZE SPORTS - CREATIVE ARTISTIC CSS
   Dynamic, Energetic, Motivating Design
   ======================================== */

/* 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2B2D42;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2B2D42;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #D67F2E;
  transform: translateX(3px);
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  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, #C41E2A, #E63946);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(196, 30, 42, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E63946, #C41E2A);
  box-shadow: 0 6px 20px rgba(196, 30, 42, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #2B2D42;
  border: 2px solid #2B2D42;
}

.btn-secondary:hover {
  background: #2B2D42;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* HEADER */
header {
  background: linear-gradient(135deg, #2B2D42 0%, #1a1b2e 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #C41E2A, #D67F2E);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D67F2E;
  transform: translateX(0);
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact span {
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C41E2A, #E63946);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(196, 30, 42, 0.4);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #C41E2A;
  border-color: #C41E2A;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: rgba(196, 30, 42, 0.2);
  border-left-color: #D67F2E;
  padding-left: 30px;
  transform: translateX(0);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(196, 30, 42, 0.95) 0%, rgba(214, 127, 46, 0.95) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232B2D42" width="1200" height="600"/><path fill="%23C41E2A" opacity="0.1" d="M0 300L50 325L100 300L150 350L200 325L250 375L300 350L350 400L400 375L450 325L500 350L550 300L600 325L650 350L700 375L750 325L800 350L850 300L900 325L950 350L1000 325L1050 300L1100 325L1150 350L1200 300V600H0Z"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 127, 46, 0.2) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  animation: slideInUp 0.8s ease-out 0.5s both;
}

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

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: fadeIn 1s ease-out 0.8s both;
}

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

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

.breadcrumbs a:hover {
  color: #D67F2E;
}

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

.features,
.services,
.testimonials,
.cta-banner {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.features {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C41E2A, #D67F2E, #C41E2A);
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #2B2D42;
}

/* FLEXBOX GRIDS */
.features-grid,
.services-grid,
.testimonials-grid,
.category-grid,
.value-grid,
.trust-grid,
.blog-grid,
.contact-grid,
.stats-grid,
.specialist-grid,
.summary-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* CARDS */
.feature-card,
.service-card,
.testimonial-card,
.category-card,
.value-item,
.trust-item,
.blog-card,
.contact-card,
.stat-card,
.specialist-card,
.summary-box,
.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.feature-card::before,
.service-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C41E2A, #D67F2E);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before,
.service-card:hover::before,
.category-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover,
.service-card:hover,
.category-card:hover,
.blog-card:hover,
.contact-card:hover,
.action-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(196, 30, 42, 0.2);
  border-color: #D67F2E;
}

.feature-card img,
.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(196, 30, 42, 0.3));
}

.feature-card h3,
.service-card h3,
.category-card h3,
.blog-card h3,
.contact-card h3,
.specialist-card h3,
.summary-box h3,
.action-card h3 {
  color: #2B2D42;
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card p,
.service-card p,
.category-card p,
.blog-card p,
.contact-card p {
  color: #495057;
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .price {
  display: block;
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #C41E2A;
  letter-spacing: 1px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #2B2D42 0%, #1a1b2e 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: 50px;
  font-size: 300px;
  font-family: Georgia, serif;
  color: rgba(214, 127, 46, 0.1);
  line-height: 1;
}

.testimonials h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #D67F2E, #C41E2A);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #D67F2E;
}

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

.testimonial-card .author {
  color: #D67F2E;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.rating {
  text-align: center;
  margin-top: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #D67F2E;
  position: relative;
  z-index: 1;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(196, 30, 42, 0.95), rgba(214, 127, 46, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%232B2D42" width="1200" height="400"/><circle fill="%23C41E2A" opacity="0.1" cx="200" cy="200" r="150"/><circle fill="%23D67F2E" opacity="0.1" cx="800" cy="100" r="120"/><circle fill="%23C41E2A" opacity="0.1" cx="1000" cy="300" r="100"/></svg>');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-radius: 20px;
  margin: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.cta-banner h2,
.cta-banner p,
.cta-banner .store-info {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-banner h2::after {
  background: #FFFFFF;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.store-info {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
  margin: 30px auto;
  max-width: 600px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.store-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

.store-info strong {
  color: #D67F2E;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

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

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C41E2A, #E63946);
  color: #FFFFFF;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(196, 30, 42, 0.4);
}

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

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

/* STATS */
.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #C41E2A, #E63946);
  color: #FFFFFF;
  border: none;
}

.stat-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

/* BLOG */
.blog-card {
  flex: 1 1 calc(50% - 24px);
}

.excerpt {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.meta {
  font-size: 13px;
  color: #868e96;
  font-style: italic;
}

.category-tag {
  display: inline-block;
  background: linear-gradient(135deg, #C41E2A, #E63946);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin: 6px;
  transition: all 0.3s ease;
}

.category-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(196, 30, 42, 0.4);
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2B2D42;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.legal-content th {
  background: linear-gradient(135deg, #2B2D42, #1a1b2e);
  color: #FFFFFF;
  padding: 16px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-content td {
  padding: 14px 16px;
  border-bottom: 1px solid #e9ecef;
}

.legal-content tr:hover {
  background: #f8f9fa;
}

/* FORM NOTE */
.form-note {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-left: 4px solid #D67F2E;
  padding: 24px;
  border-radius: 8px;
  margin: 30px 0;
}

.form-note p {
  color: #2B2D42;
  margin-bottom: 12px;
}

.form-note strong {
  color: #C41E2A;
}

/* THANK YOU */
.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 30px;
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
  animation: checkmark 0.6s ease-out;
}

@keyframes checkmark {
  0% { transform: scale(0) rotate(-45deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0); }
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(90deg, rgba(196, 30, 42, 0.05), rgba(214, 127, 46, 0.05));
  border-radius: 12px;
}

.timeline span {
  flex: 1 1 200px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  padding: 12px 20px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #C41E2A;
}

/* FAQ */
.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #C41E2A;
}

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

.faq-item p {
  color: #495057;
  line-height: 1.7;
}

/* VALUE ITEMS */
.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.value-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(196, 30, 42, 0.3));
}

.value-item p {
  color: #495057;
  font-size: 15px;
}

/* TRUST ITEMS */
.trust-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, rgba(196, 30, 42, 0.05), rgba(214, 127, 46, 0.05));
  padding: 20px;
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2B2D42;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.trust-item:hover {
  border-color: #D67F2E;
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(196, 30, 42, 0.1), rgba(214, 127, 46, 0.1));
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2B2D42 0%, #1a1b2e 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
  position: relative;
}

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

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

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

.footer-column h4 {
  color: #D67F2E;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #D67F2E;
  padding-left: 10px;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2B2D42 0%, #1a1b2e 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

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

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2B2D42;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(196, 30, 42, 0.1);
  color: #C41E2A;
  transform: rotate(90deg);
}

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

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

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

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background: #cbd5e0;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #C41E2A;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .main-nav,
  .header-contact {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .category-card,
  .blog-card,
  .contact-card,
  .stat-card,
  .specialist-card,
  .summary-box,
  .action-card,
  .value-item,
  .trust-item {
    flex: 1 1 100%;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature-card,
  .service-card,
  .category-card,
  .blog-card,
  .contact-card,
  .specialist-card,
  .summary-box,
  .action-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-card,
  .value-item {
    flex: 1 1 calc(50% - 24px);
  }
}

/* SMOOTH ANIMATIONS */
* {
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #D67F2E;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #D67F2E;
  outline-offset: 2px;
}

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