/* ========================================
   STELLAR MENTOR - PLAYFUL & DYNAMIC CSS
   Design Style: Bright, Animated, Energetic
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1E3A8A;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

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: #374151;
}

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

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

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

a:hover {
  color: #F59E0B;
  transform: translateX(3px);
}

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

/* HEADER */
header {
  background: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
  animation: slide-down 0.5s ease;
}

@keyframes slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
  animation: bounce-in 0.8s ease;
}

@keyframes bounce-in {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  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: rgba(245, 158, 11, 0.3);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  background: #F59E0B;
  color: #1E3A8A;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #F59E0B 0%, #f59e0bdd 100%);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: linear-gradient(135deg, #0EA5E9 0%, #1E3A8A 100%);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F59E0B;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0EA5E9 0%, #1E3A8A 100%);
  padding: 80px 20px;
  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(245, 158, 11, 0.1) 0%, transparent 70%);
  animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease;
  -webkit-text-fill-color: #ffffff;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 24px;
  color: #F59E0B;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fade-in-up 0.8s ease 0.2s both;
}

.hero p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 32px;
  animation: fade-in-up 0.8s ease 0.4s both;
}

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

.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;
}

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

.btn-primary {
  background: linear-gradient(135deg, #F59E0B 0%, #f59e0bdd 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #0EA5E9 0%, #1E3A8A 100%);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1E3A8A;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fade-in-up 0.8s ease 0.6s both;
}

/* TRUST INDICATORS */
.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.8s both;
}

.trust-indicators span {
  color: #ffffff;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: #F59E0B;
  transform: scale(1.1);
}

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

.page-hero {
  background: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.page-hero p {
  color: #ffffff;
  font-size: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* BENEFITS SECTION */
.benefits {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  padding: 60px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}

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

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #F59E0B, #0EA5E9, #1E3A8A);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.3);
}

.benefit-card h3 {
  color: #1E3A8A;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #64748b;
  font-size: 14px;
}

/* SERVICES GRID */
.services-preview {
  padding: 60px 20px;
  text-align: center;
}

.services-preview h2 {
  margin-bottom: 40px;
  font-size: 40px;
}

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

.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  transition: all 0.3s ease;
  border: 3px solid #0EA5E9;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.3);
  border-color: #F59E0B;
}

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

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #F59E0B;
  margin: 16px 0;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #F59E0B 0%, #f59e0bdd 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  animation: float 20s linear infinite;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
  transform: scale(1.1) rotate(-3deg);
  background: rgba(255, 255, 255, 0.3);
}

.stat-item h3 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 8px;
  -webkit-text-fill-color: #ffffff;
}

.stat-item p {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  border-left: 6px solid #F59E0B;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: #0EA5E9;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.2);
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #1E3A8A;
  font-size: 14px;
  text-align: right;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  animation: pulse-glow 3s ease infinite;
}

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

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
  -webkit-text-fill-color: #ffffff;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

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

.service-detail {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.service-detail:hover {
  border-color: #F59E0B;
  transform: translateX(10px);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.2);
}

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

.service-detail .price {
  font-size: 36px;
  font-weight: 700;
  color: #F59E0B;
  margin: 16px 0;
  display: inline-block;
  padding: 8px 24px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50px;
}

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

.service-detail li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F59E0B;
  font-weight: 700;
  font-size: 18px;
}

.timeline {
  font-weight: 600;
  color: #0EA5E9;
  margin-top: 16px;
}

/* ABOUT CONTENT */
.about-content {
  padding: 40px 20px;
}

.text-section {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  border-left: 6px solid #0EA5E9;
  transition: all 0.3s ease;
}

.text-section:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.2);
}

.text-section h2 {
  color: #1E3A8A;
  margin-bottom: 20px;
}

.text-section ul {
  margin-top: 16px;
}

.text-section li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
}

.text-section li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #F59E0B;
}

/* PROJECTS */
.projects {
  padding: 40px 20px;
}

.project-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  border: 3px solid #0EA5E9;
  transition: all 0.3s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.2);
  border-color: #F59E0B;
}

.project-card h3 {
  color: #1E3A8A;
  margin-bottom: 12px;
}

.project-type {
  display: inline-block;
  padding: 8px 16px;
  background: #F59E0B;
  color: #ffffff;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.project-card .testimonial {
  font-style: italic;
  color: #1E3A8A;
  padding: 16px;
  background: rgba(30, 58, 138, 0.05);
  border-radius: 12px;
  margin-top: 16px;
  border-left: 4px solid #F59E0B;
}

/* PORTFOLIO STATS */
.portfolio-stats {
  background: linear-gradient(135deg, #0EA5E9 0%, #1E3A8A 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.portfolio-stats .stats-grid {
  gap: 24px;
}

.portfolio-stats .stat-item {
  background: rgba(255, 255, 255, 0.2);
}

/* TECH CONTENT */
.tech-content {
  padding: 40px 20px;
}

.tech-section {
  margin-bottom: 60px;
}

.tech-section h2 {
  color: #1E3A8A;
  margin-bottom: 32px;
  text-align: center;
  font-size: 36px;
}

.tech-card {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, #F59E0B, #0EA5E9);
  border-radius: 20px 0 0 20px;
  transition: height 0.3s ease;
}

.tech-card:hover::before {
  height: 100%;
}

.tech-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.2);
  border-color: #F59E0B;
}

.tech-card h3 {
  color: #1E3A8A;
  margin-bottom: 16px;
}

.tech-card ul {
  margin-top: 16px;
}

.tech-card li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
}

.tech-card li::before {
  content: '⚡';
  position: absolute;
  left: 0;
}

.tech-card strong {
  color: #F59E0B;
}

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

.contact-info {
  margin-bottom: 60px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  border-left: 6px solid #F59E0B;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.2);
}

.contact-card h3 {
  color: #1E3A8A;
  margin-bottom: 12px;
}

.contact-card p {
  color: #374151;
  font-size: 16px;
}

.contact-options {
  margin-bottom: 60px;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.option-card {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  border: 3px solid #0EA5E9;
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.2);
  border-color: #F59E0B;
}

.option-card h3 {
  color: #1E3A8A;
  margin-bottom: 16px;
}

.option-card strong {
  color: #F59E0B;
}

.showroom-info {
  background: linear-gradient(135deg, #F59E0B 0%, #f59e0bdd 100%);
  padding: 40px;
  border-radius: 20px;
  color: #ffffff;
  margin-bottom: 40px;
}

.showroom-info h2 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 20px;
}

.showroom-info p {
  color: #ffffff;
  margin-bottom: 12px;
}

.showroom-info ul {
  margin-top: 16px;
}

.showroom-info li {
  color: #ffffff;
  padding: 8px 0;
}

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

.legal-section {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  border-left: 6px solid #0EA5E9;
  transition: all 0.3s ease;
}

.legal-section:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.15);
}

.legal-section h2 {
  color: #1E3A8A;
  margin-bottom: 16px;
}

.legal-section ul {
  margin-top: 16px;
}

.legal-section li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F59E0B;
  font-size: 24px;
}

.update-date {
  color: #64748b;
  font-style: italic;
  font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #F59E0B 0%, #f59e0bdd 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  animation: check-pulse 2s ease infinite;
}

@keyframes check-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.thank-you-content {
  position: relative;
  z-index: 1;
}

.thank-you-content h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-content .subtitle {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}

.thank-you-content p {
  color: #ffffff;
  font-size: 18px;
}

.confirmation-message {
  padding: 60px 20px;
  text-align: center;
}

.confirmation-message h2 {
  margin-bottom: 40px;
  font-size: 36px;
}

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

.step {
  flex: 1 1 220px;
  max-width: 250px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
  border: 3px solid #0EA5E9;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: #F59E0B;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.2);
}

.step h3 {
  color: #1E3A8A;
  font-size: 18px;
}

.while-waiting {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  padding: 60px 20px;
}

.while-waiting h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

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

.action-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.2);
}

.action-card h3 {
  color: #1E3A8A;
  margin-bottom: 16px;
}

.action-card .btn {
  margin-top: 16px;
}

.social-proof {
  padding: 60px 20px;
  text-align: center;
}

.social-proof h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.back-navigation {
  padding: 60px 20px;
  text-align: center;
}

.back-navigation h2 {
  margin-bottom: 32px;
}

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

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-col h4 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
}

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

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

.footer-nav a {
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.footer-nav a:hover {
  color: #F59E0B;
  transform: translateX(5px);
  border-bottom-color: #F59E0B;
}

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

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

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: slide-up 0.5s ease 1s forwards;
}

@keyframes slide-up {
  to { transform: translateY(0); }
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.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 300px;
  color: #ffffff;
}

.cookie-text p {
  color: #ffffff;
  margin-bottom: 0;
}

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

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

.btn-accept {
  background: #F59E0B;
  color: #ffffff;
  border: none;
}

.btn-accept:hover {
  background: #ffffff;
  color: #1E3A8A;
}

.btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-reject:hover {
  background: #ffffff;
  color: #1E3A8A;
}

.btn-settings {
  background: transparent;
  color: #ffffff;
  border: 2px solid #F59E0B;
}

.btn-settings:hover {
  background: #F59E0B;
  color: #ffffff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modal-pop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modal-pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content h2 {
  color: #1E3A8A;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #f0f9ff;
  border-radius: 12px;
  border-left: 4px solid #0EA5E9;
}

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

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

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cbd5e1;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #F59E0B;
}

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

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

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

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

.modal-buttons .btn {
  flex: 1 1 140px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Section adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .section {
    padding: 32px 20px;
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .stats-grid,
  .testimonials-grid,
  .actions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-card,
  .service-card,
  .stat-item,
  .testimonial-card,
  .action-card {
    max-width: 100%;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner adjustments */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Modal adjustments */
  .modal-content {
    padding: 24px;
  }
  
  /* Card hover effects reduced on mobile */
  .benefit-card:hover,
  .service-card:hover,
  .project-card:hover,
  .tech-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .section {
    padding: 24px 16px;
  }
  
  .service-detail,
  .text-section,
  .project-card,
  .contact-card,
  .option-card,
  .legal-section {
    padding: 24px;
  }
  
  .trust-indicators {
    gap: 16px;
  }
  
  .trust-indicators span {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* ANIMATIONS */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ACCESSIBILITY */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #F59E0B;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}