@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Retro-Futuristic Cooling Theme */
:root {
  --sky-blue: #87CEEB;
  --electric-teal: #008B8B;
  --clean-white: #FFFFFF;
  --cool-gradient-start: #87CEEB;
  --cool-gradient-end: #008B8B;
  --text-dark: #1a202c;
  --text-light: #f7fafc;
  --accent-glow: rgba(135, 206, 235, 0.3);
  --shadow-cool: rgba(0, 139, 139, 0.2);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Typography */
.font-display {
  font-family: 'Poppins', sans-serif;
}

.text-hero {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.text-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Retro-Futuristic Elements */
.cool-gradient-bg {
  background: linear-gradient(135deg, var(--cool-gradient-start) 0%, var(--cool-gradient-end) 100%);
}

.cool-gradient-text {
  background: linear-gradient(135deg, var(--cool-gradient-start) 0%, var(--cool-gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glow-effect {
  box-shadow: 0 0 20px var(--accent-glow);
  transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
  box-shadow: 0 0 30px var(--accent-glow);
}

/* Hero Section Styles */
.hero-retro {
  min-height: 100vh;
  background: linear-gradient(135deg, 
    var(--sky-blue) 0%, 
    rgba(135, 206, 235, 0.8) 50%, 
    var(--electric-teal) 100%);
  position: relative;
  overflow: hidden;
}

.hero-retro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 139, 139, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top:50px;
}

/* Navigation Styles */
.nav-retro {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(135, 206, 235, 0.3);
  transition: all 0.3s ease;
}

.nav-retro.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px var(--shadow-cool);
}

.nav-link {
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-teal);
  transition: width 0.3s ease;
}

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

/* Button Styles */
.btn-retro-primary {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--electric-teal) 100%);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-cool);
  white-space: nowrap;
}

.btn-retro-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-cool);
  background: linear-gradient(135deg, var(--electric-teal) 0%, var(--sky-blue) 100%);
}

.btn-retro-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-dark);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--sky-blue);
  cursor: pointer;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.btn-retro-secondary:hover {
  background: var(--sky-blue);
  color: white;
  transform: translateY(-2px);
}

/* Card Styles */
.card-retro {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px var(--shadow-cool);
  transition: all 0.3s ease;
  border: 1px solid rgba(135, 206, 235, 0.2);
  height: 100%;
}
.card-retro.card-contacts {
  height:auto;
}

.card-retro:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--shadow-cool);
}

.card-service {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(135, 206, 235, 0.1) 100%);
  border-radius: 24px;
  padding: 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(135, 206, 235, 0.3);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--electric-teal));
}

.card-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-cool);
}

/* Section Styles */
.section-retro {
  padding: 100px 0;
  position: relative;
}

.section-retro:nth-child(even) {
  background: linear-gradient(135deg, 
    rgba(135, 206, 235, 0.3) 0%, 
    rgba(0, 139, 139, 0.3) 100%);
}

/* Stats Section */
.stats-retro {
  background: var(--cool-gradient-bg);
  /* color: white; */
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonial-retro {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px var(--shadow-cool);
  border-left: 4px solid var(--sky-blue);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--electric-teal);
}

/* Form Styles */
.form-retro {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px var(--shadow-cool);
  border: 1px solid rgba(135, 206, 235, 0.2);
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(135, 206, 235, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

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

/* Footer Styles */
.footer-retro {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2d3748 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--sky-blue);
}

/* Cookie Banner Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(26, 32, 44, 0.95);
  backdrop-filter: blur(20px);
  color: white;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(135, 206, 235, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--sky-blue);
}

.cookie-banner-text {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

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

.cookie-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--sky-blue);
  color: white;
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

/* Utility Classes */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.gradient-text {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--electric-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .text-hero {
    font-size: 2.5rem;
  }
  
  .text-section-title {
    font-size: 2rem;
  }
  
  .section-retro {
    padding: 60px 0;
  }
  
  .card-retro {
    padding: 24px;
  }
  
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .text-hero {
    font-size: 2rem;
  }
  
  .btn-retro-primary,
  .btn-retro-secondary {
    width: 100%;
    justify-content: center;
  }
}