/* ===========================
   CSS RESET & BASE STYLES
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

/* ===========================
   CSS VARIABLES
   =========================== */

:root {
  /* Colors */
  --color-white: #FFFFFF;
  --color-pink: #FD4192;
  --color-purple-dark: #1C1A4A;
  --color-purple-medium: #392B76;
  --color-purple-light: #71499D;
  --color-lavender: #DA5FEF;
  --color-teal: #70499D;
  --color-cyan: #91E3FB;
  --color-gray-light: #F5F5F5;

  /* Fonts */
  --font-primary: 'Heebo', sans-serif;
  --font-secondary: 'Exo 2', sans-serif;
  --font-decorative: 'Liu Jian Mao Cao', cursive;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Shadows */
  --shadow-sm: 0px 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0px 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===========================
   GENERAL LAYOUT & HELPERS
   =========================== */

#about,
#clients,
#services,
#process,
#team,
#contact {
  scroll-margin-top: 150px;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, #1C1A4A 0%, #221D56 100%);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.logo-text {
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.header-logo {
  max-height: 40px; /* Adjust as needed */
  width: auto;
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger[aria-expanded="true"] .line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--color-purple-dark) 0%, var(--color-purple-medium) 100%);
  padding: 80px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
}

.nav-menu[aria-hidden="false"] {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--color-white);
  font-size: 36px;
  line-height: 1;
  padding: 8px;
}

.nav-list {
  display: flex;
  flex-direction: column;
}

.nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list a {
  display: block;
  padding: 20px 0;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 300;
  transition: color 0.3s ease, padding-right 0.3s ease;
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--color-pink);
  padding-right: 10px;
}

/* Backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* Language Toggle */
.lang-toggle {
  font-family: var(--font-primary);
  font-size: 18px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle span,
.lang-toggle a {
  position: relative;
  padding: 5px;
  border-radius: 50%;
  transition: color 0.3s ease;
  z-index: 1;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--color-white); /* Both letters white by default */
}

.lang-toggle span:not(.separator)::before,
.lang-toggle a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/LangVector.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lang-toggle span:not(.separator):hover::before,
.lang-toggle a:hover::before {
  opacity: 1;
}

.lang-toggle span:not(.separator):hover,
.lang-toggle a:hover {
  color: var(--color-white); /* Keep white on hover */
  cursor: pointer;
}

.lang-toggle .separator {
  color: var(--color-pink);
  width: auto;
  height: auto;
  padding: 0;
}

.lang-toggle .active {
  color: var(--color-white); /* Active language also white */
  font-weight: 700;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  /* --- Header Structure --- */
  .header {
    height: 140px;
    display: block; 
    padding: 20px 40px;
  }

  .logo {
    position: absolute;
    top: 20px;
    left: 40px;
  }

  .lang-toggle {
    position: absolute;
    top: 20px;
    right: 40px;
  }
  
  .hamburger, .close-btn, .menu-backdrop {
    display: none;
  }

  /* --- Navigation Menu --- */
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: transparent;
    padding: 0;
    max-width: none;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-list li {
    border-bottom: none;
    display: flex;
    align-items: center;
    position: relative;
  }

  /* --- Links, Hovers, and Separators --- */
  .nav-list a {
    padding: 8px 20px;
    font-size: 24px;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-list a:hover {
    padding-right: 20px;
    color: var(--color-pink);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 20px;
    right: 20px;
    height: 8px;
    background-image: url('../assets/underline_top.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .nav-list a:hover::after {
    transform: scaleX(1);
  }

  .nav-list li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 24px;
    background-image: url('../assets/slash_top.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
  }
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
  background: linear-gradient(180deg, #1C1A4A 0%, #392B76 100%);
  position: relative;
  padding-top: 140px;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* טקסט */
.hero-content {
  flex: 1;
  max-width: 550px;
}

.hero-title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin: 0 0 20px 0;
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0;
}

/* קימי */
.hero-image {
  flex: 0 0 auto;
  position: relative;
  z-index: 100;
}

.hero-chameleon-image {
  width: 500px;
  height: auto;
  display: block;
  /* הרמה - רק הדלי יוצא, הרגליים על הקו */
  margin-bottom: -45px;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-chameleon-image {
    width: 420px;
    margin-bottom: -38px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    gap: 30px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-chameleon-image {
    width: 320px;
    margin-bottom: -30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-chameleon-image {
    width: 260px;
    margin-bottom: -25px;
  }
}

@media (min-width: 1920px) {
  .hero-container {
    padding: 0 80px;
  }

  .hero-chameleon-image {
    width: 600px;
    margin-bottom: -54px;
  }
}

/* ===========================
   STATS SECTION
   =========================== */

.stats-section {
  background: var(--color-white);
  padding: 80px 24px;
}

.section-title-large {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
  color: var(--color-purple-medium);
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 1;
}

/* Title decorations */
.title-decoration {
  position: absolute;
  display: block;
}

.whoarewe-decoration {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  width: 120px;
}

.ourclients-decoration {
  top: 50%;
  left: 57%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 40.5%;
  max-width: 270px;
  z-index: 0;
  pointer-events: none;
}

.howwework-decoration {
  bottom: -5px;
  left: 33%;
  transform: translateX(-50%);
  height: auto;
  width: 140px;
}

.decorated-text {
  display: inline-block;
  position: relative;
}

.whatwedo-decoration {
  position: absolute;
  top: -20px;
  right: -15px;
  height: auto;
  width: 100px;
  z-index: 1;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0;
  margin-bottom: 60px;
  justify-items: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: var(--color-purple-medium);
  margin-bottom: 16px;
}

.stat-label {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-purple-dark);
}

.stats-description {
  max-width: 800px;
  margin: 0 auto;
}

.body-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-purple-dark);
  text-align: right;
}

@media (min-width: 768px) {
  .section-title-large {
    font-size: 90px;
  }

  .whoarewe-decoration,
  .howwework-decoration {
    width: 250px;
  }

  .ourclients-decoration {
    max-width: 378px;
    width: 37.8%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .stat-number {
    font-size: 80px;
  }

  .stat-label {
    font-size: 20px;
  }

  .body-text {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .stat-number {
    font-size: 90px;
  }

  .stat-label {
    font-size: 22px;
  }
}

@media (min-width: 1920px) {
  .section-title-large {
    font-size: 120px;
    line-height: 1.1;
  }

  .whoarewe-decoration,
  .howwework-decoration {
    width: 350px;
    bottom: -35px;
  }

  .ourclients-decoration {
    max-width: 495px;
    width: 34.2%;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    gap: 78px;
  }

  .stat-number {
    font-size: 100px;
    line-height: 0.9;
  }

  .stat-label {
    font-size: 24px;
    line-height: 1.875;
  }

  .body-text {
    font-size: 24px;
    line-height: 1.333;
  }
}

/* ===========================
   CLIENT LOGOS SECTION
   =========================== */

.clients-section {
  background: var(--color-gray-light);
  padding: 80px 20px;
}

.logos-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.client-logo {
  width: auto;
  height: 50px;
  max-width: 150px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media (min-width: 768px) {
  .client-logo {
    height: 60px;
    max-width: 180px;
  }
}

@media (min-width: 1920px) {
  .logos-container {
    gap: 50px;
  }

  .logo-row {
    gap: 50px;
  }

  .client-logo {
    height: 70px;
    max-width: 200px;
  }
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services-section {
  background: linear-gradient(180deg, #1C1A4A 0%, #392B76 100%);
  padding: 80px 20px 100px;
}

.section-title-medium {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
  color: var(--color-white);
  margin: 0 0 60px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}

@media (min-width: 768px) {
  .section-title-medium {
    font-size: 90px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .section-title-medium {
    font-size: 90px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
  }

  .service-card h3 {
    font-size: 26px;
  }
}

@media (min-width: 1920px) {
  .section-title-medium {
    font-size: 120px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 280px);
    justify-content: center;
    gap: 80px 60px;
  }

  .service-icon {
    width: 100px;
    height: 100px;
  }

  .service-card h3 {
    font-size: 28px;
  }
}

/* ===========================
   WORK PROCESS SECTION
   =========================== */

.process-section {
  background: var(--color-gray-light);
  padding: 100px 24px 60px;
  position: relative;
  /* לא overflow:hidden - מאפשר לקימי לצאת */
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.process-pillar {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Star decoration above pillars */
.pillar-star {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: block;
}

.process-pillar h3 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 32px;
  color: var(--color-purple-medium);
  margin-bottom: 12px;
  text-align: center;
}

.process-pillar p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-purple-dark);
  text-align: center;
}

/* --- קימי הקטנה על הגבול --- */
.kimmy-transition {
  position: absolute;
  bottom: 0;
  /* קימי בצד ימין ב-25% מרוחב הדף */
  left: 25%;
  transform: translateX(-50%);
  z-index: 100;
}

.chameleon-work {
  width: 180px;
  height: auto;
  display: block;
  /* הרגליים על הקו - רק חלק מהגוף יורד לסקשן הבא */
  margin-bottom: -30px;
}

.kimmy-title {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: auto;
  z-index: 101;
}

.kimmy-description {
  position: absolute;
  bottom: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: auto;
  z-index: 101;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .process-pillar h3 {
    font-size: 60px;
  }

  .process-pillar p {
    font-size: 24px;
  }

  /* קימי בצד ימין ב-25% */
  .kimmy-transition {
    left: 25%;
  }

  .chameleon-work {
    width: 160px;
    margin-bottom: -28px;
  }

}

@media (max-width: 767px) {
  /* במובייל: קימי במרכז, טקסט מוסתר */
  .kimmy-text-container {
    display: none;
  }

  .kimmy-transition {
    left: 50%;
  }

  .chameleon-work {
    width: 140px;
    margin-bottom: -25px;
  }

  .kimmy-title {
    width: 50px;
    bottom: -30px;
  }

  .kimmy-description {
    width: 120px;
    bottom: -85px;
  }

  .team-section {
    padding-top: 200px;
  }
}

@media (max-width: 480px) {
  .chameleon-work {
    width: 120px;
    margin-bottom: -20px;
  }

  .kimmy-title {
    width: 45px;
    bottom: -25px;
  }

  .kimmy-description {
    width: 100px;
    bottom: -75px;
  }

  .team-section {
    padding-top: 180px;
  }
}

@media (min-width: 1024px) {
  .chameleon-work {
    width: 180px;
    margin-bottom: -30px;
  }
}

@media (min-width: 1920px) {
  .process-pillar h3 {
    font-size: 70px;
  }

  .process-pillar p {
    font-size: 28px;
  }

  .chameleon-work {
    width: 200px;
    margin-bottom: -34px;
  }
}

/* ===========================
   TEAM SECTION
   =========================== */

.team-section {
  background: linear-gradient(180deg, #1C1A4A 0%, #392B76 100%);
  padding: 80px 24px 100px;
  padding-top: 60px; /* מקום לקימי שיורדת מלמעלה */
  position: relative;
  z-index: 0; /* נמוך יותר מקימי */
  border-bottom: 2px solid #FFFFFF;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto 0;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.team-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 24px;
  color: #FD4192;
  margin-bottom: 8px;
}

.team-role {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-photo {
    width: 160px;
    height: 160px;
  }
}

@media (min-width: 768px) {
  .team-section {
    padding-top: 200px;
  }

  .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
  }

  .team-photo {
    width: 180px;
    height: 180px;
  }

  .team-name {
    font-size: 22px;
  }

  .team-role {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
  }

  .team-photo {
    width: 190px;
    height: 190px;
  }
}

@media (min-width: 1024px) {
  .team-section {
    padding-top: 40px;
  }
}

@media (min-width: 1920px) {
  .team-section {
    padding-top: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(5, 200px);
    justify-content: center;
    gap: 63px;
  }

  .team-photo {
    width: 200px;
    height: 200px;
  }

  .team-name {
    font-size: 24px;
  }

  .team-role {
    font-size: 18px;
  }
}

.team-tagline {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  margin-top: 60px;
}

@media (min-width: 1920px) {
  .team-tagline {
    font-size: 28px;
  }
}

/* ===========================
   CATEGORIES SECTION
   =========================== */

.categories-section {
  background: linear-gradient(180deg, var(--color-purple-dark) 0%, var(--color-purple-medium) 100%);
  padding: 40px 20px;
  text-align: center;
  overflow: visible;
}

.categories-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.categories-text,
.categories-bottom {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.6;
}

.categories-text {
  font-size: 24px;
  margin-bottom: 20px;
}

.categories-bottom {
  font-size: 20px;
}

.categories-text span,
.categories-bottom span {
  display: inline;
  white-space: nowrap;
}

.separator {
  color: var(--color-pink);
  margin: 0 12px;
}

@media (min-width: 768px) {
  .categories-text {
    font-size: 32px;
  }

  .categories-bottom {
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .categories-text {
    font-size: 40px;
  }

  .categories-bottom {
    font-size: 32px;
  }
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: linear-gradient(180deg, #392B76 0%, #1C1A4A 100%);
  padding: 60px 24px 40px;
  color: var(--color-white);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

/* Right Section: Social + Contact */
.footer-right {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  text-align: right;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 32px;
  color: #392B76;
}

.social-icons a:hover {
  background: #FD4192;
  color: #FFFFFF;
}

.contact-block h3 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-white);
  margin: 0 0 12px 0;
}

.contact-info {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 24px;
  color: var(--color-white);
  margin: 8px 0;
}

.contact-info a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--color-pink);
}

.contact-info .slash-separator {
  color: #EE66A6;
  margin: 0 10px;
}

/* Left Section: Legal Links */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 24px;
}

.footer-links span {
  display: none;
  width: 10px;
  height: 20px;
  background-image: url('../assets/slash_footer.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}

.footer-links a {
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--color-pink);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
  }

  .footer-links span {
    display: inline-block;
  }

  .footer-left {
    align-items: flex-start;
  }
}

@media (min-width: 1920px) {
  .contact-block h3 {
    font-size: 28px;
  }

  .contact-info {
    font-size: 26px;
  }

  .footer-links {
    font-size: 26px;
  }
}

/* ===========================
   ACCESSIBILITY & FOCUS STATES
   =========================== */

*:focus-visible {
  outline: 3px solid var(--color-pink);
  outline-offset: 3px;
  border-radius: 4px;
}

*:focus {
  outline: none;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ===========================
   ANIMATIONS
   =========================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}