/* ============================================
   SPARKLEWISE MOP - MONOCHROME SOPHISTICATED
   CSS STYLESHEET
   ============================================ */

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

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   ============================================ */

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

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

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

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

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

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

/* ============================================
   HEADER - SOPHISTICATED MONOCHROME
   ============================================ */

header {
  background-color: #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

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

.cta-button {
  background-color: #ffffff;
  color: #000000;
  padding: 12px 24px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.cta-button:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - SOPHISTICATED
   ============================================ */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  color: #000000;
  font-size: 24px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1100;
}

.mobile-menu-toggle:hover {
  background-color: #000000;
  color: #ffffff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #000000;
  z-index: 2000;
  transition: right 0.4s ease;
  padding: 80px 40px 40px;
  overflow-y: auto;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  color: #000000;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 16px;
  color: #cccccc;
}

/* ============================================
   HERO SECTION - DRAMATIC MONOCHROME
   ============================================ */

.hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.btn-primary {
  background-color: #ffffff;
  color: #000000;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-3px);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.trust-badges span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   PAGE HERO - ELEGANT
   ============================================ */

.page-hero {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #ffffff;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  color: #e0e0e0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   STATS & VALUE PROPOSITION
   ============================================ */

.value-proposition {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 48px;
}

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

.stat-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #ffffff;
  padding: 40px 24px;
  text-align: center;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background-color: #000000;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
  color: #ffffff;
}

.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333333;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: #e0e0e0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-preview,
.services-detailed {
  padding: 60px 20px;
  background-color: #ffffff;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.service-card-expanded {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #f5f5f5;
  padding: 32px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.service-card:hover,
.service-card-expanded:hover {
  background-color: #000000;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-card h3,
.service-card-expanded h3 {
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.service-card:hover h3,
.service-card-expanded:hover h3 {
  color: #ffffff;
}

.service-card p,
.service-card-expanded p {
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-card:hover p,
.service-card-expanded:hover p {
  color: #e0e0e0;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  font-family: 'Oswald', sans-serif;
  margin-top: 16px;
  display: block;
  transition: color 0.3s ease;
}

.service-card:hover .price,
.service-card-expanded:hover .price {
  color: #ffffff;
}

.service-card-expanded .btn-primary {
  margin-top: 16px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process,
.detailed-process {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.process-steps,
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step,
.phase {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #000000;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.phase:hover {
  background-color: #000000;
  transform: translateY(-8px);
}

.step-number,
.phase-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  line-height: 60px;
  text-align: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.step:hover .step-number,
.phase:hover .phase-number {
  background-color: #ffffff;
  color: #000000;
}

.step h3,
.phase h3 {
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.step:hover h3,
.phase:hover h3 {
  color: #ffffff;
}

.step p,
.phase p {
  font-size: 14px;
  transition: color 0.3s ease;
}

.step:hover p,
.phase:hover p {
  color: #e0e0e0;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials,
.testimonials-detailed {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #f5f5f5;
  padding: 32px;
  border: 2px solid #000000;
  border-left: 8px solid #000000;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.testimonial-card:hover {
  background-color: #000000;
  transform: translateX(8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-card p,
.testimonial-card .quote {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.testimonial-card:hover p,
.testimonial-card:hover .quote {
  color: #ffffff;
}

.author {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .author {
  color: #e0e0e0;
}

.rating {
  display: block;
  color: #000000;
  font-size: 20px;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .rating {
  color: #ffffff;
}

/* ============================================
   BENEFITS & LISTS
   ============================================ */

.benefits,
.tools-techniques {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.benefits-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  padding: 20px 20px 20px 60px;
  background-color: #ffffff;
  border: 2px solid #000000;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  position: relative;
  transition: all 0.3s ease;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  transition: color 0.3s ease;
}

.benefits-list li:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateX(8px);
}

.benefits-list li:hover::before {
  color: #ffffff;
}

/* ============================================
   CTA BANNER - DRAMATIC
   ============================================ */

.cta-banner {
  background-color: #000000;
  padding: 80px 20px;
  text-align: center;
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-banner p {
  color: #e0e0e0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.featured-post {
  padding: 60px 20px;
  background-color: #000000;
}

.post-featured {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background-color: #ffffff;
  border: 4px solid #000000;
  position: relative;
}

.badge {
  position: absolute;
  top: -16px;
  left: 32px;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category {
  display: inline-block;
  background-color: #f5f5f5;
  color: #000000;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid #000000;
}

.meta {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.blog-grid {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.post-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.post-card:hover {
  background-color: #000000;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.post-card h3 {
  margin-top: 16px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.post-card:hover h3 {
  color: #ffffff;
}

.post-card p {
  transition: color 0.3s ease;
}

.post-card:hover p {
  color: #e0e0e0;
}

.post-card .meta {
  transition: color 0.3s ease;
}

.post-card:hover .meta {
  color: #cccccc;
}

.categories {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.category-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #f5f5f5;
  padding: 32px;
  text-align: center;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.category-card:hover {
  background-color: #000000;
  transform: translateY(-8px);
}

.category-card h3 {
  transition: color 0.3s ease;
}

.category-card:hover h3 {
  color: #ffffff;
}

.category-card p {
  transition: color 0.3s ease;
}

.category-card:hover p {
  color: #e0e0e0;
}

/* ============================================
   SUCCESS STORIES
   ============================================ */

.success-stories {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.story-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #000000;
  border-top: 8px solid #000000;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.story-card:hover {
  background-color: #000000;
  transform: translateY(-8px);
}

.sport {
  display: inline-block;
  background-color: #f5f5f5;
  color: #000000;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid #000000;
}

.story-card:hover .sport {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

.story-card h3 {
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.story-card:hover h3 {
  color: #ffffff;
}

.story-card p {
  font-style: italic;
  margin: 16px 0;
  transition: color 0.3s ease;
}

.story-card:hover p {
  color: #e0e0e0;
}

.achievement {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.story-card:hover .achievement {
  color: #ffffff;
  border-top-color: #666666;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-methods {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.contact-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 32px;
  text-align: center;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background-color: #000000;
  transform: translateY(-8px);
}

.contact-card h3 {
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.contact-card:hover h3 {
  color: #ffffff;
}

.contact-card p {
  transition: color 0.3s ease;
}

.contact-card:hover p {
  color: #e0e0e0;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.form-info {
  max-width: 800px;
  margin: 0 auto;
}

.form-placeholder {
  background-color: #f5f5f5;
  padding: 48px 32px;
  border: 2px solid #000000;
  margin-top: 32px;
  text-align: center;
}

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

.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 40px;
  border: 2px solid #000000;
}

.text-section h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.text-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.text-section ul li {
  margin-bottom: 8px;
  padding-left: 8px;
}

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

.thank-you-hero {
  padding: 80px 20px;
  background-color: #000000;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  color: #000000;
  font-size: 48px;
  line-height: 80px;
  text-align: center;
  margin: 0 auto 24px;
  border: 4px solid #ffffff;
  font-weight: 700;
}

.thank-you-hero h1 {
  color: #ffffff;
}

.thank-you-hero p {
  color: #e0e0e0;
  font-size: 18px;
}

.next-steps {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.action-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 32px;
  text-align: center;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.action-card:hover {
  background-color: #000000;
  transform: translateY(-8px);
}

.action-card h3 {
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.action-card:hover h3 {
  color: #ffffff;
}

.action-card p {
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.action-card:hover p {
  color: #e0e0e0;
}

.meanwhile,
.resources {
  padding: 60px 20px;
  background-color: #ffffff;
}

/* ============================================
   VALUES & METHODOLOGY
   ============================================ */

.values,
.values-grid {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  padding: 0;
}

.value-card {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  text-align: center;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.value-card:hover {
  background-color: #000000;
  transform: translateY(-8px);
}

.value-card h3 {
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: #ffffff;
}

.value-card p {
  transition: color 0.3s ease;
}

.value-card:hover p {
  color: #e0e0e0;
}

/* ============================================
   FOOTER - SOPHISTICATED
   ============================================ */

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 4px solid #ffffff;
}

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

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.footer-column p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-column a {
  display: block;
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 9999;
  border-top: 2px solid #ffffff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

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

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-btn-accept {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-accept:hover {
  background-color: #000000;
  color: #ffffff;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
}

.cookie-btn-reject:hover {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #ffffff;
  border-style: dashed;
}

.cookie-btn-settings:hover {
  background-color: #ffffff;
  color: #000000;
  border-style: solid;
}

/* ============================================
   COOKIE SETTINGS MODAL
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #000000;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f5f5f5;
  border: 2px solid #000000;
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .tagline {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .cta-button {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero {
    padding: 60px 20px;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-badges {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-banner .container {
    flex-direction: column;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

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

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

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  a {
    text-decoration: underline;
  }
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}