:root {
  /* Main Colors */
  --primary-color: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #4d94ff;
  --secondary-color: #ff6600;
  --secondary-dark: #cc5200;
  --secondary-light: #ff8533;
  --accent-color: #9933cc;
  --accent-dark: #7a29a3;
  --accent-light: #b366e6;

  /* Neutrals */
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-medium: #e9ecef;
  --background-dark: #343a40;

  /* Shadows */
  --shadow-small: 5px 5px 10px rgba(0, 0, 0, 0.1),
    -5px -5px 10px rgba(255, 255, 255, 0.8);
  --shadow-medium: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.8);
  --shadow-large: 15px 15px 30px rgba(0, 0, 0, 0.1),
    -15px -15px 30px rgba(255, 255, 255, 0.8);
  --shadow-inset: inset 5px 5px 10px rgba(0, 0, 0, 0.1),
    inset -5px -5px 10px rgba(255, 255, 255, 0.8);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--accent-color),
    var(--accent-light)
  );
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;

  /* Border Radius */
  --border-radius-small: 5px;
  --border-radius-medium: 10px;
  --border-radius-large: 20px;
  --border-radius-circle: 50%;
}

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

body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section {
  padding: 5rem 1.5rem;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 1rem auto 0;
  border-radius: var(--border-radius-small);
}

/* Neuromorphic Elements */
.neumorph-card {
  background: var(--background-light);
  box-shadow: var(--shadow-medium);
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
  overflow: hidden;
  height: 100%;
}

.neumorph-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.neumorph-button {
  background: var(--background-light);
  box-shadow: var(--shadow-small);
  border-radius: var(--border-radius-medium);
  padding: 0.75rem 1.5rem;
  border: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.neumorph-button:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.neumorph-button:active {
  box-shadow: var(--shadow-inset);
  transform: translateY(0);
}

.neumorph-input,
.neumorph-textarea,
.neumorph-select select {
  background: var(--background-light);
  box-shadow: var(--shadow-inset);
  border-radius: var(--border-radius-medium);
  border: none;
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast);
}

.neumorph-input:focus,
.neumorph-textarea:focus,
.neumorph-select select:focus {
  box-shadow: var(--shadow-medium);
  outline: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-medium);
  background-color: #222222 !important;
}

.navbar {
  padding: 1rem 0;
  transition: all var(--transition-fast);
  background-color: #222222 !important;
}

.navbar.is-transparent {
  background-color: transparent;
}

.navbar-brand .navbar-item {
  font-weight: 700;
}

.navbar-item {
  background-color: #222222;
  color: #fff !important;
  transition: color var(--transition-fast);
}

.navbar-item {
  background-color: #222222;
}

.navbar-item h1 {
  color: #123f9e;
}

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

.navbar.scrolled {
  background-color: var(--background-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-item {
  color: var(--text-dark);
}

.navbar.scrolled .navbar-burger {
  color: var(--text-dark);
}

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

.parallax-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light) !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--text-light) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
  color: var(--text-light) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 3px solid var(--text-light);
  border-bottom: 3px solid var(--text-light);
  transform: rotate(45deg);
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0% {
    transform: rotate(45deg) translate(-5px, -5px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate(5px, 5px);
    opacity: 0;
  }
}

/* Services Section */
.services-section {
  background-color: var(--background-light);
}

.card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
  height: 250px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.description {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.progress-container {
  margin-bottom: 1.5rem;
}

.progress-container span {
  display: block;
  margin-bottom: 0.5rem;
}

.progress {
  height: 0.5rem;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}

.progress::-webkit-progress-bar {
  background-color: var(--background-medium);
}

.progress::-webkit-progress-value {
  background: var(--gradient-primary);
}

.progress::-moz-progress-bar {
  background: var(--gradient-primary);
}

/* About Section */
.about-section {
  position: relative;
}

.about-section .content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-medium);
}

.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

/* Media Section */
.media-section {
  background-color: var(--background-light);
}

/* Clientele Section */
.clientele-section {
  position: relative;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.client-logo {
  width: 200px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-content {
  flex-grow: 1;
}

.client-description {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
  position: relative;
  padding-left: 1.5rem;
}

.faq-question:before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.faq-answer {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

/* Case Studies Section */
.case-studies-section {
  position: relative;
}

.case-study-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-study-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.case-study-content {
  flex-grow: 1;
  padding: 1.5rem;
}

.case-study-description {
  margin-bottom: 1.5rem;
}

.results {
  background-color: var(--background-medium);
  padding: 1rem;
  border-radius: var(--border-radius-small);
}

.results ul {
  margin-left: 1.5rem;
}

/* Press Section */
.press-section {
  background-color: var(--background-light);
}

.press-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.press-image {
  width: 200px;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  margin-bottom: 1.5rem;
}

.press-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.press-content {
  flex-grow: 1;
}

.press-quote {
  font-style: italic;
  margin-bottom: 1rem;
}

.press-date {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Careers Section */
.careers-section {
  position: relative;
}

.career-card {
  height: 100%;
}

.job-listing {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--background-medium);
}

.job-listing:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.job-title {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.job-description {
  margin-bottom: 1rem;
}

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

.contact-info {
  height: 100%;
}

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

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info ul li {
  margin-bottom: 0.5rem;
}

.map-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
}

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

.contact-form {
  height: 100%;
}

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

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

.footer-description {
  margin-bottom: 2rem;
}

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

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

.footer-links a,
.footer-social a {
  color: var(--text-light);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--primary-light);
}

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

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

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

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

/* Additional Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 3rem;
}

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

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.success-message {
  max-width: 600px;
}

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

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

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.read-more:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  width: 100%;
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .navbar-menu {
    background-color: #222222;
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
  }

  .navbar-menu .navbar-item {
    color: var(--text-dark);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .card-image {
    height: 200px;
  }

  .case-study-image {
    height: 200px;
  }
}

/* Custom Button Styles */
.button.is-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.button.is-primary:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

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

.button.is-light.is-outlined:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
