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


:root {
  --primary: #8842D5;
  --secondary: #FF6B4A;
  --accent: #42EAD5;
  --background: #1A1A2E;
  --text-light: #F5F5F7;
  --text-dark: #222034;
  --highlight: #FFD700;
  --error: #FF3860;
  --success: #48C774;
  --neutral: #7A7A8C;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
}


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

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

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

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--secondary);
  text-decoration: none;
}

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


.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-dark { background-color: var(--background); }
.bg-light { background-color: var(--text-light); }

.pixel-border {
  position: relative;
  border: 4px solid var(--primary);
  clip-path: polygon(
    0% 10px, 10px 0%, calc(100% - 10px) 0%, 100% 10px,
    100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px)
  );
}

.pixel-shadow {
  box-shadow: 8px 8px 0px rgba(66, 234, 213, 0.3);
}

.pixel-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    0% 10px, 10px 0%, calc(100% - 10px) 0%, 100% 10px,
    100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px)
  );
}

.pixel-btn:hover, .pixel-btn:focus {
  background-color: var(--secondary);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pixel-btn:active {
  transform: translateY(1px);
}

.pixel-btn-secondary {
  background-color: var(--secondary);
}

.pixel-btn-secondary:hover, .pixel-btn-secondary:focus {
  background-color: var(--primary);
}

.pixel-btn-accent {
  background-color: var(--accent);
  color: var(--text-dark);
}

.pixel-btn-accent:hover, .pixel-btn-accent:focus {
  background-color: var(--primary);
  color: var(--text-light);
}

.diagonal-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.diagonal-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background-color: inherit;
  transform: skewY(-3deg);
  transform-origin: top right;
  z-index: -1;
}

.diagonal-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100px;
  background-color: inherit;
  transform: skewY(3deg);
  transform-origin: bottom left;
  z-index: -1;
}

.diagonal-section-reverse::before {
  transform: skewY(3deg);
  transform-origin: top left;
}

.diagonal-section-reverse::after {
  transform: skewY(-3deg);
  transform-origin: bottom right;
}

.pixel-card {
  background-color: rgba(34, 32, 52, 0.8);
  border: 2px solid var(--primary);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
  clip-path: polygon(
    0% 10px, 10px 0%, calc(100% - 10px) 0%, 100% 10px,
    100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px)
  );
}

.pixel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(136, 66, 213, 0.3);
  border-color: var(--accent);
}

.pixel-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  z-index: -1;
  clip-path: polygon(
    0% 15px, 15px 0%, calc(100% - 15px) 0%, 100% 15px,
    100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0% calc(100% - 15px)
  );
  opacity: 0.3;
  transition: var(--transition-normal);
}

.pixel-card:hover::before {
  opacity: 0.6;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.text-glitch {
  position: relative;
  display: inline-block;
}

.text-glitch::before, .text-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.text-glitch::before {
  color: var(--accent);
  z-index: -1;
  animation: glitch-animation 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite alternate-reverse;
}

.text-glitch::after {
  color: var(--secondary);
  z-index: -2;
  animation: glitch-animation 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite alternate-reverse reverse;
}

@keyframes glitch-animation {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.pixel-grid {
  background-image: 
    linear-gradient(rgba(136, 66, 213, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 66, 213, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center center;
}

.pixel-progress {
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin: 1rem 0;
}

.pixel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.6s ease;
}


.site-header {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

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

.navbar-brand img {
  height: 40px;
  margin-right: 1rem;
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent);
}

.navbar-toggler {
  border: none;
  background-color: transparent;
  color: var(--text-light);
}

.dropdown-menu {
  background-color: rgba(34, 32, 52, 0.95);
  border: 1px solid var(--primary);
  border-radius: var(--border-radius-sm);
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
}

.dropdown-item {
  color: var(--text-light);
  padding: 0.5rem 1rem;
  transition: var(--transition-fast);
  border-radius: var(--border-radius-sm);
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: rgba(136, 66, 213, 0.2);
  color: var(--accent);
}


.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--background);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--background) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(26, 26, 46, 0.4) 100%);
  z-index: 1;
}


.features-section {
  padding: 6rem 0;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  transition: var(--transition-normal);
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  background-color: rgba(66, 234, 213, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 20px;
  display: inline-block;
  position: relative;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  z-index: -1;
  border-radius: 24px;
  opacity: 0.4;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon::before {
  opacity: 0.7;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.about-section {
  padding: 6rem 0;
}

.about-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.about-content {
  padding: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.8;
}


.services-section {
  padding: 6rem 0;
}

.service-card {
  padding: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

.service-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.service-description {
  opacity: 0.9;
}

.service-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  position: relative;
}

.service-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: var(--transition-fast);
}

.service-link:hover::after {
  margin-left: 0.75rem;
}


.testimonials-section {
  padding: 6rem 0;
  position: relative;
}

.testimonial-card {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before {
  content: """;
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: serif;
}

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

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--accent);
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.875rem;
  opacity: 0.8;
}


.cta-section {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--background) 100%);
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}


.news-section {
  padding: 6rem 0;
}

.news-card {
  height: 100%;
  overflow: hidden;
}

.news-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1;
  clip-path: polygon(
    0% 0%, 100% 0%, 100% 70%, 90% 100%, 0% 100%
  );
}

.news-content {
  padding: 1.5rem;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.news-excerpt {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}


.contact-section {
  padding: 6rem 0;
}

.contact-info {
  margin-bottom: 2rem;
}

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

.contact-icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}

.contact-text {
  flex: 1;
}

.contact-form {
  background-color: rgba(34, 32, 52, 0.5);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(136, 66, 213, 0.3);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(26, 26, 46, 0.7);
  border: 1px solid rgba(136, 66, 213, 0.3);
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 234, 213, 0.2);
}

.form-control::placeholder {
  color: var(--neutral);
  opacity: 0.7;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(136, 66, 213, 0.3);
}


.site-footer {
  padding: 4rem 0 1rem;
  background-color: #14142B;
  position: relative;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
}

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

.footer-logo img {
  height: 40px;
}

.footer-about {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(136, 66, 213, 0.2);
  color: var(--text-light);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 40px;
  background-color: var(--accent);
}

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

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

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 5px;
}

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

.footer-contact-icon {
  color: var(--accent);
  margin-right: 0.75rem;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(122, 122, 140, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--accent);
}

.footer-bottom a:hover {
  text-decoration: underline;
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 400px;
  background-color: var(--background);
  border: 1px solid var(--primary);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease forwards;
}

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

.cookie-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cookie-text {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.cookie-settings {
  flex: 1;
  padding: 0.6rem 1rem;
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--text-light);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-settings:hover {
  background-color: rgba(136, 66, 213, 0.1);
}

.cookie-accept {
  flex: 1;
  padding: 0.6rem 1rem;
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-accept:hover {
  background-color: var(--accent);
  color: var(--text-dark);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 46, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: var(--background);
  border: 1px solid var(--primary);
  border-radius: var(--border-radius-md);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-modal-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.cookie-modal-title {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(122, 122, 140, 0.2);
}

.cookie-category {
  margin-bottom: 2rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(122, 122, 140, 0.3);
  transition: var(--transition-fast);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.cookie-category-description {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.cookie-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(122, 122, 140, 0.2);
}


.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: var(--neutral);
}

.breadcrumb-item a {
  color: var(--text-light);
  opacity: 0.8;
}

.breadcrumb-item a:hover {
  color: var(--accent);
  opacity: 1;
}

.breadcrumb-item.active {
  color: var(--accent);
}

.about-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
}

.timeline-content {
  width: calc(50% - 3rem);
  position: relative;
  padding: 1.5rem;
  background-color: rgba(34, 32, 52, 0.5);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(136, 66, 213, 0.3);
}

.timeline-date {
  position: absolute;
  top: 2rem;
  width: 120px;
  padding: 0.5rem;
  background-color: var(--primary);
  color: var(--text-light);
  text-align: center;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
}

.timeline-dot {
  position: absolute;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  border: 4px solid var(--background);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-date {
  left: calc(50% - 180px);
}

.timeline-item:nth-child(odd) .timeline-dot {
  left: calc(50% - 10px);
}

.timeline-item:nth-child(even) .timeline-date {
  right: calc(50% - 180px);
}

.timeline-item:nth-child(even) .timeline-dot {
  right: calc(50% - 10px);
}

.values-section {
  padding: 6rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.value-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.value-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(66, 234, 213, 0.1);
  border-radius: 20px;
  z-index: -1;
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.team-section {
  padding: 6rem 0;
}

.team-card {
  text-align: center;
  height: 100%;
  overflow: hidden;
}

.team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-position {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.95rem;
  opacity: 0.9;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.awards-section {
  padding: 6rem 0;
}

.award-item {
  display: flex;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: rgba(34, 32, 52, 0.5);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(136, 66, 213, 0.3);
}

.award-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-right: 2rem;
  min-width: 80px;
}

.award-content {
  flex: 1;
}

.award-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.award-description {
  font-size: 0.95rem;
  opacity: 0.9;
}


.service-detail {
  padding: 4rem 0;
}

.service-image {
  position: relative;
  height: 400px;
  margin-bottom: 3rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.service-benefits {
  margin: 3rem 0;
}

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

.benefit-icon {
  color: var(--accent);
  font-size: 1.25rem;
  margin-right: 1rem;
  min-width: 24px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-cta {
  padding: 3rem;
  text-align: center;
  background-color: rgba(34, 32, 52, 0.5);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(136, 66, 213, 0.3);
  margin-top: 4rem;
}

.service-cta-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-cta-text {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.case-studies {
  padding: 4rem 0;
}

.case-study {
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: rgba(34, 32, 52, 0.5);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(136, 66, 213, 0.3);
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.case-study-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.case-study-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(136, 66, 213, 0.2);
  color: var(--accent);
  font-size: 0.875rem;
  border-radius: var(--border-radius-sm);
}

.case-study-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.case-study-info {
  flex: 1;
  min-width: 300px;
}

.case-study-challenge, .case-study-solution, .case-study-result {
  margin-bottom: 1.5rem;
}

.case-study-subtitle {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.case-study-image {
  flex: 1;
  min-width: 300px;
  height: 300px;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}


.contact-methods {
  padding: 4rem 0;
}

.contact-method-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.contact-method-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.contact-method-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-method-text {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.office-info {
  padding: 4rem 0;
}

.office-image {
  height: 400px;
}

.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.office-content {
  padding: 2rem;
}

.office-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.office-address {
  margin-bottom: 1.5rem;
}

.office-hours {
  margin-bottom: 1.5rem;
}

.hours-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.day {
  font-weight: 500;
}


.thank-you-section {
  padding: 10rem 0;
  text-align: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}


.policy-section {
  padding: 6rem 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-last-updated {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(122, 122, 140, 0.2);
}

.policy-section h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.policy-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-section p, .policy-section ul {
  margin-bottom: 1.5rem;
}

.policy-section ul {
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.policy-table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
}

.policy-table th, .policy-table td {
  padding: 1rem;
  border: 1px solid rgba(122, 122, 140, 0.2);
  text-align: left;
}

.policy-table th {
  background-color: rgba(136, 66, 213, 0.1);
  font-weight: 600;
}

.policy-table tr:nth-child(even) {
  background-color: rgba(34, 32, 52, 0.3);
}


@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .timeline-date {
    width: 100px;
    font-size: 0.9rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-date {
    left: calc(50% - 160px);
  }
  
  .timeline-item:nth-child(even) .timeline-date {
    right: calc(50% - 160px);
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-section {
    height: auto;
    min-height: 500px;
    padding: 8rem 0 4rem;
  }
  
  .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    clip-path: none;
  }
  
  .hero-overlay {
    background: linear-gradient(0deg, var(--background) 0%, rgba(26, 26, 46, 0.7) 100%);
  }
  
  .timeline-line {
    left: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 4rem);
    margin-left: 4rem !important;
  }
  
  .timeline-date {
    left: 0 !important;
    right: auto !important;
    top: 0;
    transform: translateY(-50%);
  }
  
  .timeline-dot {
    left: 2rem !important;
    right: auto !important;
  }
  
  .case-study-header {
    flex-direction: column;
  }
  
  .case-study-category {
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-card, .service-card, .value-card {
    margin-bottom: 2rem;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .award-item {
    flex-direction: column;
  }
  
  .award-year {
    margin-bottom: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-consent {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 576px) {
  .hero-cta, .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pixel-btn {
    width: 100%;
    text-align: center;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .timeline-content {
    width: calc(100% - 3rem);
    margin-left: 3rem !important;
  }
  
  .timeline-line {
    left: 1rem;
  }
  
  .timeline-dot {
    left: 1rem !important;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


.choices {
  margin-bottom: 0;
}

.choices__inner {
  background-color: rgba(26, 26, 46, 0.7);
  border: 1px solid rgba(136, 66, 213, 0.3);
  border-radius: var(--border-radius-sm);
  min-height: auto;
  padding: 0.5rem 0.75rem;
}

.choices__input {
  background-color: transparent;
  color: var(--text-light);
}

.choices__list--dropdown {
  background-color: rgba(34, 32, 52, 0.95);
  border: 1px solid var(--primary);
}

.choices__list--dropdown .choices__item--selectable {
  color: var(--text-light);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: rgba(136, 66, 213, 0.2);
}

.choices__list--multiple .choices__item {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: var(--accent);
  border: 1px solid var(--accent);
}

.choices[data-type*="select-one"]:after {
  border-color: var(--accent) transparent transparent transparent;
}


@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

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

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

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

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