


:root {
  --electric-blue: #0066ff;
  --deep-blue: #0044cc;
  --molten-orange: #ff6b35;
  --hot-orange: #ff4500;
  --chrome-silver: #e8e8e8;
  --metallic-dark: #1a1a2e;
  --radiator-copper: #c27a3c;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: #f8f9fa;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

a {
  transition: all 0.3s ease;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}


.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-blue) 50%, var(--metallic-dark) 100%);
  overflow: hidden;
}

.hero-section::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" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 102, 255, 0.3) 0%, rgba(255, 107, 53, 0.2) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}


.btn-primary-custom {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--molten-orange) 0%, var(--hot-orange) 100%);
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  color: var(--text-light);
}

.btn-primary-custom::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary-custom:hover::after {
  left: 100%;
}


.btn-secondary-custom {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--text-light);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.btn-secondary-custom:hover {
  background: var(--text-light);
  color: var(--electric-blue);
}


.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--molten-orange) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.logo-text span {
  color: var(--molten-orange);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
  background: rgba(255, 107, 53, 0.2);
}

.navbar-phone {
  display: flex;
  align-items: center;
  color: var(--molten-orange);
  font-weight: 600;
  text-decoration: none;
}

.navbar-phone:hover {
  color: var(--hot-orange);
}


.navbar-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-light);
  margin: 5px 0;
  transition: all 0.3s ease;
}


.section-padding {
  padding: 5rem 0;
}

.section-dark {
  background: var(--metallic-dark);
  color: var(--text-light);
}

.section-gradient {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-blue) 100%);
  color: var(--text-light);
}

.section-orange {
  background: linear-gradient(135deg, var(--molten-orange) 0%, var(--hot-orange) 100%);
  color: var(--text-light);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 3rem;
}


.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), var(--molten-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--molten-orange) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--molten-orange);
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--molten-orange);
  gap: 0.5rem;
}


.feature-box {
  background: var(--metallic-dark);
  border: 2px solid var(--electric-blue);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: var(--molten-orange);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(135deg, var(--electric-blue), var(--molten-orange));
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-text {
  color: rgba(255, 255, 255, 0.7);
}


.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--electric-blue);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
}

.author-location {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}


.contact-form-container {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--molten-orange);
  background: rgba(255, 255, 255, 0.15);
}

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

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--molten-orange) 0%, var(--hot-orange) 100%);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}


.contact-info-box {
  background: var(--metallic-dark);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--molten-orange) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  color: rgba(255, 255, 255, 0.7);
}


.main-footer {
  background: var(--metallic-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--molten-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  max-width: 400px;
  background: var(--metallic-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.cookie-consent-banner h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.cookie-consent-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--molten-orange) 0%, var(--hot-orange) 100%);
  color: var(--text-light);
  border: none;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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


.page-header {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-blue) 50%, var(--metallic-dark) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb li::after {
  content: '/';
  margin: 0 1rem;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--molten-orange);
}


.team-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--electric-blue);
}

.team-name {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--molten-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}


.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--electric-blue), var(--molten-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}

.faq-answer-content {
  padding-bottom: 1.5rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}

.section-dark .faq-question,
.section-gradient .faq-question {
  color: var(--text-light);
}

.section-dark .faq-answer-content,
.section-gradient .faq-answer-content {
  color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}


.process-step {
  position: relative;
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: center;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--molten-orange));
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--molten-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.step-title {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.step-description {
  color: rgba(255, 255, 255, 0.7);
}


.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--molten-orange) 0%, var(--hot-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--text-light);
}

.thank-you-title {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.thank-you-text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
}


.legal-content {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 2rem;
}

.legal-content h2 {
  color: var(--text-light);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  color: var(--text-light);
  margin: 1.5rem 0 1rem;
  font-size: 1.25rem;
}

.legal-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}


@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
}

@media screen and (max-width: 768px) {
  .navbar-burger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--metallic-dark);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .main-navbar .container .columns {
    display: flex;
    flex-direction: row;
  }
  
  .nav-menu.is-active {
    transform: translateY(0);
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  .navbar-phone {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .btn-secondary-custom {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .page-title {
    font-size: 2.25rem;
  }
  
  .process-step::after {
    display: none;
  }
  
  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
  .nav-menu {
    display: flex !important;
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    flex-direction: row;
  }
  
  .nav-item {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  .nav-menu {
    display: flex !important;
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    flex-direction: row;
  }
}


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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }


.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

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