/* ============================================
   FRESHSCRUB - TECH FUTURISTIC CSS STYLES
   Design Style: Futuristic tech-inspired design
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1729 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

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

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00FFFF 0%, #FF8C42 100%);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

h3 {
  font-size: 24px;
  color: #00FFFF;
}

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

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

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

a:hover {
  color: #FF8C42;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #B8C5D6;
}

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

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

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

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0E27;
  border-color: #00FFFF;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0099FF 0%, #00FFFF 100%);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #00FFFF;
  border-color: #00FFFF;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  transition: filter 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00FFFF 0%, #FF8C42 100%);
  transition: width 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0E27;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  transform: scale(1.05);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #00FFFF;
  border: 2px solid #00FFFF;
  padding: 8px 14px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

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

.mobile-nav a {
  color: #B8C5D6;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #00FFFF;
  padding-left: 10px;
  border-bottom-color: rgba(0, 255, 255, 0.5);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-subheadline {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.badge img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.badge span {
  color: #B8C5D6;
  font-size: 14px;
  font-weight: 500;
}

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

.services-preview,
.benefits,
.testimonials,
.services-detailed,
.portfolio-grid,
.pricing-table,
.company-story,
.values,
.statistics,
.portfolio-intro,
.pricing-intro,
.contact-info,
.contact-form-section,
.service-area,
.legal-content,
.next-steps,
.useful-links,
.pricing-packages {
  padding: 60px 20px;
}

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

/* CARD STYLES */
.service-card,
.benefit-item,
.testimonial-card,
.project-card,
.price-item,
.value-item,
.contact-item,
.link-card,
.package-item {
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.service-card::before,
.benefit-item::before,
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover,
.benefit-item:hover,
.project-card:hover,
.link-card:hover,
.package-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.4);
}

.service-card:hover::before,
.benefit-item:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.service-card img,
.benefit-item img,
.contact-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.service-card h3,
.benefit-item h3,
.project-card h3 {
  margin-bottom: 16px;
  color: #00FFFF;
}

.service-card p,
.benefit-item p,
.project-card p {
  color: #B8C5D6;
  margin-bottom: 16px;
}

.price {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #FF8C42;
  background: rgba(255, 140, 66, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 12px;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.services-grid,
.benefits-grid,
.testimonials-grid,
.stats-grid,
.values-grid,
.contact-grid,
.steps-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.benefit-item,
.value-item,
.contact-item,
.step-item,
.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.testimonial-card,
.stat-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: rgba(26, 31, 58, 0.8);
  border-left: 4px solid #00FFFF;
  padding: 32px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}

.testimonial-author strong {
  color: #00FFFF;
  font-size: 16px;
}

.testimonial-author span {
  color: #B8C5D6;
  font-size: 14px;
}

/* SERVICE DETAIL */
.service-detail {
  margin-bottom: 40px;
  padding: 40px;
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.service-features li {
  padding-left: 30px;
  position: relative;
  color: #B8C5D6;
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00FFFF;
  font-size: 18px;
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  color: #FF8C42;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(255, 140, 66, 0.3);
}

/* STATISTICS */
.statistics {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
  padding: 60px 20px;
}

.stat-item {
  text-align: center;
  padding: 40px;
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #00FFFF;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #B8C5D6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  min-width: 150px;
}

.milestone .year {
  font-size: 32px;
  font-weight: 700;
  color: #00FFFF;
}

.milestone span:last-child {
  font-size: 14px;
  color: #B8C5D6;
}

/* PAGE HEADER */
.page-header {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #B8C5D6;
}

.breadcrumbs a {
  color: #00FFFF;
  transition: color 0.3s ease;
}

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

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
  text-align: center;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.cta-note {
  font-size: 14px;
  color: #B8C5D6;
  font-style: italic;
  margin-top: 16px;
}

/* PRICING */
.pricing-notes {
  background: rgba(0, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #00FFFF;
  margin-top: 24px;
}

.pricing-notes li {
  color: #B8C5D6;
  margin-bottom: 8px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 24px;
}

.price-item h3 {
  color: #00FFFF;
  margin-bottom: 12px;
}

.price-item .price {
  font-size: 32px;
  margin: 12px 0;
}

.price-item ul {
  padding-left: 0;
  list-style: none;
}

.price-item ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 8px;
}

.price-item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00FFFF;
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: #B8C5D6;
  font-style: italic;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: #FF8C42;
  margin: 20px 0;
  text-shadow: 0 0 20px rgba(255, 140, 66, 0.3);
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #00FFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #00FFFF;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  background: rgba(26, 31, 58, 0.8);
}

.form-input::placeholder {
  color: #6B7B8C;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

select.form-input {
  cursor: pointer;
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #00FFFF;
}

.form-field.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  color: #B8C5D6;
}

.form-note {
  font-size: 14px;
  color: #B8C5D6;
  margin-top: 16px;
  font-style: italic;
}

.response-note,
.trust-note {
  font-size: 14px;
  color: #00FFFF;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.lead {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 32px;
  line-height: 1.6;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0E27;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.step-item {
  text-align: center;
  padding: 32px;
}

/* LEGAL PAGES */
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

.legal-section h2 {
  color: #00FFFF;
  margin-bottom: 20px;
}

.legal-content .intro {
  background: rgba(0, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #00FFFF;
  margin-bottom: 40px;
  color: #B8C5D6;
}

/* FOOTER */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.tagline {
  color: #B8C5D6;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 16px;
}

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

.footer-col p {
  color: #B8C5D6;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #B8C5D6;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(0, 255, 255, 0.3);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0E27;
  border-color: #00FFFF;
}

.cookie-btn-accept:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transform: translateY(-2px);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: #00FFFF;
  border-color: #00FFFF;
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #1A1F3A 0%, #0A0E27 100%);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #00FFFF;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.cookie-toggle label {
  color: #B8C5D6;
  font-size: 14px;
  flex: 1;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(107, 123, 140, 0.3);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
}

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

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

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* PROJECT SCOPE */
.project-scope {
  font-size: 14px;
  color: #6B7B8C;
  margin-top: 12px;
  font-style: italic;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .value-item,
  .contact-item,
  .step-item,
  .link-card,
  .testimonial-card,
  .stat-item {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .package-price {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .benefit-item,
  .project-card,
  .price-item {
    padding: 24px;
  }
  
  .cookie-consent {
    padding: 16px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

.service-card,
.benefit-item,
.project-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6, p, li {
    color: black;
    text-shadow: none;
  }
}