/* ===================================
   NEATDASH TRANSLATIONS - PLAYFUL DYNAMIC CSS
   Design Style: Bright, Animated, Energetic
   =================================== */

/* 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: #2d3748;
  background: linear-gradient(135deg, #fff5e6 0%, #fffaed 100%);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  color: #1a4466;
  text-shadow: 3px 3px 0px #c78400;
  animation: bounceIn 1s ease;
}

h2 {
  font-size: 36px;
  color: #1a4466;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #c78400, #ff6b6b);
  border-radius: 3px;
  animation: slideIn 0.5s ease;
}

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

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

a {
  color: #1a4466;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* ANIMATIONS */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 80px; }
}

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

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

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

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

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

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

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

/* HEADER */
header {
  background: linear-gradient(135deg, #1a4466 0%, #2c5f8d 100%);
  padding: 20px 0;
  box-shadow: 0 8px 25px rgba(26, 68, 102, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideInLeft 0.8s ease;
}

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

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  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: #c78400;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(199, 132, 0, 0.4);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  border: none;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(199, 132, 0, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s ease infinite;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #ff6b6b, #c78400);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a4466 0%, #2c5f8d 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: #c78400;
  color: white;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #ff6b6b;
}

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

.mobile-nav a {
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: #c78400;
  transform: translateX(10px);
  border-color: #ffffff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #ff6b6b 0%, #c78400 50%, #4ecdc4 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px rgba(26, 68, 102, 0.5);
  animation: bounceIn 1.2s ease;
}

.hero-subheadline {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.trust-badges span {
  background: rgba(255, 255, 255, 0.95);
  color: #1a4466;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 3px solid #c78400;
}

.trust-badges span:hover {
  transform: translateY(-5px) scale(1.05);
  background: #c78400;
  color: white;
  animation: wiggle 0.5s ease;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, #1a4466, #2c5f8d);
  color: white;
  box-shadow: 0 8px 20px rgba(26, 68, 102, 0.4);
  border-color: #1a4466;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(26, 68, 102, 0.6);
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  animation: pulse 0.5s ease;
}

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

.btn-secondary:hover {
  background: white;
  color: #1a4466;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.5);
}

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

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

/* SERVICES GRID */
.services-overview {
  background: linear-gradient(135deg, #fffaed 0%, #fff5e6 100%);
  padding: 60px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease;
}

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

.service-card {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(199, 132, 0, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
  background: linear-gradient(135deg, #fff5e6, #ffffff);
}

.service-card h3 {
  color: #1a4466;
  margin-bottom: 16px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(199, 132, 0, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .price {
  transform: scale(1.1);
  animation: pulse 0.5s ease;
}

/* FEATURES */
.features {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  color: white;
  margin-bottom: 48px;
}

.features h2::after {
  background: white;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.feature:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: #c78400;
  animation: wiggle 0.5s ease;
}

.feature img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.feature:hover img {
  transform: rotate(360deg) scale(1.2);
}

.feature h3 {
  color: #1a4466;
  margin-bottom: 16px;
  font-size: 20px;
}

.feature p {
  color: #4a5568;
  font-size: 15px;
}

/* PROCESS STEPS */
.process {
  background: linear-gradient(135deg, #fffaed 0%, #fff5e6 100%);
  padding: 60px 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.step {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  text-align: center;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
}

.step-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(199, 132, 0, 0.4);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: rotate(360deg) scale(1.2);
  animation: pulse 0.5s ease;
}

.step h3 {
  color: #1a4466;
  margin-bottom: 16px;
  font-size: 20px;
}

.step p {
  color: #4a5568;
  font-size: 15px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  color: white;
  margin-bottom: 48px;
}

.testimonials h2::after {
  background: white;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: #c78400;
}

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

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-card .author strong {
  color: #1a4466;
  font-size: 18px;
  font-weight: 700;
}

.testimonial-card .author span {
  color: #4a5568;
  font-size: 14px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #c78400 50%, #4ecdc4 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  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: float 8s ease-in-out infinite;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 24px;
  font-size: 40px;
  position: relative;
  z-index: 1;
}

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

.cta-banner p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-info {
  margin-top: 24px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: white;
  margin-bottom: 20px;
}

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

/* SERVICES DETAILED */
.services-detailed {
  padding: 40px 20px;
}

.service-detail {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.service-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
}

.service-detail h2 {
  color: #1a4466;
  margin-bottom: 20px;
}

.service-meta {
  display: flex;
  gap: 24px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.service-meta .price,
.service-meta .turnaround {
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(199, 132, 0, 0.3);
}

.service-features {
  font-weight: 600;
  color: #4a5568;
  margin: 20px 0;
}

/* PRICING TABLE */
.pricing-table {
  padding: 40px 20px;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin: 32px 0;
}

.price-table tr {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.price-table tr:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(199, 132, 0, 0.3);
}

.price-table td {
  padding: 20px;
  color: #2d3748;
  font-size: 16px;
  border: none;
}

.price-table td:first-child {
  font-weight: 700;
  color: #1a4466;
  border-radius: 12px 0 0 12px;
}

.price-table td:nth-child(2) {
  font-weight: 700;
  color: #c78400;
}

.price-table td:last-child {
  color: #4a5568;
  font-weight: 600;
  border-radius: 0 12px 12px 0;
}

.note {
  font-size: 14px;
  color: #4a5568;
  font-style: italic;
  text-align: center;
  margin-top: 24px;
}

/* PRICING TIERS */
.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.tier {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.tier:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
}

.tier h3 {
  color: #1a4466;
  margin-bottom: 16px;
}

.tier p {
  color: #4a5568;
  margin-bottom: 20px;
}

.tier .multiplier {
  display: inline-block;
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
}

/* DISCOUNTS */
.discounts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.discount {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 24px 32px;
  border-radius: 20px;
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.discount:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
}

.discount .volume {
  font-size: 20px;
  font-weight: 700;
  color: #1a4466;
}

.discount .amount {
  font-size: 24px;
  font-weight: 800;
  color: #c78400;
  text-transform: uppercase;
}

/* COMPANY STORY */
.company-story,
.mission-values,
.team-stats,
.office-location {
  padding: 40px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.milestone {
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(199, 132, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.milestone:hover {
  transform: translateY(-10px) rotate(3deg);
}

.milestone .year {
  font-size: 36px;
  font-weight: 800;
  display: block;
}

.milestone span:last-child {
  font-size: 16px;
  font-weight: 600;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.value:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
}

.value h3 {
  color: #1a4466;
  margin-bottom: 16px;
}

.value p {
  color: #4a5568;
}

/* STATS GRID */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.stat {
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(199, 132, 0, 0.3);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  animation: pulse 0.5s ease;
}

.stat .number {
  font-size: 48px;
  font-weight: 800;
  display: block;
}

.stat .label {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

/* LOCATION INFO */
.location-info {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 40px;
  border-radius: 20px;
  max-width: 700px;
  margin: 32px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

/* PROCESS DETAILED */
.process-detailed {
  padding: 40px 20px;
}

.process-step-detail {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.process-step-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
}

.process-step-detail .step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(199, 132, 0, 0.4);
}

.process-step-detail h2 {
  margin-left: 80px;
  margin-bottom: 20px;
}

.process-step-detail .time {
  display: inline-block;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin: 16px 0;
}

.process-step-detail ul {
  margin: 20px 0;
  padding-left: 24px;
}

.process-step-detail li {
  margin-bottom: 12px;
  color: #4a5568;
  font-size: 15px;
}

/* DELIVERY METHODS */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.method {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.method:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
}

.method h3 {
  color: #1a4466;
  margin-bottom: 16px;
}

.method p {
  color: #4a5568;
  margin-bottom: 12px;
  font-size: 15px;
}

/* QUALITY PROCESS */
.quality-steps {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 40px;
  border-radius: 20px;
  max-width: 700px;
  margin: 32px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-steps li {
  padding: 16px 0;
  border-bottom: 2px solid #fffaed;
  color: #2d3748;
  font-size: 16px;
  font-weight: 600;
}

.quality-steps li:last-child {
  border-bottom: none;
}

.certification {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
  border-radius: 12px;
  font-weight: 700;
}

/* CONTACT CONTENT */
.contact-content {
  padding: 40px 20px;
}

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

.contact-form-section,
.contact-info-section {
  flex: 1 1 400px;
  max-width: 600px;
}

.form-wrapper {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border: 3px solid #fffaed;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #c78400;
  box-shadow: 0 0 20px rgba(199, 132, 0, 0.2);
  transform: translateY(-2px);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field.checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
}

.form-field.checkbox input {
  width: auto;
}

.form-note {
  font-size: 13px;
  color: #4a5568;
  margin-top: 16px;
  font-style: italic;
}

.privacy-link {
  margin-top: 12px;
  font-size: 13px;
}

.contact-details {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.contact-details p {
  margin-bottom: 16px;
  color: #2d3748;
  font-size: 16px;
}

.contact-details strong {
  color: #1a4466;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.office-visit {
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(199, 132, 0, 0.3);
}

.office-visit h3 {
  color: white;
  margin-bottom: 16px;
}

.office-visit p {
  color: white;
  margin-bottom: 12px;
}

/* MAP SECTION */
.map-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fffaed 0%, #fff5e6 100%);
}

.map-placeholder {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-placeholder p {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.directions {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.directions h3 {
  color: #1a4466;
  margin-bottom: 20px;
}

.directions p {
  margin-bottom: 12px;
  color: #2d3748;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
}

.legal-section {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.legal-section:hover {
  border-color: #c78400;
  box-shadow: 0 15px 40px rgba(199, 132, 0, 0.2);
}

.legal-section h2 {
  color: #1a4466;
  margin-bottom: 20px;
  font-size: 24px;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  margin-bottom: 16px;
  color: #2d3748;
  line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 12px;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: #4a5568;
  font-style: italic;
}

.contact-info {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}

/* RODO RIGHTS */
.rights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.right-item {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 24px;
  border-radius: 20px;
  flex: 1 1 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.right-item:hover {
  border-color: #c78400;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(199, 132, 0, 0.2);
}

.right-item h3 {
  color: #1a4466;
  margin-bottom: 12px;
  font-size: 18px;
}

.right-item p {
  color: #4a5568;
  font-size: 15px;
}

/* COOKIES TABLE */
.cookies-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin: 32px 0;
}

.cookies-table th {
  background: linear-gradient(135deg, #1a4466, #2c5f8d);
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.cookies-table th:first-child {
  border-radius: 12px 0 0 12px;
}

.cookies-table th:last-child {
  border-radius: 0 12px 12px 0;
}

.cookies-table td {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 16px;
  color: #2d3748;
  font-size: 14px;
}

.cookies-table tr:hover td {
  background: #fff5e6;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease;
}

.success-icon img {
  width: 60px;
  height: 60px;
}

.thank-you-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.thank-you-message {
  padding: 40px 20px;
}

.message-content {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-message {
  font-size: 20px;
  font-weight: 600;
  color: #1a4466;
  text-align: center;
  margin-bottom: 24px;
}

.response-time {
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 16px;
}

.next-steps {
  margin: 32px 0;
  padding-left: 24px;
}

.next-steps li {
  margin-bottom: 16px;
  color: #2d3748;
  font-size: 16px;
  font-weight: 600;
}

.what-now {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fffaed 0%, #fff5e6 100%);
}

.what-now h2 {
  text-align: center;
  margin-bottom: 40px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
  background: linear-gradient(135deg, #fff5e6, #ffffff);
}

.action-card h3 {
  color: #1a4466;
  font-size: 18px;
  margin-bottom: 0;
}

.action-card p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 0;
}

.contact-info-section {
  padding: 40px 20px;
  text-align: center;
}

.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-proof .stats-grid {
  margin-top: 0;
}

/* BENEFIT CARDS */
.service-benefits,
.benefits-grid {
  padding: 40px 20px;
}

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

.benefit {
  background: linear-gradient(135deg, #ffffff, #fffaed);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(199, 132, 0, 0.3);
  border-color: #c78400;
}

.benefit h3 {
  color: #1a4466;
  margin-bottom: 16px;
}

.benefit p {
  color: #4a5568;
}

/* VOLUME DISCOUNTS */
.volume-discounts {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fffaed 0%, #fff5e6 100%);
}

/* LANGUAGE PRICING */
.language-pricing {
  padding: 40px 20px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1a4466 0%, #2c5f8d 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-column {
  flex: 1 1 250px;
}

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

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

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

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a4466, #2c5f8d);
  padding: 24px;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: white;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #c78400, #ff6b6b);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(199, 132, 0, 0.4);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

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

.cookie-btn-settings:hover {
  background: white;
  color: #1a4466;
  transform: translateY(-3px);
}

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

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: bounceIn 0.5s ease;
}

.cookie-modal-content h3 {
  color: #1a4466;
  margin-bottom: 24px;
}

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

.cookie-category h4 {
  color: #1a4466;
  margin-bottom: 12px;
  font-size: 16px;
}

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

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

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

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

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

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .services-grid,
  .features-grid,
  .process-steps,
  .testimonials-grid,
  .pricing-tiers,
  .discounts-list,
  .methods-grid,
  .values-grid,
  .stats-grid,
  .milestones,
  .benefits-grid,
  .actions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .feature,
  .step,
  .testimonial-card,
  .tier,
  .discount,
  .method,
  .value,
  .stat,
  .milestone,
  .benefit,
  .action-card {
    max-width: 100%;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .price-table {
    font-size: 14px;
  }
  
  .price-table td {
    padding: 12px 8px;
  }
  
  .process-step-detail h2 {
    margin-left: 0;
    margin-top: 70px;
  }
  
  .process-step-detail .step-number {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero { padding: 60px 20px; }
  
  .btn { padding: 14px 28px; font-size: 14px; }
  
  .cookie-modal-content { padding: 24px; }
}