:root {
  /* Primary Colors */
  --primary-color: #ff3e55;
  --primary-dark: #e12c41;
  --primary-light: #ff6a7a;

  /* Secondary Colors */
  --secondary-color: #3e55ff;
  --secondary-dark: #2c41e1;
  --secondary-light: #6a7aff;

  /* Accent Colors */
  --accent-color: #ffcc00;
  --accent-dark: #e6b800;
  --accent-light: #ffd633;

  /* Neutral Colors */
  --dark-color: #222222;
  --dark-gray: #444444;
  --medium-gray: #888888;
  --light-gray: #dddddd;
  --off-white: #f7f7f7;
  --white: #ffffff;

  /* Font Families */
  --heading-font: "Raleway", sans-serif;
  --body-font: "Open Sans", sans-serif;

  /* Shadows */
  --card-shadow: 6px 6px 0 rgba(0, 0, 0, 0.8);
  --button-shadow: 4px 4px 0 rgba(0, 0, 0, 0.8);
  --text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);

  /* Borders */
  --border-thick: 4px solid var(--dark-color);
  --border-medium: 2px solid var(--dark-color);
  --border-thin: 1px solid var(--dark-color);

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

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

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.section-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: -0.05em;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background-color: var(--primary-color);
}

.section-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--dark-gray);
}

/* Header & Navigation */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: var(--border-medium);
}

.navbar-brand .logo {
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--primary-color);
  font-family: var(--heading-font);
  transition: transform var(--transition-fast);
}

.navbar-brand .logo:hover {
  transform: scale(1.05);
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

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

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

.navbar-burger:hover {
  background-color: transparent;
}

.navbar-menu.is-active {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border: var(--border-thin);
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
  z-index: -1;
}

.hero-body {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  color: var(--white) !important;
  text-shadow: var(--text-shadow);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--white) !important;
  text-shadow: var(--text-shadow);
  max-width: 800px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.brutalist-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: var(--border-medium);
  box-shadow: var(--button-shadow);
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.brutalist-card {
  height: fit-content !important;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

.brutalist-button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
  color: var(--white);
}

.brutalist-button:hover::before {
  left: 100%;
}

.brutalist-button:active {
  transform: translate(0, 0);
  box-shadow: var(--button-shadow);
}

.brutalist-button-outline {
  background-color: transparent;
  color: var(--white);
  border: var(--border-medium);
  border-color: var(--white);
  box-shadow: var(--button-shadow);
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.brutalist-button-outline:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
  background-color: var(--white);
  color: var(--primary-color);
}

.brutalist-button-outline:active {
  transform: translate(0, 0);
  box-shadow: var(--button-shadow);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.brutalist-card {
  background-color: var(--white);
  border: var(--border-medium);
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
  height: 100%;
  transition: transform var(--transition-medium),
    box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.brutalist-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.8);
}

.card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: var(--border-thin);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.card-content p {
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
  flex: 1;
}

.wide-image {
  height: 300px;
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Section */
.services-section {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("image/service-pattern.jpg");
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

.service-card {
  position: relative;
  z-index: 1;
}

.progress-container {
  margin-top: auto;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.progress {
  height: 12px;
  border-radius: 0;
  border: var(--border-thin);
  background-color: var(--light-gray);
  overflow: visible;
}

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

.progress::-webkit-progress-value {
  background-color: var(--primary-color);
  position: relative;
}

.progress::-webkit-progress-value::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--dark-color);
  border-radius: 50%;
}

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

/* Results Section */
.results-section {
  background-color: var(--primary-color);
  color: var(--white);
}

.results-section .section-title {
  color: var(--white);
}

.results-section .section-title::after {
  background-color: var(--white);
}

.results-section .section-description {
  color: var(--white);
}

.result-card {
  background-color: var(--white);
  border: var(--border-medium);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: transform var(--transition-medium);
}

.result-card:hover {
  transform: translateY(-10px);
}

.result-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.result-content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.result-content p {
  color: var(--dark-gray);
}

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

.resource-card {
  height: 100%;
}

.resource-card h3 a {
  color: var(--secondary-color);
  transition: color var(--transition-fast);
}

.resource-card h3 a:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

.resource-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-top: 1rem;
  border-top: var(--border-thin);
  padding-top: 1rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background-color: var(--off-white);
}

.scene-card {
  margin-bottom: 2rem;
}

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

.media-card {
  height: 100%;
}

.media-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-top: 1rem;
  border-top: var(--border-thin);
  padding-top: 1rem;
}

/* Clients Section */
.clients-section {
  background-color: var(--off-white);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.client-item {
  background-color: var(--white);
  border: var(--border-thin);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.client-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.client-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter var(--transition-medium);
}

.client-item:hover img {
  filter: grayscale(0%);
}

.testimonial-card {
  margin-bottom: 2rem;
}

.testimonial-content {
  font-style: italic;
  color: var(--dark-gray);
  position: relative;
  padding: 0 1.5rem;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 3rem;
  line-height: 0;
  position: absolute;
  color: var(--primary-light);
  font-family: var(--heading-font);
  font-weight: 900;
}

.testimonial-content::before {
  top: 0.5rem;
  left: 0;
}

.testimonial-content::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: var(--border-thin);
  margin-right: 1rem;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.author-info p {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

/* Partners Section */
.partners-section {
  background-color: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.partner-item {
  background-color: var(--white);
  border: var(--border-thin);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.partner-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

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

.benefit-card {
  text-align: center;
  height: 100%;
}

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

.benefit-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.benefit-content p {
  color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("image/contact-pattern.jpg");
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

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

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

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  min-width: 2rem;
  text-align: center;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-text p {
  color: var(--dark-gray);
}

.contact-text a {
  color: var(--secondary-color);
  transition: color var(--transition-fast);
}

.contact-text a:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

.contact-map {
  height: 300px;
}

.map-container {
  height: 100%;
  overflow: hidden;
}

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

.contact-form {
  height: 100%;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.label {
  color: var(--dark-color);
  font-weight: 600;
}

.input,
.textarea,
.select select {
  border-radius: 0;
  border: var(--border-thin);
  background-color: var(--white);
  transition: box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.input:focus,
.textarea:focus,
.select select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.checkbox {
  color: var(--dark-gray);
}

.checkbox a {
  color: var(--secondary-color);
  transition: color var(--transition-fast);
}

.checkbox a:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 5rem 1.5rem 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--primary-color);
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

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

.footer p {
  color: var(--light-gray);
  margin-bottom: 1rem;
}

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

.social-links a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

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

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

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

.footer-links a {
  color: var(--light-gray);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

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

.footer hr {
  background-color: var(--dark-gray);
  margin: 2rem 0;
}

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

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--light-gray);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.95);
  color: var(--white);
  z-index: 9999;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  border-top: var(--border-thin);
}

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

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

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

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

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

.success-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

/* Privacy & Terms Pages */
.content-page {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.content-page .container {
  max-width: 800px;
}

.content-page h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.content-page h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.content-page p {
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

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

.content-page li {
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .clients-grid,
  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

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

  .cookie-content button {
    width: 100%;
  }

  .contact-item {
    flex-direction: column;
  }

  .contact-icon {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .clients-grid,
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }
}
