/* ========================================
   CALM COINS RECHTSBERATUNG - TECH FUTURISTIC STYLE
   Modern, Professional Legal Services Design
   ======================================== */

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

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

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #E8F1F5;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

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

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

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

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

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

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

a:hover {
  color: #E8F1F5;
  text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

ul {
  list-style: none;
}

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

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

/* HEADER */
header {
  background: rgba(10, 26, 47, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.4));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.8));
  transform: scale(1.05);
}

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

.main-nav a {
  color: #E8F1F5;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A574, transparent);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4A574;
  border-color: rgba(212, 165, 116, 0.3);
  background: rgba(212, 165, 116, 0.1);
}

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

.header-cta {
  display: flex;
  gap: 16px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #1B4B5A, #D4A574);
  border: 2px solid #D4A574;
  color: #E8F1F5;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 165, 116, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #0a1a2f 0%, #1B4B5A 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 2px solid #D4A574;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(212, 165, 116, 0.2);
  border: 2px solid #D4A574;
  color: #E8F1F5;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(212, 165, 116, 0.4);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E8F1F5;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  background: rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(212, 165, 116, 0.2);
  border-color: #D4A574;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

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

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}

.btn-primary {
  background: linear-gradient(135deg, #D4A574 0%, #1B4B5A 100%);
  color: #E8F1F5;
  border-color: #D4A574;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.6);
}

.btn-secondary {
  background: rgba(232, 241, 245, 0.1);
  color: #E8F1F5;
  border-color: #E8F1F5;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(232, 241, 245, 0.2);
  border-color: #D4A574;
  color: #D4A574;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 241, 245, 0.3);
}

.btn-link {
  color: #D4A574;
  font-weight: 600;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  gap: 12px;
  text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.btn-link::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 26, 47, 0.9) 0%, rgba(27, 75, 90, 0.9) 100%);
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 241, 245, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #E8F1F5;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.badge {
  padding: 12px 24px;
  background: rgba(212, 165, 116, 0.2);
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 25px;
  color: #E8F1F5;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

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

section:nth-child(even) {
  background: rgba(10, 26, 47, 0.5);
}

section:nth-child(odd) {
  background: rgba(27, 75, 90, 0.3);
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(27, 75, 90, 0.6) 0%, rgba(10, 26, 47, 0.8) 100%);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
}

.service-card:hover::before {
  opacity: 1;
  top: -25%;
  right: -25%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #D4A574;
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.3);
}

.service-card h3 {
  color: #D4A574;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #E8F1F5;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #D4A574;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

/* FEATURES GRID */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: space-between;
}

.feature {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  padding: 32px;
  background: rgba(232, 241, 245, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(232, 241, 245, 0.1);
  border-color: #D4A574;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.feature h3 {
  color: #D4A574;
  margin-bottom: 12px;
  font-size: 20px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  background: rgba(10, 26, 47, 0.7);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(232, 241, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 16px;
  border: 2px solid #D4A574;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(27, 75, 90, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.4);
}

.testimonial-card p {
  color: #1B4B5A;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #1B4B5A;
  font-weight: 600;
  font-style: italic;
  margin-top: 20px;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #D4A574;
  font-weight: 600;
  margin-top: 40px;
  text-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(27, 75, 90, 0.9) 0%, rgba(212, 165, 116, 0.3) 100%);
  text-align: center;
  border-top: 2px solid rgba(212, 165, 116, 0.5);
  border-bottom: 2px solid rgba(212, 165, 116, 0.5);
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* PRICING */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(27, 75, 90, 0.7) 0%, rgba(10, 26, 47, 0.9) 100%);
  border-radius: 16px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #D4A574, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.pricing-card:hover::before {
  transform: translateX(100%);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #D4A574;
  box-shadow: 0 15px 50px rgba(212, 165, 116, 0.4);
}

.pricing-card h3 {
  color: #D4A574;
  margin-bottom: 20px;
  font-size: 24px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: #E8F1F5;
  margin: 24px 0;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
}

.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 241, 245, 0.1);
  color: #E8F1F5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-card li::before {
  content: '✓';
  color: #D4A574;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: space-between;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  padding: 32px;
  background: rgba(27, 75, 90, 0.4);
  border-radius: 12px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.team-member:hover {
  border-color: #D4A574;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.team-member h3 {
  color: #D4A574;
  margin-bottom: 12px;
  font-size: 22px;
}

/* STATS GRID */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(27, 75, 90, 0.4) 100%);
  border-radius: 12px;
  border: 2px solid rgba(212, 165, 116, 0.4);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.stat-card strong {
  display: block;
  font-size: 48px;
  color: #D4A574;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
}

.stat-card p {
  color: #E8F1F5;
  font-size: 14px;
}

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

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 32px;
  color: #D4A574;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(212, 165, 116, 0.3);
}

/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: space-between;
}

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: rgba(27, 75, 90, 0.5);
  border-radius: 12px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #D4A574;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.contact-method h3 {
  color: #D4A574;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-method strong {
  color: #E8F1F5;
  font-size: 18px;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  padding: 40px;
  background: rgba(27, 75, 90, 0.5);
  border: 2px dashed rgba(212, 165, 116, 0.4);
  border-radius: 12px;
  margin: 40px 0;
}

.form-placeholder ul {
  margin: 20px 0;
  padding-left: 20px;
}

.form-placeholder li {
  color: #E8F1F5;
  margin: 8px 0;
  list-style: disc;
}

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

.legal-content h2 {
  color: #D4A574;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.legal-content li {
  color: #E8F1F5;
  margin: 8px 0;
  list-style: disc;
}

/* ERROR PAGE */
.error-hero {
  text-align: center;
}

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

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #D4A574;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(212, 165, 116, 0.5);
  background: linear-gradient(135deg, #D4A574 0%, #E8F1F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-reasons {
  margin: 40px 0;
  padding-left: 20px;
}

.error-reasons li {
  color: #E8F1F5;
  margin: 12px 0;
  list-style: disc;
  font-size: 16px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  justify-content: space-between;
}

.link-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 150px;
  padding: 24px;
  background: rgba(27, 75, 90, 0.5);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 12px;
  text-align: center;
  color: #E8F1F5;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-card:hover {
  background: rgba(27, 75, 90, 0.7);
  border-color: #D4A574;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4A574, #E8F1F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #1B4B5A;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(212, 165, 116, 0.4);
  animation: scaleIn 0.6s ease;
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: rgba(27, 75, 90, 0.4);
  border-radius: 12px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  text-align: center;
}

.step strong {
  display: block;
  color: #D4A574;
  font-size: 24px;
  margin-bottom: 12px;
}

.phone-large {
  font-size: 36px;
  color: #D4A574;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.resource-link {
  padding: 20px 24px;
  background: rgba(27, 75, 90, 0.5);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 12px;
  color: #E8F1F5;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: rgba(27, 75, 90, 0.7);
  border-color: #D4A574;
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* SERVICE DETAIL */
.service-detail {
  padding: 40px;
  margin-bottom: 32px;
  background: rgba(27, 75, 90, 0.5);
  border-radius: 12px;
  border-left: 4px solid #D4A574;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
}

.service-detail h2 {
  color: #D4A574;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4A574;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

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

.service-detail li {
  color: #E8F1F5;
  margin: 12px 0;
  list-style: disc;
  padding-left: 8px;
}

.services-detailed .container {
  max-width: 900px;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 32px;
  background: rgba(27, 75, 90, 0.4);
  border-radius: 12px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  border-color: #D4A574;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.value-card h3 {
  color: #D4A574;
  margin-bottom: 16px;
  font-size: 22px;
}

/* PRICING FACTORS */
.pricing-factors ul {
  margin: 24px 0;
  padding-left: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-factors li {
  color: #E8F1F5;
  margin: 12px 0;
  list-style: disc;
  font-size: 16px;
}

/* FOOTER */
footer {
  background: rgba(10, 26, 47, 0.95);
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  padding: 60px 20px 20px;
  margin-top: 0;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
  color: #D4A574;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: #E8F1F5;
  line-height: 1.8;
  font-size: 14px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 26, 47, 0.98) 0%, rgba(27, 75, 90, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(212, 165, 116, 0.3);
  border-top: 2px solid rgba(212, 165, 116, 0.4);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: none;
}

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

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

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

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

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

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(27, 75, 90, 0.95) 0%, rgba(10, 26, 47, 0.95) 100%);
  border: 2px solid rgba(212, 165, 116, 0.4);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(212, 165, 116, 0.4);
}

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

.cookie-category {
  padding: 20px;
  margin: 16px 0;
  background: rgba(232, 241, 245, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

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

.cookie-category p {
  font-size: 14px;
  color: #E8F1F5;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(232, 241, 245, 0.2);
  border-radius: 13px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: #D4A574;
  border-color: #D4A574;
}

.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #E8F1F5;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::before {
  transform: translateX(24px);
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Layout adjustments */
  section {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .cta-section {
    padding: 60px 20px;
  }
  
  /* Grids to single column */
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid,
  .team-grid,
  .stats-grid,
  .contact-grid,
  .values-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .testimonial-card,
  .pricing-card,
  .team-member,
  .stat-card,
  .contact-method,
  .value-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Error page */
  .error-code {
    font-size: 80px;
  }
  
  /* Thank you page */
  .phone-large {
    font-size: 28px;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .service-card,
  .pricing-card,
  .service-detail {
    padding: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .badge {
    width: 100%;
    text-align: center;
  }
  
  .pricing-card .price {
    font-size: 36px;
  }
  
  .error-code {
    font-size: 60px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6, p {
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}