/* Termina Font Family */
@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-Demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Termina";
  src: url("fonts/termina-test/TerminaTest-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Termina", "Inter", sans-serif;
  color: #1e1f4b;
}

:root {
  --primary-pink: #ff69b4;
  --primary-purple: #9b59b6;
  --dark-bg: #1a1a2e;
  --light-text: #ffffff;
  --gray-text: #a0a0a0;
}

/* body {
  font-family: 'Termina', 'Inter', sans-serif;
  background-image: url("images/fullbg.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: var(--dark-bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
} */
.bg-overlay {
  font-family: "Termina", "Inter", sans-serif;
  background-image: url("images/fullbg3.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100%;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.d-none {
  display: none !important;
}
.brandtext {
  height: 9rem;
  object-fit: contain;
  width: 100%;
}
.hero-title-2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1f4b;
}
.btn {
  /* Frame 8 */

  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 30px;
  gap: 10px;

  background: linear-gradient(90deg, #ed554c 0%, #ffd3c9 100%);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.btn-container {
  display: flex;
  flex-direction: row;
  gap: 20px;

  & .watch-icon {
    height: 2.8rem;
    object-fit: cover;
  }
}
/* Subtle overlay for better readability - reduced opacity */
/* body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  pointer-events: none;
} */
/* .not-our {
  background-image: url("images/not-our.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100%;
} */

.body {
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1a1a2e;
  display: flex;
  align-items: center;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  margin-right: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-pink);
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

.btn-brand {
  padding: 10px 20px;
  background: linear-gradient(90deg, #ed554c 0%, #ffd3c9 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.35);
}

.btn-creator {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #f472b6;
  border-radius: 8px;
  color: #ec4899;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-creator:hover {
  background: linear-gradient(90deg, #ed554c 0%, #ffd3c9 100%);
  color: white;
  border-color: transparent;
}

.btn-secondary {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid var(--dark-bg);
  border-radius: 30px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: var(--dark-bg);
  color: white;
}

.btn-primary {
  padding: 10px 24px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.3s;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--dark-bg);
}

.highlight-pink {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 15px;
  color: #2e3e5c;
  margin-bottom: 35px;
  line-height: 1.6;
}

.btn-hero {
  padding: 14px 40px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border: none;
  border-radius: 40px;
  color: white;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 105, 180, 0.4);
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-circle {
  /* width: 450px;
  height: 450px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: white;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars {
  font-size: 16px;
  margin-bottom: 5px;
}

.rating-text {
  font-size: 10px;
  font-weight: 600;
  color: #666;
}

/* Brands Section */
.brands {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.brands-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1e1f4b;
  margin-bottom: 55px;
}
.pillar-image-1 {
  background-image: url("images/our/1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.pillar-image-2 {
  background-image: url("images/our/2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.pillar-image-3 {
  background-image: url("images/our/3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.pillar-image-4 {
  background-image: url("images/our/4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.pillar-image-5 {
  background-image: url("images/our/5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.pillar-image-6 {
  background-image: url("images/our/6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
}
.brand-logos {
  overflow: hidden;
  width: 100%;
}

.brand-logos-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 40s linear infinite;
  gap: 40px;
  align-items: center;
}

.brand-logos-inner {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  align-items: center;
}

@keyframes brand-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-logo {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-bg);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.brand-logo:hover {
  opacity: 1;
}

/* Not Average Section */
.not-average {
  padding: 120px 0;
}

.not-average-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.not-average-circle {
  width: 450px;
  /* height: 450px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.not-average-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--dark-bg);
}
.growth-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 10px 20px;

  cursor: pointer;
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.795);
  }
}
.brand-logo-icon {
  height: 2.5rem;
  object-fit: cover;
}

.feature-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 105, 180, 0.1); */
  background: rgba(255, 255, 255, 0.795);
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark-bg);
}

.feature-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Growth Pillars Section */
.growth-pillars {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.section-title-center {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--dark-bg);
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 50px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
  height: 450px;
}

.pillar-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.pillar-card:hover .pillar-card-inner {
  transform: rotateY(180deg);
}

.pillar-card-front,
.pillar-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.pillar-card-back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.pillar-card-back p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.pillar-back-1 {
  background: #ffd2d9;
}
.pillar-back-1 p {
  color: #000;
}
.pillar-back-2 {
  background: #ffe884;
}
.pillar-back-2 p {
  color: #000;
}
.pillar-back-3 {
  background: #c2dcff;
}
.pillar-back-3 p {
  color: #000;
}
.pillar-back-4 {
  background: #d8b6e2;
}
.pillar-back-4 p {
  color: #333;
}
.pillar-back-5 {
  background: #242e69;
}
.pillar-back-5 p {
  color: #fff;
}
.pillar-back-6 {
  background: #ec5650;
}
.pillar-back-6 p {
  color: #fff;
}

.pillar-image {
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  position: relative;
}

.pillar-overlay {
  width: 100%;
}

.pillar-overlay h3 {
  color: white;
  font-size: 16px;
  font-weight: 700;
}

/* Featured Work Section */
.featured-work {
  padding: 80px 0;
  overflow: hidden;
}

.featured-work-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.featured-work-titles {
  text-align: center;
}

.featured-work-titles .section-title-center {
  margin-bottom: 8px;
}

.featured-work-titles .section-subtitle {
  margin-bottom: 0;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  color: #333;
  flex-shrink: 0;
}

.slider-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.work-slider-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.work-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  height: 550px;
}

.work-slide {
  flex: 0 0 calc(25% - 15px);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.work-slide:hover {
  transform: scale(1.02);
}

.work-slide-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.work-slide-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.work-slide-video-wrap.is-playing .work-slide-poster {
  opacity: 0;
  pointer-events: none;
}

.work-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.work-media {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  z-index: 0;
}

/* Legacy support for gradient placeholders */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.work-item {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.work-item:hover {
  transform: scale(1.05);
}

.work-image {
  height: 350px;
  background-size: cover;
  background-position: center;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 60px;
  color: var(--dark-bg);
}

.cta-form {
  max-width: 900px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
}

.form-group {
  text-align: left;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-bg);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 13px;
  font-family: "Termina", "Inter", sans-serif;
  transition: all 0.3s;
  background: #fff;
  color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d1d1d1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-cta {
  padding: 18px 120px;
  background: linear-gradient(90deg, #ed554c 0%, #ffd3c9 100%);
  border: none;
  border-radius: 14px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.25);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.35);
}

/* Footer */
.footer {
  padding: 0;
  position: relative;
}

.footer-gradient-bg {
  position: relative;
  padding: 100px 0 60px;
  background:
    radial-gradient(
      ellipse 100% 80% at 0% 100%,
      rgba(249, 115, 22, 0.5) 0%,
      transparent 98%
    ),
    radial-gradient(
      ellipse 80% 60% at 30% 100%,
      rgba(236, 72, 153, 0.45) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 90% 70% at 70% 100%,
      rgba(168, 85, 247, 0.45) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 100% 80% at 100% 100%,
      rgba(59, 130, 246, 0.5) 0%,
      transparent 80%
    );
}

.footer-gradient-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.footer-card {
  background: white;
  border-radius: 24px;
  padding: 50px 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  max-width: 380px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  margin-right: 1px;
}

.footer-description {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.footer-powered {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.heart-icon {
  color: #ec4899;
  font-size: 14px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.footer-nav {
  display: flex;
  gap: 35px;
}

.footer-nav a {
  font-size: 13px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ec4899;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s;
}

.social-icon:hover {
  border-color: #ec4899;
  color: #ec4899;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 44px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-slide {
    flex: 0 0 calc(33.333% - 15px);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .work-slide {
    flex: 0 0 calc(50% - 15px);
  }

  .featured-work-header {
    gap: 20px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-content,
  .not-average-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 30px;
  }

  .section-title-center {
    font-size: 26px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-slide {
    flex: 0 0 calc(100% - 20px);
  }

  .work-slide img {
    height: 280px;
  }

  .work-slide-video-wrap {
    height: 280px;
  }

  .featured-work-header {
    flex-wrap: wrap;
    gap: 15px;
  }

  .featured-work-titles {
    order: -1;
    width: 100%;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }

  .footer-card {
    padding: 30px 25px;
    border-radius: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-right {
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-description {
    font-size: 12px;
  }

  .hero-image-circle,
  .not-average-circle {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}
