/* ========================================
   SOFT PASTEL DESIGN - ICY VOYAGE TRANSLATIONS
   Modern, dreamy translation service website
   ======================================== */

/* 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.7;
  color: #5a5a5a;
  background: linear-gradient(135deg, #fef6f9 0%, #f0f4ff 50%, #f9fafe 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* SOFT PASTEL TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #9b7fb8;
  margin-bottom: 16px;
  line-height: 1.3;
}

h1 {
  font-size: 42px;
  color: #c89bd1;
  text-shadow: 2px 2px 8px rgba(200, 155, 209, 0.15);
}

h2 {
  font-size: 32px;
  color: #a594d1;
}

h3 {
  font-size: 24px;
  color: #9b7fb8;
}

p {
  margin-bottom: 16px;
  color: #6a6a6a;
}

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

a:hover {
  color: #c89bd1;
}

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

/* HEADER - SOFT PASTEL THEME */
header {
  background: linear-gradient(135deg, #fdf5ff 0%, #f5f0ff 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(165, 148, 209, 0.08);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 155, 209, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 8px rgba(165, 148, 209, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAVIGATION - DREAMY STYLE */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  color: #7a7a7a;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #9b7fb8;
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  box-shadow: 0 4px 15px rgba(155, 127, 184, 0.15);
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE - SOFT PASTEL */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  border: 2px solid rgba(200, 155, 209, 0.2);
  color: #9b7fb8;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(155, 127, 184, 0.2);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(155, 127, 184, 0.3);
}

/* MOBILE MENU OVERLAY - DREAMY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #fef6f9 0%, #f5f0ff 50%, #fdf5ff 100%);
  box-shadow: -5px 0 30px rgba(155, 127, 184, 0.2);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  border: 2px solid rgba(200, 155, 209, 0.2);
  color: #9b7fb8;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #7a7a7a;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 155, 209, 0.1);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  color: #9b7fb8;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(155, 127, 184, 0.15);
}

/* HERO SECTION - SOFT PASTEL */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef6f9 0%, #f0f4ff 50%, #f9fafe 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 155, 209, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

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

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #c89bd1;
  text-shadow: 3px 3px 10px rgba(200, 155, 209, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: #8a8a8a;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

/* BUTTONS - SOFT PASTEL */
.btn-primary,
.btn-secondary {
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #d4b5e8 0%, #c89bd1 100%);
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(200, 155, 209, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(200, 155, 209, 0.4);
  background: linear-gradient(135deg, #e0c7f0 0%, #d4b5e8 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  color: #9b7fb8;
  border: 2px solid rgba(200, 155, 209, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #f5f0ff 0%, #fef6f9 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(155, 127, 184, 0.2);
  border-color: rgba(200, 155, 209, 0.5);
}

/* TRUST BADGES - DREAMY */
.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  color: #9b7fb8;
  font-weight: 500;
  border: 1px solid rgba(200, 155, 209, 0.2);
  box-shadow: 0 4px 15px rgba(155, 127, 184, 0.1);
}

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

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

.center-text {
  text-align: center;
  margin: 30px 0;
  color: #8a8a8a;
}

/* LANGUAGE SECTION */
.languages {
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(155, 127, 184, 0.1);
  text-align: center;
}

.language-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.language-pair {
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  padding: 20px 40px;
  border-radius: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #9b7fb8;
  border: 2px solid rgba(200, 155, 209, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 127, 184, 0.1);
}

.language-pair:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(155, 127, 184, 0.2);
  background: linear-gradient(135deg, #f5f0ff 0%, #fef6f9 100%);
}

/* SERVICE CARDS - DREAMY STYLE */
.service-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.service-detail-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(155, 127, 184, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 155, 209, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(155, 127, 184, 0.2);
  border-color: rgba(200, 155, 209, 0.3);
}

.service-card img,
.service-detail-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(2px 2px 8px rgba(165, 148, 209, 0.2));
}

.service-card h3,
.service-detail-card h3 {
  color: #9b7fb8;
  margin-bottom: 12px;
}

.service-card p,
.service-detail-card p {
  color: #7a7a7a;
  line-height: 1.7;
}

.service-card .price,
.service-detail-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #c89bd1;
  margin: 16px 0;
}

.service-link {
  color: #a594d1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #c89bd1;
  transform: translateX(5px);
}

.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-detail-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #7a7a7a;
}

.service-detail-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c89bd1;
  font-weight: 700;
}

/* VALUE CARDS */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card,
.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(155, 127, 184, 0.1);
  border: 1px solid rgba(200, 155, 209, 0.15);
  margin-bottom: 20px;
}

.value-card h3,
.value-item h3 {
  color: #9b7fb8;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p,
.value-item p {
  color: #7a7a7a;
}

/* TESTIMONIALS - SOFT PASTEL */
.testimonials {
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.testimonial-grid,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(155, 127, 184, 0.12);
  border: 2px solid rgba(200, 155, 209, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 60px;
  color: rgba(200, 155, 209, 0.2);
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px solid rgba(200, 155, 209, 0.2);
}

.testimonial-author strong {
  color: #9b7fb8;
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.testimonial-author br + text,
.testimonial-author strong + br + text {
  color: #4a4a4a;
  font-size: 14px;
}

/* TRUST METRICS */
.trust-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.trust-metrics span {
  background: rgba(255, 255, 255, 0.7);
  padding: 16px 32px;
  border-radius: 20px;
  font-weight: 600;
  color: #9b7fb8;
  border: 1px solid rgba(200, 155, 209, 0.2);
  box-shadow: 0 4px 15px rgba(155, 127, 184, 0.1);
}

/* STATS & METRICS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.stat-card,
.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(155, 127, 184, 0.1);
  border: 1px solid rgba(200, 155, 209, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card strong,
.stat-item strong {
  font-size: 36px;
  color: #c89bd1;
  display: block;
  font-weight: 700;
}

.stat-card span,
.stat-item span {
  color: #7a7a7a;
  font-size: 14px;
}

/* CTA SECTIONS - DREAMY */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #d4b5e8 0%, #c89bd1 50%, #a594d1 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(155, 127, 184, 0.3);
  margin: 60px 0;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-banner p,
.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background: #ffffff;
  color: #9b7fb8;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #fef6f9;
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

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

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #fef6f9 0%, #f0f4ff 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(155, 127, 184, 0.1);
}

.page-hero h1 {
  font-size: 42px;
  color: #c89bd1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #8a8a8a;
}

/* CONTACT FORMS - SOFT PASTEL */
.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(155, 127, 184, 0.15);
}

.form-field {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full-width {
  flex: 1 1 100%;
}

.form-field label {
  color: #9b7fb8;
  font-weight: 600;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 18px;
  border: 2px solid rgba(200, 155, 209, 0.2);
  border-radius: 15px;
  font-size: 15px;
  color: #6a6a6a;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #c89bd1;
  box-shadow: 0 4px 15px rgba(200, 155, 209, 0.2);
  background: #ffffff;
}

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

.form-note {
  text-align: center;
  color: #8a8a8a;
  font-size: 13px;
  margin-top: 16px;
}

/* PRICING TABLE */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(155, 127, 184, 0.12);
}

.price-table thead {
  background: linear-gradient(135deg, #d4b5e8 0%, #c89bd1 100%);
}

.price-table thead th {
  padding: 20px;
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

.price-table tbody tr {
  background: #ffffff;
  transition: all 0.3s ease;
}

.price-table tbody tr:nth-child(even) {
  background: #fef6f9;
}

.price-table tbody tr:hover {
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  transform: scale(1.02);
}

.price-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(200, 155, 209, 0.1);
  color: #6a6a6a;
}

.price-table tbody td:first-child {
  font-weight: 600;
  color: #9b7fb8;
}

/* 404 ERROR PAGE */
.error-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #c89bd1;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 15px rgba(200, 155, 209, 0.2);
}

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

.page-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(155, 127, 184, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 155, 209, 0.1);
  text-align: center;
  margin-bottom: 20px;
}

.page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(155, 127, 184, 0.2);
}

.page-card h3 {
  color: #9b7fb8;
  margin-bottom: 12px;
}

.page-card p {
  color: #7a7a7a;
  font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef6f9 0%, #f0f4ff 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d4b5e8 0%, #c89bd1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ffffff;
  margin: 0 auto 30px;
  box-shadow: 0 8px 30px rgba(200, 155, 209, 0.3);
}

.lead {
  font-size: 20px;
  color: #9b7fb8;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(155, 127, 184, 0.1);
  border: 1px solid rgba(200, 155, 209, 0.15);
  text-align: center;
  margin-bottom: 20px;
}

.step-card h3 {
  color: #c89bd1;
  margin-bottom: 12px;
  font-size: 18px;
}

.step-card p {
  color: #7a7a7a;
  font-size: 14px;
}

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

.text-section {
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(155, 127, 184, 0.1);
  border: 1px solid rgba(200, 155, 209, 0.1);
}

.text-section h2 {
  color: #9b7fb8;
  margin-bottom: 16px;
  font-size: 26px;
}

.text-section h3 {
  color: #a594d1;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.text-section ul,
.text-section ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.text-section li {
  margin-bottom: 12px;
  color: #6a6a6a;
  line-height: 1.7;
}

.text-section strong {
  color: #9b7fb8;
  font-weight: 600;
}

/* FOOTER - SOFT PASTEL */
footer {
  background: linear-gradient(135deg, #f5f0ff 0%, #fef6f9 100%);
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 3px solid rgba(200, 155, 209, 0.2);
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col img {
  height: 45px;
  width: auto;
  margin-bottom: 12px;
  filter: drop-shadow(2px 2px 6px rgba(165, 148, 209, 0.2));
}

.footer-col h3 {
  color: #9b7fb8;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.8;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(200, 155, 209, 0.2);
}

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

/* COOKIE CONSENT BANNER - SOFT PASTEL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  padding: 25px;
  box-shadow: 0 -4px 30px rgba(155, 127, 184, 0.2);
  z-index: 1998;
  border-top: 2px solid rgba(200, 155, 209, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.7;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 20px;
  border: 2px solid rgba(200, 155, 209, 0.3);
  background: linear-gradient(135deg, #d4b5e8 0%, #c89bd1 100%);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 127, 184, 0.3);
}

.cookie-buttons button.secondary {
  background: transparent;
  color: #9b7fb8;
}

.cookie-buttons button.secondary:hover {
  background: linear-gradient(135deg, #fef6f9 0%, #f5f0ff 100%);
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #fef6f9 100%);
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 50px rgba(155, 127, 184, 0.3);
}

.cookie-modal h2 {
  color: #9b7fb8;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(200, 155, 209, 0.15);
}

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

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* MOBILE NAVIGATION */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* SECTIONS */
  section {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* CARDS */
  .service-card,
  .service-detail-card,
  .value-card,
  .value-item,
  .testimonial-card,
  .stat-card,
  .stat-item,
  .page-card,
  .step-card {
    flex: 1 1 100%;
  }
  
  /* LANGUAGE PAIRS */
  .language-pair {
    flex: 1 1 calc(50% - 20px);
  }
  
  /* FORM */
  .form-field {
    flex: 1 1 100%;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  /* TABLE */
  .price-table {
    font-size: 14px;
  }
  
  .price-table thead th,
  .price-table tbody td {
    padding: 12px;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* ERROR PAGE */
  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .language-pair {
    flex: 1 1 100%;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
}

/* UTILITY CLASSES */
.note,
.guarantee {
  text-align: center;
  font-size: 14px;
  color: #9b7fb8;
  font-style: italic;
  margin-top: 16px;
}

.response-time,
.response-note,
.availability {
  text-align: center;
  color: #c89bd1;
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
}

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

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.service-card,
.value-card,
.testimonial-card,
.stat-card {
  animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
  }
  
  * {
    box-shadow: none !important;
  }
}