/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Roboto", sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #fff;
}

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

/* Header Styles */
.header {
  background-color: #ffffff;
  color: #7c3aed;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7c3aed;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav a:hover,
.nav a.active {
  color: #7c3aed;
  background-color: rgba(124, 58, 237, 0.05);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #7c3aed;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0 20h40M20 0v40" stroke="%237c3aed" stroke-width="0.5" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.steam-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.steam-icon {
  font-size: 1.2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #475569;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #7c3aed;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.steam-visual {
  width: 400px;
  height: 400px;
  position: relative;
}

.steam-generator {
  width: 180px;
  height: 240px;
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  border-radius: 20px 20px 40px 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: steam-pulse 2s ease-in-out infinite;
}

.steam-clouds {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
}

.cloud {
  width: 60px;
  height: 30px;
  background: rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  margin-bottom: 15px;
  animation: float-cloud 3s ease-in-out infinite;
}

.cloud:nth-child(1) {
  animation-delay: 0s;
  margin-left: 20px;
}

.cloud:nth-child(2) {
  animation-delay: 0.5s;
  margin-left: 40px;
}

.cloud:nth-child(3) {
  animation-delay: 1s;
  margin-left: 60px;
}

.cloud:nth-child(4) {
  animation-delay: 1.5s;
  margin-left: 80px;
}

.temperature-gauge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
  text-align: center;
}

.gauge-needle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#7c3aed 95%, #e5e7eb 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: relative;
}

.gauge-needle::before {
  content: "180°C";
  position: absolute;
  font-size: 0.8rem;
  font-weight: 700;
  color: #7c3aed;
}

.gauge-text {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #7c3aed;
  color: white;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  background-color: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
}

.btn-secondary:hover {
  background-color: rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #7c3aed;
  border: 1px solid #7c3aed;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-outline:hover {
  background-color: rgba(124, 58, 237, 0.05);
}

.btn-full {
  width: 100%;
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: block;
  color: #7c3aed;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Steam Technology */
.steam-technology {
  background-color: #ffffff;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
  position: relative;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.tech-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.tech-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
  font-weight: 700;
}

.tech-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tech-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(124, 58, 237, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.feature-label {
  font-size: 0.9rem;
  color: #64748b;
}

.feature-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #7c3aed;
}

/* Services Preview */
.services-preview {
  background-color: #faf5ff;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 700;
}

.services-text > p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.service-highlights {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-weight: 600;
}

.highlight-text p {
  color: #64748b;
  line-height: 1.6;
}

.services-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.steam-process {
  width: 350px;
  height: 350px;
  position: relative;
}

.process-step {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
  border: 2px solid #7c3aed;
}

.step-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.step-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.step-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.step-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.step-icon {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.step-label {
  font-size: 0.7rem;
  color: #7c3aed;
  font-weight: 600;
  text-align: center;
}

.process-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.center-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.center-text {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Steam Quality */
.steam-quality {
  background-color: #ffffff;
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.steam-monitor {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.monitor-container {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.monitor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.monitor-header h3 {
  font-size: 1.2rem;
  color: #1e293b;
  font-weight: 600;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-indicator span {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 600;
}

.monitor-metrics {
  display: grid;
  gap: 1rem;
}

.metric {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.metric-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.metric-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c3aed 0%, #8b5cf6 100%);
  border-radius: 4px;
  transition: width 2s ease;
}

.metric-value {
  font-size: 0.9rem;
  color: #7c3aed;
  font-weight: 600;
  text-align: right;
}

.quality-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 700;
}

.quality-text > p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.quality-features {
  display: grid;
  gap: 1.5rem;
}

.quality-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
  font-weight: 600;
}

.feature-text p {
  color: #64748b;
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  background-color: #faf5ff;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #7c3aed;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.step-content .step-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.step-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
  font-weight: 700;
}

.step-item p {
  color: #64748b;
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  margin-top: 120px;
}

.connector-line {
  height: 2px;
  width: 60px;
  background: #7c3aed;
  position: relative;
}

.connector-arrow {
  font-size: 1.5rem;
  color: #7c3aed;
  font-weight: bold;
  margin-left: -10px;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
  background-color: white;
  color: #7c3aed;
}

.cta-buttons .btn-primary:hover {
  background-color: #f9fafb;
}

.cta-buttons .btn-secondary {
  color: white;
  border-color: white;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
}

.feature-icon {
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: white;
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #7c3aed;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.steam-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.steam-badge-small {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info strong {
  color: white;
}

.contact-info a {
  color: #7c3aed;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.hours p {
  margin-bottom: 0.5rem;
  color: #94a3b8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7c3aed;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-legal p {
  color: #94a3b8;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #7c3aed;
}

.steam-footer-note {
  text-align: center;
  color: #7c3aed;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-content p {
  color: #475569;
  margin: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Animations */
@keyframes steam-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes float-cloud {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.7;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav li {
    border-bottom: 1px solid #f1f5f9;
  }

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

  .nav a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-content,
  .services-content,
  .quality-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    order: 1;
  }

  .hero-image,
  .services-visual,
  .quality-image {
    order: 0;
    margin-bottom: 2rem;
  }

  .steam-visual,
  .steam-process {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .steps-container {
    flex-direction: column;
  }
