@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "bahnschrift";
  src: url("./fonts/bahnschrift.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "gotham";
  src: url("./fonts/gotham-medium.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "inter";
  src: url("./fonts/inter.ttf") format("truetype");
  font-display: swap;
}
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: "inter", sans-serif;
  background-color: #F36F21;
  color: #333333;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: "gotham", sans-serif;
  transition: color 0.3s ease;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: #F36F21;
  color: #ffffff;
  padding: 10px 20px;
  z-index: 10000;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top 0.3s ease;
  display: none;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid white;
  display: none;
}

button {
  border: none;
  cursor: pointer;
  background: none;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hidden {
  display: none !important;
}

.z-50 {
  z-index: 50;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Main Wrapper */
.main {
  width: 100%;
  overflow-x: hidden;
}

/* Header & Navigation Components */
.site-header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 0 5%;
  position: fixed;
  z-index: 1000;
  background-color: #FF6A20;
}
@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }
}
@media (max-width: 640px) {
  .site-header {
    padding: 0 5%;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .site-header {
    height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}

.logo-container {
  position: absolute;
  left: calc((100% - clamp(320px, 75%, 1200px)) / 2);
  z-index: 10;
}
.logo-container img {
  height: clamp(35px, 5vw, 120px);
  width: auto;
}
@media (max-width: 1024px) {
  .logo-container img {
    height: 80px;
  }
}
@media (max-width: 480px) {
  .logo-container img {
    height: 48px;
  }
}
@media (max-width: 640px) {
  .logo-container {
    position: static;
    transform: none;
  }
}
@media (max-width: 480px) {
  .logo-container {
    flex-shrink: 0;
  }
}

.move-on-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  flex: 1;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  .move-on-container {
    flex: 0 0 auto;
  }
}
@media (max-width: 480px) {
  .move-on-container {
    justify-content: flex-end;
  }
}

.button-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.move-on-button {
  background-color: #ffffff;
  color: #F36F21;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.move-on-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .move-on-button {
    padding: 6px 15px;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .move-on-button {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
  }
}

.progress-bar-container {
  width: clamp(150px, 40vw, 800px);
  border-radius: 0;
  overflow: visible;
  background: transparent;
  margin-left: -10px;
}
.progress-bar-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
@media (max-width: 768px) {
  .progress-bar-container {
    width: clamp(60px, 15vw, 120px);
  }
}
@media (max-width: 640px) {
  .progress-bar-container {
    display: none;
  }
}

/* Hero Section */
.herosection {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F36F21;
  position: relative;
  overflow: hidden;
}

#heroImageContainer {
  width: 90%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#heroImage {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Adapt Hero / Video Panel */
.landing-main {
  width: 100%;
  overflow: hidden;
}
.landing-main video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-adapt-section {
  position: relative;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  background: #F36F21;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-adapt-content {
  position: relative;
  z-index: 2;
  width: min(92%, 900px);
  text-align: center;
}

.hero-tagline {
  font-family: "bahnschrift", sans-serif;
  font-size: clamp(26px, 3.3vw, 52px);
  color: #231F20;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.hero-title-adapt {
  font-family: "bahnschrift", sans-serif;
  font-size: clamp(66px, 13vw, 180px);
  line-height: 0.88;
  color: #FEC42B;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.hero-video-panel {
  margin: 0 auto;
  width: min(90vw, 760px);
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.08);
}
.hero-video-panel video {
  display: block;
  width: 100%;
  height: clamp(180px, 34vw, 380px);
  -o-object-fit: cover;
     object-fit: cover;
}

/* Hero Shapes */
.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-shape-left-top {
  top: 20%;
  left: 0;
  width: clamp(70px, 9vw, 140px);
  height: clamp(120px, 17vw, 200px);
  background: conic-gradient(from 90deg, #FEC42B 0 25%, #FF6A20 0 50%, #FFA109 0 75%, #FEC42B 0);
}

.hero-shape-left-middle {
  left: 6%;
  top: 56%;
  width: clamp(120px, 16vw, 240px);
  height: clamp(60px, 8vw, 120px);
  background: linear-gradient(90deg, #FFA109 50%, #FEC42B 50%);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
}

.hero-shape-left-bottom {
  left: -2%;
  bottom: 4%;
  width: clamp(130px, 18vw, 250px);
  height: clamp(90px, 12vw, 170px);
  background: radial-gradient(circle at 28% 50%, #FFAF02 0 30%, transparent 31%), linear-gradient(45deg, transparent 49%, #FEC42B 50%);
}

.hero-shape-right-top {
  right: -4%;
  top: 20%;
  width: clamp(130px, 17vw, 250px);
  height: clamp(130px, 17vw, 250px);
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, #FFAF02 0 22%, transparent 23%), linear-gradient(135deg, #FEC42B 50%, transparent 50%);
}

.hero-shape-right-bottom {
  right: -3%;
  bottom: 8%;
  width: clamp(150px, 18vw, 260px);
  height: clamp(80px, 10vw, 130px);
  border-radius: 999px;
  background: radial-gradient(circle at 28% 50%, transparent 16%, #FFAF02 17% 30%, transparent 31%), linear-gradient(90deg, transparent 54%, #FEC42B 55%);
}

/* Section Common Styles */
.section-container {
  width: clamp(320px, 75%, 1200px);
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .section-container {
    width: 90%;
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .section-container {
    width: 92%;
  }
}
@media (max-width: 480px) {
  .section-container {
    padding: 0;
  }
}

/* Sections Spacer */
.section-1, .section-2, .section-3, .section-4, .section-5 {
  margin-top: 80px;
}
@media (max-width: 480px) {
  .section-1, .section-2, .section-3, .section-4, .section-5 {
    margin-top: 0;
    min-height: auto !important;
    height: auto !important;
  }
}

/* Perch Section (Section 1) */
.section-1 {
  background-color: #FF7D24;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-1-container {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .section-1-container {
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .section-1-container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.headline-container {
  flex: 1;
}
.headline-container h2 {
  color: #ffffff;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}
.headline-container h2 span {
  color: #231F20;
  font-size: 1.25em;
  font-family: "bahnschrift", sans-serif;
  display: block;
  margin-top: 5px;
}
@media (max-width: 480px) {
  .headline-container h2 span {
    font-size: 0.85em;
  }
}
@media (max-width: 768px) {
  .headline-container h2 {
    font-size: clamp(28px, 4vw, 42px);
  }
}
@media (max-width: 480px) {
  .headline-container h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
}
.headline-container p:not(.sub-headline) {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 1.4vw, 28px);
  line-height: 1.2;
  max-width: 600px;
}
@media (max-width: 768px) {
  .headline-container p:not(.sub-headline) {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .headline-container p:not(.sub-headline) {
    font-size: 16px;
    line-height: 1.3;
    color: #111111;
    opacity: 0.9;
  }
}

.sub-headline {
  color: #ffffff;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .sub-headline {
    font-size: 18px;
    margin-bottom: 15px;
    color: #231F20;
  }
}

.section-1-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.section-1-image img {
  width: 100%;
  max-width: 550px;
}
@media (max-width: 768px) {
  .section-1-image img {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .section-1-image img {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .section-1-image {
    justify-content: flex-start;
  }
}

/* Core Section (Section 2) */
.section-2 {
  background-color: #FEC42B;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.section-2 h2 {
  color: #F36F21;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section-2 h2 {
    font-size: clamp(28px, 4vw, 42px);
  }
}
@media (max-width: 480px) {
  .section-2 h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
}
.section-2 p {
  color: #2C2E35;
  font-weight: 400;
  font-size: clamp(24px, 1.4vw, 28px);
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 450px;
}
@media (max-width: 768px) {
  .section-2 p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-2 p {
    font-size: 16px;
    line-height: 1.3;
    color: #111111;
  }
}

.section-2-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 10;
  gap: 80px;
}
@media (max-width: 1024px) {
  .section-2-container {
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .section-2-container {
    flex-direction: column;
    gap: 30px;
  }
}

.section-2-bg {
  display: none;
}
@media (min-width: 1280px) {
  .section-2-bg {
    display: block;
    position: absolute;
    inset: 0;
    bottom: 0;
    background-image: url("/src/images/form-bg.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 1;
  }
}

.key-points-container {
  margin-top: 30px;
}

.key-point {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.key-point .label {
  color: #231F20;
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 34px);
  font-family: "inter", sans-serif;
}
@media (max-width: 480px) {
  .key-point .label {
    font-size: 26px;
  }
}
.key-point .desc {
  color: #ffffff;
  font-size: clamp(18px, 2.4vw, 31px);
  font-weight: 400;
}
@media (max-width: 480px) {
  .key-point .desc {
    font-size: 18px;
  }
}

.section-2-image {
  display: flex;
}
.section-2-image img {
  width: 750px;
  max-width: 350px;
}
@media (max-width: 768px) {
  .section-2-image img {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .section-2-image img {
    max-width: 55%;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .section-2-image {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .section-2-image {
    margin-top: 20px;
    justify-content: center;
  }
}

/* Spectrum Section (Section 3) */
.section-3 {
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
}

.section-3-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}
@media (max-width: 768px) {
  .section-3-top {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .section-3-top {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.section-3-title {
  flex: 1;
}
.section-3-title h2 {
  color: #F36F21;
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .section-3-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
.section-3-title p {
  color: #444444;
  font-size: clamp(16px, 1.5vw, 24px);
  max-width: 600px;
  line-height: 1.4;
}

.section-3-icon {
  flex: 0 0 auto;
}
@media (max-width: 480px) {
  .section-3-icon img {
    width: 80px;
    height: auto;
  }
}

.section-3-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .section-3-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .section-3-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.spectrum-card {
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spectrum-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.spectrum-card.branding {
  background-color: #FFDD17;
}
.spectrum-card.advertising {
  background-color: #F9A628;
}
.spectrum-card.animation {
  background-color: #FCB925;
}
.spectrum-card.uiux {
  background-color: #FECA0A;
}
@media (max-width: 480px) {
  .spectrum-card {
    padding: 20px;
    text-align: left;
    align-items: flex-start;
  }
}

.card-icon {
  height: 80px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .card-icon {
    justify-content: flex-start;
    height: 60px;
    margin-bottom: 20px;
  }
}

.icon-triangle {
  width: 60px;
  height: 60px;
  background-color: #FECA0A;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #FCB925;
  border-radius: 50%;
}

.icon-animation {
  width: 60px;
  height: 60px;
  background-color: #FFDD17;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-animation-inner {
  width: 100%;
  height: 100%;
  background-color: #FFAF02;
  border-radius: 50%;
}

.icon-uiux {
  width: 60px;
  height: 60px;
  background-color: #FCB925;
  border-bottom-right-radius: 60px;
}

.card-title {
  color: #111;
  font-family: "gotham", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 1.8vw, 28px);
  letter-spacing: 0.5px;
}

.card-desc {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  font-family: "gotham", sans-serif;
  color: #231F20;
  line-height: 1.3;
  text-align: left;
}
.card-desc span {
  display: block;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 12px;
  color: #231F20;
}

/* Change Section (Section Bird) */
.section-bird {
  background-color: #FFC141;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 0;
}
.section-bird .section-bird-container {
  display: flex;
  align-items: flex-start;
  gap: 120px;
}
@media (max-width: 1023px) {
  .section-bird .section-bird-container {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .section-bird .section-bird-container {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }
}
.section-bird .section-bird-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.section-bird .section-bird-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
@media (max-width: 767px) {
  .section-bird .section-bird-image {
    order: 2;
  }
  .section-bird .section-bird-image img {
    max-width: 300px;
  }
}
.section-bird .section-bird-content {
  flex: 1;
  padding: 0;
}
.section-bird .section-bird-content .section-title {
  color: #ffffff;
  font-family: "bahnschrift", sans-serif;
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .section-bird .section-bird-content .section-title {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .section-bird .section-bird-content .section-title {
    margin-bottom: 30px;
  }
}
.section-bird .section-bird-content .bird-body p {
  color: #2C2E35;
  font-family: "gotham", sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.4;
  margin-bottom: 25px;
  max-width: 580px;
  font-weight: 500;
}
.section-bird .section-bird-content .bird-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-bird .section-bird-content {
    order: 1;
    width: 100%;
  }
}

/* Behind Section (Section Team) */
.section-team {
  background-color: #FF7D24;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  overflow: hidden;
}
.section-team .section-team-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}
@media (max-width: 1199px) {
  .section-team .section-team-container {
    gap: 80px;
  }
}
@media (max-width: 1023px) {
  .section-team .section-team-container {
    flex-direction: column;
    text-align: left;
    padding: 0;
  }
}
.section-team .team-content {
  flex: 1;
  max-width: 500px;
}
.section-team .team-content .team-title {
  color: #ffffff;
  font-family: "bahnschrift", sans-serif;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 0.95;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .section-team .team-content .team-title {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .section-team .team-content .team-title {
    margin-bottom: 20px;
  }
}
.section-team .team-content .team-body p {
  color: #2C2E35;
  font-family: "gotham", sans-serif;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 500;
}
.section-team .powered-by p {
  font-family: "gotham", sans-serif;
  text-transform: lowercase;
  color: #2C2E35;
  margin-bottom: -20px;
  font-weight: 500;
}
.section-team .coffee-cup-container {
  position: relative;
  display: flex;
  align-items: center;
}
.section-team .coffee-cup-container .coffee-cup {
  width: clamp(150px, 20vw, 220px);
  height: auto;
}
.section-team .team-grid-container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.section-team .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 600px;
}
@media (max-width: 767px) {
  .section-team .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-team .team-member {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
}
.section-team .team-member img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.section-team .team-member:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.section-team .team-hover-info {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  z-index: 10;
  white-space: nowrap;
}
.section-team .team-hover-info.active {
  opacity: 1;
  transform: translate(-50%, 0);
}
.section-team .team-hover-info .hover-name {
  font-family: "gotham", sans-serif;
  color: #2C2E35;
  font-size: clamp(14px, 1.6vw, 24px);
  line-height: 1;
  font-weight: 400;
}
.section-team .team-hover-info .hover-designation {
  font-family: "gotham", sans-serif;
  color: #2C2E35;
  font-size: clamp(10px, 1.4vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Menu Components */
.menu-card {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  background: #58595B;
  border-radius: 12px;
  padding: 15px 10px;
  width: 160px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 100;
}
@media (max-width: 480px) {
  .menu-card {
    right: 0;
    left: auto;
    width: 180px;
    padding: 20px 15px;
    margin-top: 10px;
    border-radius: 16px;
    background: #333333;
  }
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-item {
  padding: 6px 12px;
  text-align: right;
  color: #FFC005;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  transition: background 0.2s ease;
}
.menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}
.menu-item a {
  font-family: "inter", sans-serif;
  font-weight: 700;
}
.menu-item a:hover {
  color: #FFAF02;
}
@media (max-width: 480px) {
  .menu-item {
    padding: 10px 0;
    font-size: 16px;
  }
}

.indicator-placeholder {
  width: 8px;
  flex-shrink: 0;
}

.active-indicator {
  position: absolute;
  width: 0;
  height: 0;
  border-right: 10px solid #FFAF02;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
@media (max-width: 480px) {
  .active-indicator {
    display: none !important;
  }
}

/* Contact Section */
.section-contact {
  background-color: #231F20;
  color: #ffffff;
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.contact-info h2 {
  font-size: clamp(40px, 8vw, 84px);
  line-height: 0.9;
  margin-bottom: 30px;
  color: #FFAF02;
}
@media (max-width: 480px) {
  .contact-info h2 {
    font-size: 48px;
  }
}
.contact-info p {
  font-size: 20px;
  margin-bottom: 60px;
  opacity: 0.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-item .label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #FFAF02;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.detail-item p {
  font-size: clamp(18px, 1.5vw, 24px);
  margin: 0;
  font-weight: 500;
}

.social-link {
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 900;
  font-family: "gotham", sans-serif;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
}
.social-link:hover {
  color: #FFAF02;
  transform: translateX(10px);
}
@media (max-width: 480px) {
  .social-link {
    font-size: 32px;
  }
}

/* Footer Section */
.site-footer {
  background-color: #111111;
  color: #666;
  padding: 40px 0;
  border-top: 1px solid #222;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-container p {
  font-size: 12px;
}
@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 30px;
}
.footer-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer-links a:hover {
  color: #ffffff;
}

/* Spark Section (Reference Implementation) */
.spark-section {
  background-color: #FF7D24;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.spark-section .spark-container {
  display: block;
}
.spark-section .spark-title {
  color: #ffffff;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 25px;
  font-family: "bahnschrift", sans-serif;
}
.spark-section .spark-title .spark-highlight {
  font-size: 1.25em;
  display: block;
  margin-top: 5px;
  color: #2C2E35;
  font-family: "bahnschrift", sans-serif;
}
.spark-section .spark-subtitle {
  color: #ffffff;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 1px;
}
.spark-section .spark-body-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 8vw, 120px);
  width: 100%;
}
.spark-section .spark-body {
  color: #ffffff;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  max-width: 580px;
  opacity: 0.9;
  flex: 1.2;
}
.spark-section .spark-image {
  flex: 0.8;
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
}
.spark-section .spark-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  margin-top: -20px;
}
.spark-section {
  /* Responsive Handling within class as requested */
}
@media (max-width: 1023px) {
  .spark-section .spark-container {
    width: 90%;
    gap: 40px;
  }
  .spark-section .spark-title {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .spark-section {
    min-height: auto;
    padding: 0;
  }
  .spark-section .spark-container {
    flex-direction: column;
    gap: 40px;
    text-align: left;
    padding: 60px 0;
  }
  .spark-section .spark-image {
    justify-content: center;
    width: 100%;
  }
  .spark-section .spark-image img {
    max-width: 100%;
  }
  .spark-section .spark-title {
    font-size: 42px;
  }
  .spark-section .spark-title .spark-highlight {
    font-size: 1.3em;
  }
  .spark-section .spark-subtitle {
    font-size: 16px;
  }
  .spark-section .spark-body {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .spark-section .spark-title {
    font-size: 34px;
  }
}

/* Movement Section */
.movement-section {
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.movement-section .movement-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 80px;
  padding-left: 0;
}
.movement-section .movement-image {
  flex: 1.2;
  display: flex;
  justify-content: flex-start;
}
.movement-section .movement-image img {
  width: 100%;
  max-width: 850px;
  height: auto;
  display: block;
  transform-origin: left center;
}
.movement-section .movement-content {
  flex: 0.8;
  padding-right: 5%;
  padding-left: 5%;
}
.movement-section .movement-tagline {
  color: #2C2E35;
  font-size: clamp(16px, 1.8vw, 25px);
  font-weight: 500;
  margin-bottom: 25px;
  max-width: 320px;
  line-height: 1.25;
  font-family: "inter", sans-serif;
}
.movement-section .movement-title {
  color: #FF6A20;
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 400;
  line-height: 0.88;
  font-family: "bahnschrift", sans-serif;
  letter-spacing: -0.01em;
}
.movement-section {
  /* Responsive Handling within class as requested */
}
@media (max-width: 1023px) {
  .movement-section .movement-container {
    gap: 40px;
  }
  .movement-section .movement-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .movement-section {
    min-height: auto;
    padding: 80px 0;
  }
  .movement-section .movement-container {
    flex-direction: column;
    gap: 50px;
    text-align: left;
  }
  .movement-section .movement-image {
    width: 100%;
    justify-content: center;
  }
  .movement-section .movement-image img {
    max-width: 100%;
    transform: scale(1);
  }
  .movement-section .movement-content {
    width: 100%;
  }
  .movement-section .movement-title {
    font-size: 64px;
  }
}
@media (max-width: 479px) {
  .movement-section .movement-title {
    font-size: 44px;
  }
  .movement-section .movement-tagline {
    font-size: 16px;
  }
}

/* Vision Section */
.vision-section {
  background-color: #FFC141;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.vision-section .vision-container {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}
.vision-section .vision-content {
  flex: 1.2;
}
.vision-section .vision-title {
  color: #FF7D24;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 40px;
  font-family: "bahnschrift", sans-serif;
}
.vision-section .vision-body {
  margin-bottom: 40px;
}
.vision-section .vision-body p {
  color: #2C2E35;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.3;
  margin-bottom: 25px;
  max-width: 580px;
  font-weight: 500;
}
.vision-section .vision-body p.philosophy-intro {
  font-weight: 500;
  color: #2C2E35;
  margin-bottom: 10px;
}
.vision-section .vision-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vision-section .vision-points .point-item {
  font-size: clamp(24px, 3.5vw, 42px);
  font-family: "inter", sans-serif;
  line-height: 1.1;
  color: #2C2E35;
}
.vision-section .vision-points .point-item strong {
  font-weight: 400;
  font-family: "bahnschrift", sans-serif;
}
.vision-section .vision-points .point-item span {
  font-weight: 400;
  font-family: "bahnschrift", sans-serif;
  font-size: 26px;
  color: #ffffff;
}
.vision-section .vision-image {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.vision-section .vision-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  transform: translateY(100px);
}
.vision-section {
  /* Responsive Handling within class as requested */
}
@media (max-width: 1023px) {
  .vision-section .vision-container {
    gap: 0px;
  }
  .vision-section .vision-title {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .vision-section {
    min-height: auto;
    padding: 0;
  }
  .vision-section .vision-container {
    flex-direction: column;
    text-align: left;
  }
  .vision-section .vision-image {
    width: 100%;
    justify-content: center;
  }
  .vision-section .vision-image img {
    max-width: 400px;
    transform: translateY(40px);
  }
  .vision-section .vision-content {
    width: 100%;
  }
  .vision-section .vision-title {
    font-size: 42px;
  }
  .vision-section .vision-points .point-item {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  .vision-section .vision-title {
    font-size: 34px;
  }
  .vision-section .vision-body p {
    font-size: 16px;
  }
  .vision-section .vision-points .point-item {
    font-size: 24px;
  }
}

/* Reach Section */
.reach-section {
  background-color: #ffffff;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.reach-section .reach-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.reach-section .reach-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .reach-section .reach-top {
    flex-direction: column;
    text-align: center;
  }
}
.reach-section .reach-header {
  flex: 1;
}
.reach-section .reach-header .reach-title {
  color: #FF7D24;
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 400;
  margin-bottom: 25px;
  font-family: "bahnschrift", sans-serif;
  display: inline-block;
  line-height: 1;
}
@media (max-width: 1023px) {
  .reach-section .reach-header .reach-title {
    font-size: 52px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .reach-section .reach-header .reach-title {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
.reach-section .reach-header .reach-tagline {
  color: #2C2E35;
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.25;
  max-width: 500px;
}
.reach-section .reach-image {
  flex: 0 0 auto;
}
.reach-section .reach-image img {
  width: clamp(150px, 20vw, 200px);
  height: auto;
}
.reach-section .section-3-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) {
  .reach-section .section-3-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .reach-section .section-3-cards {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.reach-section .spectrum-card {
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}
.reach-section .spectrum-card:hover {
  transform: translateY(-10px);
}
.reach-section .spectrum-card.branding {
  background-color: #FFDA42;
}
.reach-section .spectrum-card.advertising {
  background-color: #FFA434;
}
.reach-section .spectrum-card.animation {
  background-color: #FFB639;
}
.reach-section .spectrum-card.uiux {
  background-color: #FFC734;
}
.reach-section .spectrum-card .card-icon {
  height: 60px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.reach-section .spectrum-card .icon-triangle {
  width: 60px;
  height: 60px;
  background-color: #FFC734;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.8;
}
.reach-section .spectrum-card .icon-circle {
  width: 60px;
  height: 60px;
  background-color: #FFB639;
  border-radius: 50%;
  opacity: 0.8;
}
.reach-section .spectrum-card .icon-animation {
  width: 60px;
  height: 60px;
  background-color: #FFDA42;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
.reach-section .spectrum-card .icon-animation .icon-animation-inner {
  width: 100%;
  height: 100%;
  background-color: #FFAF02;
  border-radius: 50%;
}
.reach-section .spectrum-card .icon-uiux {
  width: 60px;
  height: 60px;
  background-color: #FFB639;
  border-bottom-right-radius: 60px;
  opacity: 0.8;
}
.reach-section .spectrum-card .card-title {
  color: #231F20;
  font-family: "bahnschrift", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
}
.reach-section .spectrum-card .card-desc {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  color: #231F20;
}
.reach-section .spectrum-card .card-desc span {
  display: block;
  font-weight: 400;
  margin-top: 10px;
}

/* Work Gallery Carousel Section */
.work-gallery-section {
  width: 100%;
  background-color: #E6E7E8;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1023px) {
  .work-gallery-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .work-gallery-section {
    padding: 60px 0;
  }
}

.gallery-ticker {
  display: flex;
  width: 100%;
}

.gallery-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 60s linear infinite;
  gap: 40px;
}
.gallery-track:hover {
  animation-play-state: paused;
}
@media (max-width: 767px) {
  .gallery-track {
    gap: 20px;
    animation-duration: 40s;
  }
}

.gallery-item {
  flex: 0 0 auto;
  width: clamp(320px, 25vw, 480px);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 7/10;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fdfdfd;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.gallery-item img:hover {
  transform: translateY(-15px) scale(1.04);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1023px) {
  .gallery-item {
    width: clamp(250px, 40vw, 350px);
  }
}
@media (max-width: 767px) {
  .gallery-item {
    width: 220px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Clients & Carousel Section */
.clients-section {
  background-color: #ffffff;
  padding: 40px 0;
  overflow: hidden;
}
.clients-section .clients-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .clients-section .clients-meta {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 40px;
  }
}
.clients-section .clients-text .clients-title {
  color: #FF7D24;
  font-family: "bahnschrift", sans-serif;
  font-size: clamp(42px, 6vw, 62px);
  line-height: 0.95;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .clients-section .clients-text .clients-title {
    font-size: 52px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .clients-section .clients-text .clients-title {
    font-size: 42px;
    margin-bottom: 20px;
  }
}
.clients-section .clients-text .clients-subtitle {
  color: #2C2E35;
  font-family: "gotham", sans-serif;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
}
.clients-section .clients-text .clients-cta {
  color: #2C2E35;
  font-family: "gotham", sans-serif;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.2;
  font-weight: 500;
}
.clients-section .clients-visual {
  flex: 0.8;
  justify-content: flex-end;
}
.clients-section .clients-visual img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media (max-width: 767px) {
  .clients-section .clients-visual {
    width: 100%;
    justify-content: center;
  }
  .clients-section .clients-visual img {
    max-width: 320px;
  }
}

.clients-carousel-wrapper {
  width: 100%;
  margin-top: 40px;
  background: transparent;
}

.clients-carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
          mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.clients-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 40s linear infinite;
  gap: 80px;
  align-items: center;
  padding: 20px 0;
}
.clients-track:hover {
  animation-play-state: paused;
}
@media (max-width: 767px) {
  .clients-track {
    gap: 50px;
    animation-duration: 30s;
  }
}

.client-item {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s ease;
}
.client-item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .client-item {
    width: 140px;
    height: 80px;
  }
}

/* Contact Section New Styles */
.contact-section-new {
  background-color: #FF7D24;
  padding: 60px 0;
  overflow: hidden;
}
.contact-section-new .contact-container-new {
  width: clamp(320px, 75%, 1200px);
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .contact-section-new .contact-container-new {
    width: 90%;
  }
}
.contact-section-new .contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-section-new .form-row-grid {
  display: grid;
  gap: 30px;
  width: 100%;
}
.contact-section-new .form-row-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
  .contact-section-new .form-row-grid.three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .contact-section-new .form-row-grid.three-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contact-section-new .form-row-grid.full-col {
  grid-template-columns: 1fr;
}
.contact-section-new .form-row-grid.split-col {
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 767px) {
  .contact-section-new .form-row-grid.split-col {
    grid-template-columns: 1fr;
  }
}
.contact-section-new .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-section-new .form-group label {
  color: #ffffff;
  font-family: "gotham", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.contact-section-new .form-group.details-group {
  flex: 1;
}
.contact-section-new .input-field, .contact-section-new .textarea-field {
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: "inter", sans-serif;
  font-size: 15px;
  color: #231F20;
  width: 100%;
  box-shadow: none;
}
.contact-section-new .input-field:focus, .contact-section-new .textarea-field:focus {
  outline: none;
  background-color: #fcfcfc;
}
.contact-section-new .textarea-field {
  resize: none;
}
.contact-section-new .contact-visual-new {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.contact-section-new .contact-visual-new img {
  width: clamp(200px, 35vw, 380px);
  height: auto;
  margin-bottom: -10px;
  transform: translateY(10px);
}
@media (max-width: 767px) {
  .contact-section-new .contact-visual-new img {
    display: none;
  }
}
.contact-section-new .project-actions-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
@media (max-width: 767px) {
  .contact-section-new .project-actions-col {
    gap: 20px;
  }
}
.contact-section-new .form-actions-new {
  display: flex;
  justify-content: flex-start;
}
.contact-section-new .form-actions-new .submit-btn-new {
  background-color: #ffffff;
  color: #FF7D24;
  font-family: "gotham", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.contact-section-new .form-actions-new .submit-btn-new:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.site-footer-new {
  background-color: #ffffff;
  color: #231F20;
}
.site-footer-new .footer-container {
  padding: 40px 10px;
}
.site-footer-new .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .site-footer-new .footer-main {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
}
.site-footer-new .footer-logo {
  flex: 0 0 auto;
}
.site-footer-new .footer-logo img {
  width: clamp(220px, 20vw, 240px);
  height: auto;
}
.site-footer-new .footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding-top: 20px;
}
@media (max-width: 1023px) {
  .site-footer-new .footer-info {
    align-items: center;
    padding-top: 0;
  }
}
.site-footer-new .footer-address {
  font-family: "gotham", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #2C2E35;
  letter-spacing: 0.1px;
}
.site-footer-new .footer-contact {
  font-family: "gotham", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #2C2E35;
  letter-spacing: 0.2px;
}
@media (max-width: 767px) {
  .site-footer-new .footer-contact {
    font-size: 16px;
  }
}
.site-footer-new .footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}
.site-footer-new .footer-socials .social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.site-footer-new .footer-socials .social-link:hover {
  transform: scale(1.1);
}
.site-footer-new .footer-socials .social-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer-new .footer-copyright {
  font-family: "gotham", sans-serif;
  font-size: 18px;
  color: #576060;
  font-weight: 500;
}

/* Contact Form Status Messages */
.form-status-message {
  display: none;
  font-family: "gotham", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: 4px;
  animation: fadeInStatus 0.4s ease-out forwards;
  width: 100%;
  box-sizing: border-box;
}

.form-status-message.info {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.form-status-message.success {
  background-color: #2e7d32;
  color: #ffffff;
}

.form-status-message.error {
  background-color: #d32f2f;
  color: #ffffff;
}

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

/*# sourceMappingURL=styles.css.map */