/* Base Styles */
:root {
  --primary-color: #2d3142;
  --primary-light: #4f5d75;
  --primary-dark: #1d2030;
  --secondary-color: #bfc0c0;
  --secondary-light: #e8e9eb;
  --secondary-dark: #9da0a4;
  --accent-color: #ef8354;
  --accent-light: #f2a07b;
  --accent-dark: #d06a3e;
  --text-light: #f5f5f5;
  --text-dark: #333333;
  --bg-light: #f9f9f9;
  --bg-dark: #1a1a1a;
  
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --transition: all 0.3s ease;
  
  --glass-bg: rgba(255, 255, 255, 0.2);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  
  --container-width: 1200px;
  --section-padding: 5rem 1.5rem;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
}

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

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

a:hover {
  color: var(--accent-dark);
}

.section {
  padding: var(--section-padding);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(31, 38, 135, 0.2);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.button.is-primary {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.button.is-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(239, 131, 84, 0.4);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid currentColor;
}

.button.is-outlined.is-white {
  color: var(--text-light);
}

.button.is-outlined:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.button.is-medium {
  font-size: 1.1rem;
  padding: 0.85rem 1.75rem;
}

.button.is-rounded {
  border-radius: 50px;
}

/* Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.is-transparent {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-item {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.navbar-item:hover {
  color: var(--accent-color);
  background-color: transparent !important;
}

.navbar-burger {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-body {
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 1;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title.is-1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero .subtitle.is-3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hero p.is-size-5 {
  margin-bottom: 2rem;
  max-width: 80%;
}

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

/* Process Section */
.process-section {
  background-color: var(--bg-light);
}

.process-section .title.is-2 {
  margin-bottom: 3rem;
}

.process-section .card {
  margin-bottom: 2.5rem;
  overflow: hidden;
  transition: var(--transition);
}

.process-section .card-content {
  padding: 2rem;
}

.process-section .title.is-4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.process-section .content {
  color: var(--primary-light);
}

.process-section .image-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-section img:hover {
  transform: scale(1.05);
}

/* Statistics Section */
.statistics-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light);
  position: relative;
}

.statistics-section.parallax-section {
  background-attachment: fixed;
}

.statistics-section .title {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.stat-icon {
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.stat-title {
  font-size: 1.2rem;
  color: var(--secondary-light);
}

/* Resources Section */
.resources-section {
  background-color: var(--bg-light);
}

.resources-section .title.is-2 {
  margin-bottom: 3rem;
}

.resources-section .card {
  height: 100%;
  padding: 2rem;
  transition: var(--transition);
}

.resources-section .card .title.is-5 {
  margin-bottom: 1rem;
}

.resources-section .card .title.is-5 a {
  color: var(--primary-color);
  transition: var(--transition);
}

.resources-section .card .title.is-5 a:hover {
  color: var(--accent-color);
}

.resources-section .card .content {
  color: var(--primary-light);
}

/* Media Section */
.media-section {
  background: linear-gradient(to bottom, var(--primary-light), var(--primary-color));
  color: var(--text-light);
}

.media-section .title.is-2 {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.custom-slider {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.slide .image-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 500px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slide:hover img {
  transform: scale(1.05);
}

.slide-content {
  padding: 1.5rem;
  text-align: center;
}

.slide-content .title.is-4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.slide-content p {
  color: var(--secondary-light);
}

.slider-controls {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-btn,
.next-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-light);
}

.testimonials-section .title.is-2 {
  margin-bottom: 3rem;
}

.testimonial-card {
  height: 100%;
  padding: 2.5rem;
  transition: var(--transition);
}

.testimonial-card .media {
  margin-bottom: 1.5rem;
}

.testimonial-card .media-left figure {
  margin-right: 1.5rem;
}

.testimonial-card .media-content .title.is-5 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.testimonial-card .media-content .subtitle.is-6 {
  color: var(--primary-light);
  font-size: 0.9rem;
}

.testimonial-card .content {
  font-style: italic;
  color: var(--primary-light);
}

.testimonial-card .content p {
  position: relative;
  padding: 0 1rem;
}

.testimonial-card .content p::before,
.testimonial-card .content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent-color);
  position: absolute;
  opacity: 0.5;
}

.testimonial-card .content p::before {
  top: -1rem;
  left: -0.5rem;
}

.testimonial-card .content p::after {
  bottom: -1rem;
  right: -0.5rem;
}

/* Clientele Section */
.clientele-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light);
}

.clientele-section .title.is-2 {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.client-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-card .image-container {
  margin-bottom: 1.5rem;
  height: 150px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.client-card:hover img {
  transform: scale(1.1);
}

.client-card .title.is-5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.client-card p {
  color: var(--secondary-light);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-light);
}

.contact-section .title.is-2 {
  margin-bottom: 1.5rem;
}

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

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

.contact-item .icon {
  margin-right: 1rem;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.contact-item p {
  margin-bottom: 0;
}

.contact-form-card {
  padding: 2.5rem;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--secondary-color);
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(239, 131, 84, 0.2);
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.contact-form .checkbox input {
  accent-color: var(--accent-color);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 5rem 1.5rem 2rem;
}

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

.footer p {
  color: var(--secondary-light);
}

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

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

.footer-links a,
.footer-social a {
  color: var(--secondary-color);
  transition: var(--transition);
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-social a {
  font-weight: 500;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

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

.footer-bottom p {
  margin-bottom: 0;
  color: var(--secondary-color);
}

/* About Page */
.page-title-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light);
  padding: 8rem 1.5rem 4rem;
}

.page-title-section .title,
.page-title-section .subtitle {
  color: var(--text-light);
  text-align: center;
}

.about-company-section,
.methodology-section {
  padding: 5rem 1.5rem;
}

.about-company-section .image-container,
.methodology-section .image-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-company-section img,
.methodology-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-company-section img:hover,
.methodology-section img:hover {
  transform: scale(1.05);
}

.team-section,
.values-section {
  padding: 5rem 1.5rem;
  background-color: var(--bg-light);
}

.team-card,
.value-card {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card .card-image {
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.team-card img {
  transition: transform 0.5s ease;
}

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

.value-icon {
  margin-bottom: 1.5rem;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Contact Page */
.contact-main-section,
.map-section,
.faq-section {
  padding: 5rem 1.5rem;
}

.contact-info-content .contact-details {
  margin: 2rem 0;
}

.contact-info-content .contact-item {
  margin-bottom: 1.5rem;
}

.contact-info-content .contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--box-shadow);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-card {
  height: 100%;
  padding: 2.5rem;
}

.faq-card .title.is-4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-card p {
  color: var(--primary-light);
}

/* Privacy & Terms Pages */
.privacy-content-section,
.terms-content-section {
  padding-top: 100px;
}

.privacy-content-section .content,
.terms-content-section .content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content-section h2,
.terms-content-section h2 {
  margin-top: 3rem;
  color: var(--primary-color);
}

.privacy-content-section p,
.terms-content-section p {
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.privacy-content-section ul,
.terms-content-section ul {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.privacy-content-section li,
.terms-content-section li {
  margin-bottom: 0.75rem;
  color: var(--primary-light);
}

/* Success Page */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
}

.success-card {
  padding: 3rem;
  text-align: center;
  max-width: 600px;
}

.success-icon {
  margin-bottom: 2rem;
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.success-card .title.is-2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.success-card .subtitle.is-4 {
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.success-card .content p {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.success-card .buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.additional-info-section,
.explore-more-section {
  padding: 5rem 1.5rem;
  background-color: var(--bg-light);
}

.steps-container {
  margin: 3rem 0;
}

.step {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.step-number {
  background-color: var(--accent-color);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content .title.is-5 {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.step-content p {
  color: var(--primary-light);
  margin-bottom: 0;
}

.explore-card {
  height: 100%;
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.explore-card .title.is-4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.explore-card p {
  color: var(--primary-light);
  margin-bottom: 2rem;
}

/* Cookie Consent Popup */
.cookie-consent-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: var(--text-light);
  padding: 1.5rem 0;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cookie-content p {
  margin: 0;
  padding-right: 2rem;
}

.accept-cookies-btn {
  background-color: var(--accent-color);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.accept-cookies-btn:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
}

/* Animation Classes */
.animate-on-scroll {
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  :root {
    --section-padding: 4rem 1.5rem;
  }
  
  .hero .title.is-1 {
    font-size: 3rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.75rem;
  }
  
  .navbar-menu {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .process-section .image-container {
    height: 250px;
    margin-bottom: 1.5rem;
  }
  
  .slide .image-container {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-padding: 3rem 1.5rem;
  }
  
  .hero .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .hero p.is-size-5 {
    max-width: 100%;
  }
  
  .stat-card, 
  .client-card, 
  .testimonial-card {
    margin-bottom: 2rem;
  }
  
  .process-section .card-content {
    padding: 1.5rem;
  }
  
  .slide .image-container {
    height: 300px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    padding-right: 0;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .success-card {
    padding: 2rem;
  }
  
  .success-card .buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero .buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero .button {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero .title.is-1 {
    font-size: 2rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.25rem;
  }
  
  .process-section .image-container,
  .slide .image-container {
    height: 200px;
  }
  
  .map-container {
    height: 300px;
  }
}