:root {
  --color-accent-gold: #f5b50d;
  --color-accent-purple: #572df1;
  --color-bg-light: #ffffff;
  --color-surface-light: #f8f9fa;
  --color-surface-muted: #f1f3f5;
  --color-surface-accent: #eef2ff;
  --color-text-dark: #1a1a1a;
  --color-text-muted: #6c757d;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Outfit", sans-serif;
}

:lang(ka-GE) {
  --font-sans: "Google Sans", sans-serif;
  --font-display: "Google Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

html :where(.wp-block) {
  max-width: none;
}

.admin .reveal {
  opacity: 1;
}

body {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

::selection {
  background-color: var(--color-accent-purple);
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Global Components */
.ddg-button,
.wpforms-form button[type="submit"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 9999px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent-purple) 0%, #8b5cf6 100%);
  box-shadow: 0 10px 20px -5px rgba(87, 45, 241, 0.3);
}

.ddg-button:hover {
  transform: scale(1.05);
  background-size: 200%;
  box-shadow: 0 15px 30px -5px rgba(87, 45, 241, 0.4);
}

.ddg-button-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 9999px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, #ffdb4d 100%);
  box-shadow: 0 10px 20px -5px rgba(245, 181, 13, 0.2);
}

.ddg-button-gold:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffdb4d 0%, var(--color-accent-gold) 100%);
  box-shadow: 0 15px 30px -5px rgba(245, 181, 13, 0.3);
}

.ddg-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ddg-card:hover {
  border-color: rgba(87, 45, 241, 0.3);
  box-shadow: 0 25px 50px -12px rgba(87, 45, 241, 0.05);
}

.services-cta-btn {
  transform: translateY(10px);
  opacity: 0;
}

.ddg-card:hover .services-cta-btn {
  transform: translateY(0);
  opacity: 1;
}

.gradient-gold {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, var(--color-accent-gold), #d97706);
}

.gradient-purple {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, var(--color-accent-purple), #8b5cf6);
}

.accent-purple {
  color: var(--color-accent-purple);
}

.accent-gold {
  color: var(--color-accent-gold);
}

.italic {
  font-style: italic;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

/* App Layout */
.app-container {
  min-height: 100vh;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: var(--color-bg-light);
  background: var(--color-accent-purple);
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.cookiealert p {
  margin: 0;
}

.cookiealert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.cookiealert a {
  text-decoration: underline
}

.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
  border: none;
  border-radius: 1rem;
  padding: 5px 16px;
}

.cursor-follower {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--color-accent-purple);
  border-radius: 50%;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: 0.3;
  display: none;
}

@media (min-width: 768px) {
  .cursor-follower {
    display: block;
  }
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.abstract-shapes-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 40vw;
  height: 40vw;
  background-color: rgba(87, 45, 241, 0.05);
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 35vw;
  height: 35vw;
  background-color: rgba(245, 181, 13, 0.05);
  animation-delay: -3s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -20px);
  }
}

/* Logo Component */
.logo-wrapper {
  display: flex;
  align-items: center;
  height: 48px;
}

.logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.nav-container.nav-scrolled .logo-dark,
body:not(.home) .nav-container .logo-dark {
  display: block
}

.nav-container:not(.nav-scrolled) .logo-dark,
.nav-container.nav-scrolled .logo-white,
body:not(.home) .logo-white {
  display: none;
}


/* Spinning Text Component */
.spinning-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinning-text-container.default-size {
  width: 10rem;
  height: 10rem;
}

.spinning-text-container.custom-size-800 {
  width: 70vw;
  height: 136vh;
}

.spinning-text-container.custom-size-900 {
  width: 56.25rem;
  height: 56.25rem;
}

.spinning-text-container.custom-size-1000 {
  width: 100vw;
  height: 200vh;
}

.spinning-text-svg {
  width: 100%;
  height: 100%;
  animation: spin-slow 15s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spinning-text-path {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  fill: currentColor;
}

.spinning-text-path.default-font {
  font-size: 8px;
}

.spinning-text-path.custom-font-4 {
  font-size: 7px;
}

.spinning-text-path.custom-font-3 {
  font-size: 6px;
}

.spinning-text-center-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinning-text-center-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent-gold);
}

/* Doodle Component */
.doodle-svg {
  width: 6rem;
  height: 6rem;
  opacity: 0.2;
}

.doodle-path {
  color: #ffffff;
}

.doodle-circle {
  fill: var(--color-accent-gold);
}

.doodle-rect {
  fill: #ffffff;
  transform: rotate(45deg);
}

/* Navigation */
.home .nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
  box-shadow: none;
}

.nav-container {
  position: relative;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(173deg, #ececec, transparent);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #000;
  box-shadow: 0 0 16px 0 #00000038;
  margin-bottom: 3rem;
}

.home .nav-container .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.home .nav-scrolled .nav-link {
  color: black;
}

.nav-scrolled,
.home .nav-scrolled {
  position: fixed;
  padding: 0rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-dark);
}

.nav-scrolled .logo-wrapper {
  height: 35px;
}

.nav-scrolled .nav-link {
  color: var(--color-text-dark);
}

.nav-logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-dark);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-accent-purple);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--color-surface-muted);
  padding: 0.25rem;
  border-radius: 9999px;
}

.lang-button {
  padding: 0.25rem 0.5rem;
  font-size: 9px;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.2s;
}

.lang-button-active {
  background: linear-gradient(135deg, #8b5cf6 0%, var(--color-accent-purple) 100%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: white;
}

.lang-button-inactive {
  color: var(--color-text-muted);
}

.lang-button-inactive:hover {
  color: var(--color-text-dark);
  background: var(--color-accent-gold);
}

.nav-cta-btn {
  font-size: 10px;
  padding: 0.625rem 1.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1.5rem;
  background-color: var(--color-bg-light);
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#clients-slider {
  max-width: 100%;
  position: absolute;
  bottom: 6%;
}

#clients-slider .marquee-item {
  margin: 0 2rem;
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.3s;
}


#clients-slider .marquee-item img {
  object-fit: contain;
}

#clients-slider .marquee-item:hover {
  filter: none;
  opacity: 1;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom right, rgba(87, 45, 241, 0.8), rgba(0, 0, 0, 0.4), rgba(245, 181, 13, 0.8));
  mix-blend-mode: multiply;
}

.hero-overlay-fade {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent, rgba(0, 0, 0, 0.9));
}

.hero-doodle-top {
  position: absolute;
  top: 25%;
  left: 2.5rem;
  transform: rotate(12deg);
  z-index: 10;
}

.hero-doodle-bottom {
  position: absolute;
  bottom: 25%;
  right: 2.5rem;
  transform: rotate(-12deg);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  width: 100%;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.hero-tag-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.hero-title {
  font-size: 6.5rem;
  line-height: 0.9;
  margin-bottom: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: #ffffff;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-text {
  display: inline-block;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: 1.125rem;
  }
}

.hero-cta-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta-container {
    flex-direction: row;
  }
}

@media (min-width: 640px) {
  .hero-cta-btn {
    width: auto;
  }
}

.hero-cta-btn-icon {
  margin-left: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.hero-cta-btn:hover .hero-cta-btn-icon {
  transform: translateX(0.5rem);
}

.hero-cta-btn-gold-icon {
  width: 1rem;
  height: 1rem;
}

.hero-spinning-text {
  position: absolute;
  bottom: 25%;
  right: 5%;
  display: none;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .hero-spinning-text {
    display: flex;
  }
}

/* Services Section */
.services-section {
  padding: 10rem 1.5rem;
  background-color: var(--color-surface-muted);
  position: relative;
  z-index: 10;
  overflow: hidden;
  background-image: radial-gradient(rgba(87, 45, 241, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.services-bg-spinning-text {
  position: absolute;
  top: -10rem;
  right: -10rem;
  color: rgba(87, 45, 241, 0.05);
  pointer-events: none;
}

.services-container {
  max-width: 80rem;
  margin: 0 auto;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .services-header {
    grid-template-columns: 2fr 1fr;
    align-items: end;
  }
}

.services-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-accent-purple);
  margin-bottom: 1.5rem;
}

.services-title {
  font-size: 2.5rem;
  line-height: 0.8;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .services-title {
    font-size: 6.5rem;
  }
}

.services-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 30rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card-bg-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(87, 45, 241, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.ddg-card:hover .service-card-bg-glow {
  opacity: 1;
}

.service-card-content {
  position: relative;
  z-index: 10;
}

.service-card-illustration-wrapper {
  overflow: hidden;
  width: 62%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  opacity: 0.5;
}

.service-card-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
  transform: scale(0) rotate(180deg);
}

.ddg-card:hover .service-card-illustration {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.service-card-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-surface-accent);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-purple);
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.ddg-card:hover .service-card-icon-wrapper {
  background: var(--color-accent-purple);
  color: white;
  transform: scale(1.1);
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  -webkit-text-stroke: 5px #f3f1fe;
  paint-order: stroke fill;
}

.service-card-description {
  -webkit-text-stroke: 5px #f3f1fe;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  paint-order: stroke fill;

}

.service-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-tag-item {
  font-size: 10px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-surface-muted);
  border-radius: 9999px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-hover-btn {
  margin-top: auto;
}

.service-hover-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent-purple);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.ddg-card:hover .service-hover-btn-link {
  opacity: 1;
  transform: translateY(0);
}

/* Portfolio Section */
.portfolio-section {
  padding: 10rem 1.5rem;
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

.portfolio-bg-spinning-text {
  position: absolute;
  bottom: -10vh;
  left: -30vw;
  color: rgb(255 193 7 / 10%);
  pointer-events: none;
}

.portfolio-container {
  max-width: 80rem;
  margin: 0 auto;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}

.slick-dots li.slick-active button:before {
  color: var(--color-accent-purple);
}

.slick-arrow {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  margin: auto;
  color: transparent;
  background-size: 50px;
  background-repeat: no-repeat;
  background-position-y: center;
  opacity: 0.5;
  transition: 0.3s;
  width: 50px;
  height: 100%;
}

.slick-arrow:before,
.slick-arrow:after {
  display: none;
}

.slick-arrow:hover {
  opacity: 1;
}

.slick-prev {
  left: 0;
  background-position-x: left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-chevron-left'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none' /%3E%3Cpath d='M15 6l-6 6l6 6' /%3E%3C/svg%3E");
}

.slick-next {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-chevron-right'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none' /%3E%3Cpath d='M9 6l6 6l-6 6' /%3E%3C/svg%3E");
  background-position-x: right;
}

@media (min-width: 768px) {
  .portfolio-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.portfolio-header-title {
  font-size: 3rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .portfolio-header-title {
    font-size: 6.5rem;
  }
}

.portfolio-carousel {
  margin: 0 -1rem;
}

#portfolio-slider .portfolio-item {
  padding: 0 1rem;
}

.portfolio-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 0.8;
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.portfolio-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent-gold);
}

.portfolio-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.portfolio-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.portfolio-desc-short {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.4;
  max-width: 20rem;
}

.portfolio-btn-wrapper {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.portfolio-btn {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transform: scale(0) rotate(-45deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-btn {
  transform: scale(1) rotate(0deg);
}

/* About Section */
.about-section {
  padding: 10rem 1.5rem;
  background-color: var(--color-surface-light);
  position: relative;
  overflow: hidden;
}

.about-bg-spinning-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.about-doodle {
  position: absolute;
  top: 10%;
  right: 10%;
  color: var(--color-accent-purple);
}

.about-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-accent-purple);
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: 4rem;
  margin-bottom: 2.5rem;
  line-height: 0.8;
  text-transform: uppercase;
}

.about-text-container {
  margin-bottom: 3rem;
}

.about-text-container p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent-purple);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.about-image-section {
  position: relative;
}

.about-image-wrapper {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-accent-purple), transparent);
  opacity: 0.2;
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: var(--color-accent-gold);
  width: 10rem;
  height: 10rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(245, 181, 13, 0.4);
  z-index: 10;
  transform: rotate(5deg);
}

.about-badge-text {
  font-size: 2rem;
  line-height: 0.8;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.1rem;
  color: var(--color-text-dark);
}

/* Team Section */
.team-section {
  padding: 10rem 1.5rem;
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

.team-bg-spinning-text {
  position: absolute;
  top: -10rem;
  left: -10rem;
  color: rgba(87, 45, 241, 0.03);
  pointer-events: none;
}

.team-container {
  max-width: 80rem;
  margin: 0 auto;
}

.team-header {
  margin-bottom: 5rem;
}

.team-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-accent-purple);
  margin-bottom: 1.5rem;
}

.team-header-title {
  font-size: 6rem;
  text-transform: uppercase;
  line-height: 0.8;
}

.team-carousel {
  margin: 0 -1rem;
}

.team-member-card {
  padding: 0 1rem;
}

.team-member-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.team-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-member-card:hover .team-member-image {
  transform: scale(1.05);
}

.team-member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-accent-purple), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.team-member-card:hover .team-member-overlay {
  opacity: 0.4;
}

.team-member-social {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-purple);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s;
}

.team-member-card:hover .team-member-social {
  transform: translateY(0);
  opacity: 1;
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-member-role {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-purple);
  margin-bottom: 1rem;
}

.team-member-bio {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  padding: 10rem 1.5rem;
  background-color: var(--color-surface-muted);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-spinning-text {
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
}

.testimonials-container {
  max-width: 80rem;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 5rem;
}

.testimonials-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-accent-purple);
  margin-bottom: 1.5rem;
}

.testimonials-title {
  font-size: 6rem;
  text-transform: uppercase;
}

.testimonials-carousel {
  margin: 0 -1rem;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0 1rem;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.05);
}

.testimonial-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-accent-gold);
  margin-bottom: 2rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.testimonial-role {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Contact Section */
.contact-section {
  padding: 10rem 1.5rem;
  background-color: var(--color-bg-light);
}

.contact-container {
  max-width: 80rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-title {
  font-size: 6rem;
  margin-bottom: 4rem;
  line-height: 0.8;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-info-icon-container {
  width: 4rem;
  height: 4rem;
  background-color: var(--color-surface-muted);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-purple);
  transition: all 0.3s;
}

.contact-info-item:hover .contact-info-icon-container {
  background-color: var(--color-accent-purple);
  color: #ffffff;
  transform: scale(1.1);
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-form-card {
  background-color: var(--color-surface-light);
  padding: 3rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.contact-form,
.wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wpforms-label-hide {
  display: none;
}

.wpforms-field-description {
  font-size: small;
  opacity: 0.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group,
.wpforms-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}

.form-label,
.wpforms-field-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.form-input,
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=text],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=range],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=email],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=url],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=tel],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=number],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=password],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column input[type=file],
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column select,
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column textarea,
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column .wpforms-field-row,
div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column .choices,
textarea {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 0.75rem;
  font-family: inherit;
  transition: all 0.3s;
}

.wpforms-field-checkbox ul {
  list-style: none;
  padding: 0;
}

.wpforms-field-checkbox ul li {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: start;
}

.wpforms-field-checkbox ul li input {
  width: 15px;
  height: 15px;
  box-shadow: 0 0 4px 0 #b2b2b2;
}

.wpforms-field-checkbox ul li label {
  margin: none !important;
}


.form-input:focus {
  outline: none;
  border-color: var(--color-accent-purple);
  box-shadow: 0 0 0 4px rgba(87, 45, 241, 0.1);
}

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.wpforms-required-label {
  color: #ff6262;
}

label.wpforms-error {
  color: #ff6262;
  font-size: 11px;
}

/* Footer */
.footer {
  padding: 5rem 1.5rem;
  background-color: var(--color-surface-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.3s;
}

.footer-social-link:hover {
  background-color: var(--color-accent-purple);
  color: #ffffff;
  transform: translateY(-5px);
}

.footer-social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link:hover {
  color: var(--color-text-dark);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-content {
  background-color: #ffffff;
  width: 100%;
  max-width: 55vw;
  padding: 3rem;
  border-radius: 2rem;
  position: relative;
  max-height: 100vh;
  /* overflow-y: auto; */
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-surface-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.2s;
}

.modal-close:hover {
  background-color: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.brief-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.brief-form label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.wpforms-label-hide {
  display: none !important;
}

.brief-form input,
.brief-form textarea,
.brief-form select {
  width: 100%;
  background-color: var(--color-surface-muted);
  border: 1px solid transparent;
  padding: 1rem;
  border-radius: 0.75rem;
  font-family: inherit;
  transition: all 0.3s;
}

.brief-form input:focus,
.brief-form textarea:focus,
.brief-form select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--color-accent-purple);
  box-shadow: 0 0 0 4px rgba(87, 45, 241, 0.1);
}

.w-full {
  width: 100%;
}

/* Popup Card (Contact Modal) */
.popup-card {
  background-color: #ffffff;
  width: 100%;
  max-width: 36rem;
  padding: 3rem;
  border-radius: 2.5rem;
  position: relative;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.2);
}

.popup-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-surface-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-purple);
  transition: all 0.3s;
}

.popup-close-btn:hover {
  background-color: var(--color-accent-purple);
  color: #ffffff;
  transform: rotate(180deg);
}

.popup-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.popup-form-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.popup-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

input {
  width: 100%;
  background-color: var(--color-surface-muted);
  border: 1px solid transparent;
  padding: 1rem;
  border-radius: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--color-accent-purple);
  box-shadow: 0 0 0 4px rgba(87, 45, 241, 0.1);
}

.wpforms-form button[type="submit"] {
  width: 100%;
  margin-top: 1rem;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-text {
  overflow: hidden;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

/*SINGLE*/
.wp-post-image {
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 0 50px 0 #0000002b;
}

.project-navigation {
  display: flex;
  justify-content: space-between;
}

.entry-title,
h1.wp-block-heading {
  font-size: 4.5rem;
  text-transform: uppercase;
  line-height: 0.8;
  margin-bottom: 3rem;
}

.breadcrumb-link {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: gray;
}

.breadcrumb-link svg {
  width: 17px;
}

.breadcrumb-link:hover {
  color: var(--color-accent-purple);
  transform: scale(1.01);
}

.ddg-button.btn-sm {
  font-size: .8rem;
  padding: .3rem 0.8rem;
}

#fixed-menubtn,
.fixed-menu-container {
  display: none;
}

/* Project Detail View Styles */
#project-detail-view {
  background-color: var(--color-bg-light);
  min-height: 100vh;
}

.project-detail-container {
  max-width: 80rem;
  margin: 0 auto;
}

.project-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.back-to-portfolio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: all 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.back-to-portfolio:hover {
  color: var(--color-accent-purple);
  transform: translateX(-5px);
}

.project-nav-arrows {
  display: flex;
  gap: 1rem;
}

.nav-arrow-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-arrow-btn:hover {
  background: var(--color-accent-purple);
  color: white;
  border-color: var(--color-accent-purple);
  transform: scale(1.1);
}

.project-hero {
  margin-bottom: 5rem;
}

.project-detail-title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  font-family: var(--font-display);
  line-height: 1.1;
}

.project-detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.meta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.meta-value {
  font-size: 1.25rem;
  font-weight: 600;
}

.project-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 8rem;
}

@media (max-width: 1024px) {
  .project-content-grid {
    grid-template-columns: 1fr;
  }
}

.project-description-section {
  position: sticky;
  top: 50px;
  height: fit-content;
}

.project-description-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.project-description-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.project-cta-box {
  background: white;
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
}

.project-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.project-cta-box p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.project-media-gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.detail-media-img,
.detail-media-video {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.other-projects-section {
  padding-top: 5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.other-projects-title {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  font-family: var(--font-display);
}

.other-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .other-projects-grid {
    grid-template-columns: 1fr;
  }
}

.other-project-card {
  cursor: pointer;
}

.other-project-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.other-project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.other-project-card:hover img {
  transform: scale(1.1);
}

.other-project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(87, 45, 241, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.other-project-card:hover .other-project-overlay {
  opacity: 1;
}

.other-project-overlay span {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.other-project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.other-project-card p {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.the-content {
  margin-top: 5%;
}

/*ABOUT*/
.about-mission-section {
  margin-bottom: 120px;
  max-width: 800px;
}

.mission-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-purple);
  margin-bottom: 20px;
}

.mission-text {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
}

.section-title-medium {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.way-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 120px;
}

.way-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.way-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-purple);
}

.way-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-purple);
  margin-bottom: 20px;
  font-family: monospace;
}

.way-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.way-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 120px;
}

.country-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.country-flag {
  font-size: 40px;
  margin-bottom: 15px;
}

.country-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.country-card p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.team-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 120px;
}

.team-detail-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-detail-img-wrapper {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
}

.team-detail-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-detail-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-detail-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-detail-bio {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-detail-social {
  color: var(--color-text);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.team-detail-social:hover {
  opacity: 1;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 120px;
}

.partner-card {
  filter: grayscale(1) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.partner-card:hover {
  opacity: 1;
  filter: grayscale(0) invert(0);
}

.partner-card img {
  max-width: 120px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.about-cta-section {
  padding-top: 60px;
}

.about-cta-card {
  background: linear-gradient(135deg, var(--color-purple), var(--color-ddg));
  padding: 80px 40px;
  border-radius: 40px;
  text-align: center;
  color: white;
}

.about-cta-card h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-cta-card p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  color: gray;
}


.carousel.logos .marquee-item {
  filter: grayscale(1);
  padding: 1rem;
  transition: .3s;
}

.carousel.logos .marquee-item:hover {
  filter: none;
}

.burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #ffffff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.burger-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

.burger-icon span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

.burger-icon span:nth-child(1),
.burger-icon span:nth-child(2) {
  top: 0px;
}

.burger-icon span:nth-child(3),
.burger-icon span:nth-child(4) {
  top: 18px;
}

.burger-icon span:nth-child(5),
.burger-icon span:nth-child(6) {
  top: 36px;
}

.burger-icon.open span:nth-child(1),
.burger-icon.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-icon.open span:nth-child(2),
.burger-icon.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger-icon.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

.burger-icon.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

.burger-icon.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.burger-icon.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.burger-icon.open span:nth-child(5) {
  left: 5px;
  top: 29px;
}

.burger-icon.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 29px;
}

.burger-icon {
  width: 60px;
  height: 45px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  transform: scale(0.5);
}

.nav-scrolled+#fixed-menubtn .burger-icon span {
  background: black;
}

.nav-scrolled+#fixed-menubtn .burger-icon.open span {
  background: #ffffff;
}

.nav-scrolled+#fixed-menubtn .burger-icon {
  margin-top: -6px;
  transform: scale(0.45);
}

/*GEORGIAN*/
:lang(ka-GE) .services-title {
  font-size: 4rem;
}

/*MOBILE QUERIES*/
@media screen and (max-width: 768px) {
  .cookiealert {
    flex-direction: column;
  }

  .hero-title {
    font-size: 4rem;
    flex-direction: column;
    gap: 0;
    margin: 1rem;
  }

  .hero-cta-container {
    gap: 0.8rem;
    flex-direction: row;
    font-size: small;
  }

  .hero-sub {
    margin-bottom: 1rem;
  }

  .hero-tag {
    margin-bottom: 1rem;
  }

  .hero-cta-btn svg {
    stroke-width: 1px;
  }


  .hero-cta-btn {
    padding: 10px 1rem;
  }

  #fixed-menubtn,
  .fixed-menu-container {
    display: block;
  }

  #fixed-menubtn {
    position: fixed;
    z-index: 55;
    right: 1rem;
    top: 1rem;
  }


  #fixed-menubtn svg {
    width: 50px;
    stroke: #373737;
    position: relative;
    z-index: 55;
    transition: 0.3s;
  }

  .project-description-section {
    position: relative;
  }

  .nav-scrolled+#fixed-menubtn {
    top: 0;
  }

  .nav-scrolled+#fixed-menubtn svg {
    width: 35px;
  }

  #fixed-menubtn.menu-open svg {
    stroke: white;
  }

  .fixed-menu-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000ba;
    right: 0;
    clip-path: circle(150.0% at 100% 0);
    top: 0;
    backdrop-filter: blur(7px);
    transition: 0.5s;
    z-index: 54;
  }

  .fixed-inner {
    width: 100%;
    height: 100%;
    max-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 8%;
  }


  .fixed-menu-container.hidden {
    clip-path: circle(0.0% at 100% 0);
  }

  .project-description-section {
    position: relative;
  }

  .menu-main-menu-container {
    padding: 1rem;
  }

  .fixed-menu-container .menu-main-menu-container ul {
    color: white;
    list-style: none;
    padding: 0;
    font-size: 7vw;
    line-height: 2;
    text-transform: uppercase;
    font-weight: 700;
  }

  .lang-switcher {
    width: fit-content;
    gap: 1rem;
  }

  .fixed-menu-container .socials {
    display: flex;
    gap: 1rem;
  }

  .lang-button {
    font-size: 1rem;
  }

  .mobile-social-link {
    color: white;
    background: linear-gradient(135deg, var(--color-accent-purple) 0%, #8b5cf6 100%);
    padding: .5rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-content {
    max-width: none;
    padding: 1rem;
    max-height: 90vh;
    max-height: calc(var(--vh, 1vh) * 90);
  }

  .modal-content {
    max-width: none;
    padding: 1rem;
    max-height: 90vh;
    max-height: calc(var(--vh, 1vh) * 90);
  }

  .ddg-card .services-cta-btn {
    transform: translateY(0);
    opacity: 1;
  }

  .ddg-card .service-card-illustration {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  .ddg-card .service-card-bg-glow {
    opacity: 1;
  }

  .service-card-illustration-wrapper {
    width: 40%
  }

  .team-header-title,
  .testimonials-title,
  .contact-title {
    font-size: 3.5rem;
  }

  .nav-cta-btn {
    font-size: 1rem;
    padding: 4% 15%;
  }

  .nav-container:not(.nav-scrolled)+#fixed-menubtn svg {
    stroke: white;
  }

  .menu-open .nav-scrolled+#fixed-menubtn svg {
    width: 50px;
    top: 1rem;
  }
}