/* Creative Design Elements - Using #ffba00 strategically */

/* Hero Section - Ultra Creative */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--background-primary);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* Creative Background Elements */
.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  border: 1px solid #ffba00;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #ffba00, transparent);
  animation: pulse 3s ease-in-out infinite;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Creative Typography */
.hero-title {
  font-size: 7rem;
  font-weight: 100;
  line-height: 0.85;
  margin-bottom: 3rem;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  position: relative;
}

.hero-title .highlight-word {
  position: relative;
  display: inline-block;
}

.hero-title .highlight-word::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -10px;
  right: -10px;
  height: 20px;
  background: #ffba00;
  opacity: 0.2;
  transform: skew(-12deg);
  z-index: -1;
}

.hero-title .highlight-word::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -20px;
  width: 4px;
  height: 4px;
  background: #ffba00;
  border-radius: 50%;
  animation: blink 2s infinite;
}

/* Creative Arrow */
.arrow {
  color: #ffba00;
  font-size: 5rem;
  margin-left: 2rem;
  font-weight: 100;
  display: inline-block;
  animation: bounce-rotate 4s ease-in-out infinite;
  transform-origin: center;
}

/* Creative Subtitle with Line */
.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  line-height: 1.6;
  max-width: 550px;
  font-weight: 300;
  position: relative;
  padding-left: 4rem;
}

.hero-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 3rem;
  height: 1px;
  background: #ffba00;
  animation: extend 3s ease-in-out infinite;
}

/* Creative Visual Elements */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  height: 500px;
}

.creative-element {
  width: 250px;
  height: 250px;
  position: relative;
  animation: orbit 20s linear infinite;
}

.creative-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.creative-element::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid #ffba00;
  border-radius: 50%;
  border-style: dashed;
  opacity: 0.6;
  animation: counter-orbit 15s linear infinite reverse;
}

/* Floating Geometric Shapes */
.floating-text {
  position: absolute;
  top: 15%;
  right: -25%;
  font-size: 12rem;
  font-weight: 100;
  color: var(--text-primary);
  opacity: 0.03;
  transform: rotate(90deg);
  letter-spacing: 0.3em;
  z-index: -1;
}

.geometric-pattern {
  position: absolute;
  bottom: 15%;
  left: -40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pattern-line {
  height: 1px;
  background: #ffba00;
  opacity: 0.8;
  animation: grow 4s ease-in-out infinite;
}

.pattern-line:nth-child(1) {
  width: 80px;
  animation-delay: 0s;
}

.pattern-line:nth-child(2) {
  width: 50px;
  animation-delay: 0.5s;
}

.pattern-line:nth-child(3) {
  width: 100px;
  animation-delay: 1s;
}

/* Creative Dots Pattern */
.floating-dots .dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffba00;
  border-radius: 50%;
  opacity: 0.4;
}

.floating-dots .dot:nth-child(1) {
  top: 20%;
  left: 15%;
  animation: float-dot 5s ease-in-out infinite;
}

.floating-dots .dot:nth-child(2) {
  top: 60%;
  left: 25%;
  animation: float-dot 6s ease-in-out infinite 1s;
}

.floating-dots .dot:nth-child(3) {
  top: 40%;
  right: 20%;
  animation: float-dot 4s ease-in-out infinite 2s;
}

.floating-dots .dot:nth-child(4) {
  bottom: 30%;
  right: 30%;
  animation: float-dot 7s ease-in-out infinite 3s;
}

/* Creative Stats Section */
.stats-section {
  padding: 8rem 0;
  background: var(--background-secondary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #ffba00, transparent);
  opacity: 0.3;
  transform: translateX(-50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  width: 60px;
  height: 1px;
  background: #ffba00;
  transform: translateX(-50%);
  opacity: 0.6;
}

.stat-circle {
  width: 180px;
  height: 180px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.stat-circle::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid #ffba00;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover .stat-circle::before {
  opacity: 0.6;
}

.stat-item:hover .stat-circle {
  transform: scale(1.05);
}

.stat-item.featured .stat-circle {
  background: rgba(255, 186, 0, 0.05);
  border-color: #ffba00;
}

/* Creative Feature Cards */
.why-choose-us {
  padding: 10rem 0;
  background: var(--background-primary);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 4rem;
  font-weight: 100;
  color: var(--text-primary);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  width: 80px;
  height: 2px;
  background: #ffba00;
  transform: translateX(-50%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 8rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 6rem;
}

.feature-card {
  position: relative;
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffba00;
  transition: width 0.4s ease;
}

.feature-card:hover::before {
  width: 100%;
}

.feature-number {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 1rem;
  font-weight: 300;
  color: #ffba00;
  background: var(--background-primary);
  padding-right: 1rem;
}

.feature-icon .icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--text-primary);
  stroke-width: 0.8;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon .icon {
  color: #ffba00;
}

/* Creative Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes bounce-rotate {
  0%,
  100% {
    transform: translateY(0px) rotate(45deg);
  }
  25% {
    transform: translateY(-10px) rotate(50deg);
  }
  75% {
    transform: translateY(-5px) rotate(40deg);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes extend {
  0%,
  100% {
    width: 3rem;
  }
  50% {
    width: 5rem;
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes counter-orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes grow {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleX(1.5);
    opacity: 1;
  }
}

@keyframes float-dot {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-30px);
    opacity: 1;
  }
}

/* Creative Button Design */
.btn {
  padding: 1.2rem 3rem;
  border: 1px solid #ffba00;
  background: transparent;
  color: var(--text-primary);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffba00;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 186, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  position: relative;
  padding-left: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: #ffba00;
  transform: translateY(-50%);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%,
  100% {
    width: 2rem;
    opacity: 1;
  }
  50% {
    width: 1rem;
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .hero-title {
    font-size: 5rem;
  }

  .floating-text,
  .geometric-pattern {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* Creative About Section */
.about-section {
  padding: 10rem 0;
  background: var(--background-secondary);
  position: relative;
  overflow: hidden;
}

.creative-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 186, 0, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 186, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.section-number {
  font-size: 8rem;
  font-weight: 100;
  color: #ffba00;
  opacity: 0.1;
  position: absolute;
  top: -4rem;
  left: -2rem;
  z-index: -1;
}

.creative-heading {
  font-size: 3.5rem;
  font-weight: 200;
  color: var(--text-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
}

.text-highlight-line {
  width: 60px;
  height: 2px;
  background: #ffba00;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}

.creative-stats {
  display: flex;
  gap: 3rem;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mini-number {
  font-size: 2rem;
  font-weight: 300;
  color: #ffba00;
}

.mini-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.creative-frame {
  width: 300px;
  height: 300px;
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 20px;
}

.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #ffba00;
}

.frame-corner.top-left {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.frame-corner.top-right {
  top: -10px;
  right: -10px;
  border-left: none;
  border-bottom: none;
}

.frame-corner.bottom-left {
  bottom: -10px;
  left: -10px;
  border-right: none;
  border-top: none;
}

.frame-corner.bottom-right {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

.team-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-icon svg {
  width: 6rem;
  height: 6rem;
  color: var(--text-secondary);
  stroke-width: 0.5;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffba00;
  color: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(255, 186, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

.badge-icon {
  font-size: 1.5rem;
  font-weight: 700;
}

.badge-text span {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-text small {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Creative Projects Section */
.projects-section {
  padding: 10rem 0;
  background: var(--background-primary);
  position: relative;
  overflow: hidden;
}

.projects-bg-pattern {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 186, 0, 0.1);
  border-radius: 50%;
  animation: slowRotate 40s linear infinite;
}

.projects-bg-pattern::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  border: 1px solid rgba(255, 186, 0, 0.05);
  border-radius: 50%;
}

.projects-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.projects-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
  background: #ffba00;
  border-color: #ffba00;
}

.creative-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  max-width: 1000px;
  margin: 0 auto;
}

.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.project-showcase.featured {
  grid-template-columns: 1fr 1fr;
}

.project-showcase:nth-child(even) {
  direction: rtl;
}

.project-showcase:nth-child(even) .project-details {
  direction: ltr;
}

.project-visual {
  position: relative;
}

.project-frame {
  background: var(--background-secondary);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.project-showcase:hover .project-frame {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-screen {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.screen-header {
  background: var(--background-secondary);
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.screen-dots {
  display: flex;
  gap: 0.5rem;
}

.screen-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
}

.screen-dots span:nth-child(1) {
  background: #ff5f56;
}
.screen-dots span:nth-child(2) {
  background: #ffbd2e;
}
.screen-dots span:nth-child(3) {
  background: #27ca3f;
}

.screen-content {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.screen-content .project-icon {
  width: 4rem;
  height: 4rem;
  color: var(--text-secondary);
  stroke-width: 1;
}

.brand-showcase {
  background: #4ade80;
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s ease-in-out infinite;
}

.brand-card {
  position: relative;
  z-index: 2;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.project-details {
  position: relative;
}

.project-category {
  font-size: 0.9rem;
  color: #ffba00;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.project-details h3 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.project-details p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
}

.project-metrics {
  display: flex;
  gap: 3rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 300;
  color: #ffba00;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Creative CTA Section */
.cta {
  padding: 8rem 0;
  background: var(--secondary-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 186, 0, 0.05) 50%,
    transparent 70%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 4rem;
  font-weight: 200;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 300;
}

.cta .btn {
  background: #ffba00;
  color: var(--secondary-color);
  border-color: #ffba00;
  font-size: 1rem;
  padding: 1.5rem 4rem;
}

.cta .btn::before {
  background: white;
}

.cta .btn:hover {
  color: #ffba00;
}

/* Additional Creative Animations */
@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .about-content,
  .project-showcase {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .project-showcase:nth-child(even) {
    direction: ltr;
  }

  .creative-heading {
    font-size: 2.8rem;
  }

  .section-number {
    font-size: 6rem;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .creative-heading {
    font-size: 2.2rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .creative-stats,
  .project-metrics {
    flex-direction: column;
    gap: 1.5rem;
  }

  .floating-badge {
    position: static;
    margin-top: 2rem;
  }

  .creative-frame {
    width: 250px;
    height: 250px;
  }
}
/* Creative Page Headers */
.creative-page-header {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--background-primary);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.creative-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #ffba00, transparent);
  opacity: 0.3;
}

.creative-page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.creative-page-header .creative-heading {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.creative-page-header .page-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

/* Creative Services Detail */
.creative-services-detail {
  padding: 8rem 0;
  background: var(--background-secondary);
  position: relative;
}

.creative-service-showcase {
  margin-bottom: 8rem;
  position: relative;
}

.creative-service-showcase:nth-child(even) .service-content {
  direction: rtl;
}

.creative-service-showcase:nth-child(even) .service-info {
  direction: ltr;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.service-category {
  font-size: 0.9rem;
  color: #ffba00;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-info .creative-heading {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.service-description-large {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}

.creative-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.creative-features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: #ffba00;
  border-radius: 50%;
  flex-shrink: 0;
}

.creative-features-grid .feature-item span {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 400;
}

.service-pricing {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffba00;
}

/* Creative Code Preview */
.creative-code-preview {
  position: relative;
}

.code-window {
  background: #1e1e1e;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid #333;
}

.window-header {
  background: #2d2d2d;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #333;
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red {
  background: #ff5f56;
}
.control.yellow {
  background: #ffbd2e;
}
.control.green {
  background: #27ca3f;
}

.window-title {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 400;
}

.code-display {
  padding: 2rem;
  font-family: "Monaco", "Menlo", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-line {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.line-number {
  color: #666;
  font-size: 0.8rem;
  width: 20px;
  text-align: right;
}

.code-text {
  color: #ccc;
}

.tag {
  color: #e06c75;
}
.attr {
  color: #d19a66;
}
.string {
  color: #98c379;
}

/* Creative Marketing Chart */
.creative-marketing-visual {
  background: var(--background-primary);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.chart-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.creative-chart {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 200px;
  gap: 1rem;
  margin-bottom: 2rem;
}

.chart-bar {
  background: linear-gradient(to top, #ffba00, #ffcc33);
  border-radius: 8px 8px 0 0;
  flex: 1;
  position: relative;
  min-height: 20px;
  animation: growUp 1.5s ease-out;
}

.chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.chart-bar:nth-child(1) {
  height: 60%;
}
.chart-bar:nth-child(2) {
  height: 85%;
}
.chart-bar:nth-child(3) {
  height: 45%;
}
.chart-bar:nth-child(4) {
  height: 95%;
}

/* Creative Solutions Grid */
.creative-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.solution-card {
  background: var(--background-primary);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffba00;
  border-radius: 15px 15px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 186, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #ffba00;
}

.solution-card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Creative Branding Showcase */
.creative-branding-showcase {
  background: var(--background-primary);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  text-align: center;
}

.brand-elements {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.creative-logo-display {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ffba00, #ffcc33);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  position: relative;
}

.creative-logo-display::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 186, 0, 0.3);
  border-radius: 35px;
}

.creative-color-palette {
  display: flex;
  gap: 1.5rem;
}

.color-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.color-circle:nth-child(1) {
  background: #ffba00;
}
.color-circle:nth-child(2) {
  background: #000000;
}
.color-circle:nth-child(3) {
  background: #666666;
}

.typography-display {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.font-sample {
  text-align: center;
}

.font-sample .sample-text {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.font-sample .font-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
  .creative-page-header .creative-heading {
    font-size: 3.5rem;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .creative-service-showcase:nth-child(even) .service-content {
    direction: ltr;
  }

  .creative-features-grid {
    grid-template-columns: 1fr;
  }

  .service-pricing {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .creative-page-header .creative-heading {
    font-size: 2.5rem;
  }

  .service-info .creative-heading {
    font-size: 2rem;
  }

  .creative-solutions-grid {
    grid-template-columns: 1fr;
  }

  .typography-display {
    flex-direction: column;
    gap: 2rem;
  }
}
/* Creative Contact Page Enhancements */
.contact-main {
  padding: 8rem 0;
  background: var(--background-secondary);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.creative-contact-form {
  background: var(--background-primary);
  padding: 4rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  position: relative;
}

.creative-contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffba00, #ffcc33);
  border-radius: 25px 25px 0 0;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.creative-form-group {
  margin-bottom: 2rem;
  position: relative;
}

.creative-form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 400;
  color: var(--text-primary);
  font-size: 1rem;
}

.creative-form-group input,
.creative-form-group textarea,
.creative-form-group select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--background-primary);
}

.creative-form-group input:focus,
.creative-form-group textarea:focus,
.creative-form-group select:focus {
  outline: none;
  border-color: #ffba00;
  box-shadow: 0 0 0 3px rgba(255, 186, 0, 0.1);
}

.creative-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.creative-contact-info {
  position: sticky;
  top: 120px;
}

.contact-info-card {
  background: var(--background-primary);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.creative-contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--background-secondary);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.creative-contact-method:hover {
  transform: translateX(10px);
  background: rgba(255, 186, 0, 0.05);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background: #ffba00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method-info h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.contact-method-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.creative-social-section {
  background: var(--background-primary);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.creative-social-section h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.creative-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.creative-social-links a {
  width: 50px;
  height: 50px;
  background: var(--background-secondary);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.creative-social-links a:hover {
  background: #ffba00;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 186, 0, 0.3);
}

/* Creative FAQ Section */
.creative-faq {
  padding: 6rem 0;
  background: var(--background-primary);
}

.faq-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.creative-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.creative-faq-item {
  background: var(--background-secondary);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.creative-faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.creative-faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.creative-faq-question:hover {
  background: rgba(255, 186, 0, 0.05);
}

.creative-faq-question h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: #ffba00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.creative-faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.creative-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.creative-faq-item.active .creative-faq-answer {
  max-height: 200px;
  padding: 0 2rem 2rem;
}

.creative-faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .creative-contact-info {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .creative-contact-form {
    padding: 2.5rem;
  }

  .contact-info-card {
    padding: 2rem;
  }

  .form-title {
    font-size: 2rem;
  }

  .creative-contact-method {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}
/* Creative Process Section */
.creative-process {
  padding: 8rem 0;
  background: var(--background-primary);
  position: relative;
}

.section-intro {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.creative-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.process-card {
  background: var(--background-secondary);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.4s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffba00;
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background: #ffba00;
  color: var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 186, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.process-icon svg {
  width: 30px;
  height: 30px;
  color: #ffba00;
}

.process-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.process-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* Enhanced About Page Sections */
.creative-mission-vision {
  padding: 8rem 0;
  background: var(--background-primary);
  position: relative;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.creative-mission-card,
.creative-vision-card {
  background: var(--background-secondary);
  padding: 4rem;
  border-radius: 25px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
}

.creative-mission-card::before,
.creative-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffba00, #ffcc33);
  border-radius: 25px 25px 0 0;
}

.mission-vision-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffba00, #ffcc33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
}

.creative-mission-card h3,
.creative-vision-card h3 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.creative-mission-card p,
.creative-vision-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  font-size: 1.1rem;
}

/* Creative Team Section */
.creative-team {
  padding: 8rem 0;
  background: var(--background-secondary);
  position: relative;
}

.creative-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.creative-team-member {
  background: var(--background-primary);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
}

.creative-team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.creative-member-photo {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ffba00, #ffcc33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
  position: relative;
}

.creative-member-photo::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 186, 0, 0.3);
  border-radius: 50%;
}

.creative-team-member h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.member-role {
  color: #ffba00;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.creative-team-member p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
}

.creative-member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.creative-member-social a {
  width: 40px;
  height: 40px;
  background: var(--background-secondary);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.creative-member-social a:hover {
  background: #ffba00;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Design for Process and Team */
@media (max-width: 1024px) {
  .creative-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .creative-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .creative-process-grid {
    grid-template-columns: 1fr;
  }

  .creative-team-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 2rem;
  }

  .creative-mission-card,
  .creative-vision-card {
    padding: 3rem;
  }
}
/* Creative About Page Enhancements */
.creative-mission-vision {
  padding: 8rem 0;
  background: var(--background-secondary);
  position: relative;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.creative-mission-card,
.creative-vision-card {
  background: var(--background-primary);
  padding: 4rem 3rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.creative-mission-card:hover,
.creative-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-number {
  position: absolute;
  top: -15px;
  left: 3rem;
  background: #ffba00;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.mission-vision-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 186, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.mission-vision-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffba00;
  stroke-width: 1.5;
}

.creative-mission-card h3,
.creative-vision-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.creative-mission-card p,
.creative-vision-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* Creative Story Section */
.creative-story {
  padding: 8rem 0;
  background: var(--background-primary);
  position: relative;
}

.creative-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.creative-timeline {
  position: relative;
  padding-left: 3rem;
}

.creative-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ffba00, rgba(255, 186, 0, 0.3));
}

.creative-timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 3rem;
}

.creative-timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 0;
  width: 18px;
  height: 18px;
  background: #ffba00;
  border-radius: 50%;
  border: 4px solid var(--background-primary);
  box-shadow: 0 0 0 2px #ffba00;
}

.creative-timeline-year {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffba00;
  margin-bottom: 1rem;
}

.creative-timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.creative-timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.creative-achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.creative-achievement-card {
  background: var(--background-secondary);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
}

.creative-achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffba00;
  border-radius: 20px 20px 0 0;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 300;
  color: #ffba00;
  margin-bottom: 0.5rem;
  display: block;
}

.achievement-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Creative Team Section */
.creative-team {
  padding: 8rem 0;
  background: var(--background-secondary);
  position: relative;
}

.creative-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.creative-team-member {
  background: var(--background-primary);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
}

.creative-team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.creative-member-photo {
  margin-bottom: 2rem;
}

.creative-photo-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ffba00, #ffcc33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3rem;
  color: white;
  position: relative;
}

.creative-photo-placeholder::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 186, 0, 0.3);
  border-radius: 50%;
}

.creative-member-name {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.creative-member-role {
  color: #ffba00;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.creative-member-bio {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.creative-member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.creative-member-social a {
  width: 40px;
  height: 40px;
  background: var(--background-secondary);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.creative-member-social a:hover {
  background: #ffba00;
  color: white;
  transform: translateY(-3px);
}

/* Creative Values Section */
.creative-values {
  padding: 8rem 0;
  background: var(--background-primary);
}

.creative-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.creative-value-item {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.creative-value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #ffba00;
  transform: translateX(-50%);
}

.creative-value-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 186, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #ffba00;
}

.creative-value-item h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.creative-value-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .creative-story-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .creative-achievements {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .creative-team-grid {
    grid-template-columns: 1fr;
  }

  .creative-values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .creative-mission-card,
  .creative-vision-card {
    padding: 3rem 2rem;
  }
}
/* Creative Portfolio Page Enhancements */
.creative-portfolio-filter {
  padding: 4rem 0;
  background: var(--background-secondary);
  position: relative;
}

.creative-filter-nav {
  position: relative;
  text-align: center;
}

.filter-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffba00, transparent);
  transform: translateY(-50%);
}

.creative-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.creative-filter-btn {
  padding: 1rem 2rem;
  background: var(--background-primary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 25px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.creative-filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffba00;
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.creative-filter-btn:hover::before,
.creative-filter-btn.active::before {
  opacity: 1;
}

.creative-filter-btn:hover,
.creative-filter-btn.active {
  color: white;
  border-color: #ffba00;
  transform: translateY(-2px);
}

/* Creative Portfolio Grid */
.creative-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.creative-portfolio-item {
  background: var(--background-primary);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
}

.creative-portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.creative-portfolio-image {
  position: relative;
  height: 280px;
  background: var(--background-secondary);
  overflow: hidden;
}

.creative-portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--text-secondary);
  background: linear-gradient(
    135deg,
    var(--background-secondary) 0%,
    var(--background-primary) 100%
  );
}

.creative-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.creative-portfolio-item:hover .creative-portfolio-overlay {
  opacity: 1;
}

.creative-portfolio-actions {
  display: flex;
  gap: 1rem;
}

.creative-portfolio-btn {
  width: 60px;
  height: 60px;
  background: #ffba00;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.creative-portfolio-btn:hover {
  transform: scale(1.1);
  background: #ffcc33;
}

.creative-portfolio-content {
  padding: 3rem;
}

.creative-portfolio-category {
  font-size: 0.9rem;
  color: #ffba00;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.creative-portfolio-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.creative-portfolio-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.creative-portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.creative-tag {
  padding: 0.5rem 1rem;
  background: rgba(255, 186, 0, 0.1);
  color: #ffba00;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 186, 0, 0.2);
}

.creative-portfolio-stats {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.creative-stat {
  text-align: center;
}

.creative-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffba00;
  margin-bottom: 0.3rem;
}

.creative-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Creative Testimonials for Portfolio */
.creative-portfolio-testimonials {
  padding: 8rem 0;
  background: var(--background-primary);
}

.creative-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.creative-testimonial-card {
  background: var(--background-secondary);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  position: relative;
}

.creative-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 3rem;
  font-size: 4rem;
  color: #ffba00;
  font-family: serif;
}

.creative-testimonial-content {
  margin-bottom: 2rem;
}

.creative-stars {
  color: #ffba00;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.creative-testimonial-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}

.creative-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.creative-author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffba00, #ffcc33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.creative-author-info h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.creative-author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Enhanced Animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations to elements */
.creative-service-showcase:nth-child(odd) .service-info {
  animation: slideInFromLeft 0.8s ease forwards;
}

.creative-service-showcase:nth-child(even) .service-info {
  animation: slideInFromRight 0.8s ease forwards;
}

.creative-portfolio-item {
  animation: fadeInUp 0.6s ease forwards;
}

.creative-testimonial-card {
  animation: fadeInUp 0.8s ease forwards;
}

/* Final Responsive Adjustments */
@media (max-width: 768px) {
  .creative-filter-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .creative-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .creative-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .creative-portfolio-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .creative-filter-btn {
    width: 200px;
    text-align: center;
  }
}
/* Page Loading Animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  position: relative;
}

.loader-logo {
  font-size: 3rem;
  font-weight: 100;
  color: var(--text-primary);
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.loader-progress {
  width: 200px;
  height: 2px;
  background: var(--border-color);
  border-radius: 1px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffba00, #ffcc33);
  border-radius: 1px;
  animation: loadProgress 2s ease forwards;
}

.loader-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 0.5s ease 1.5s forwards;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Page Reveal Animation */
.page-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.page-content.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation for Sections */
.animate-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-section:nth-child(1) {
  transition-delay: 0.1s;
}
.animate-section:nth-child(2) {
  transition-delay: 0.2s;
}
.animate-section:nth-child(3) {
  transition-delay: 0.3s;
}
.animate-section:nth-child(4) {
  transition-delay: 0.4s;
}
.animate-section:nth-child(5) {
  transition-delay: 0.5s;
}

/* Loading Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadProgress {
  0% {
    width: 0%;
  }
  20% {
    width: 30%;
  }
  40% {
    width: 60%;
  }
  80% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Curtain Animation */
.curtain-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.curtain-left,
.curtain-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--secondary-color);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-left {
  left: 0;
  transform: translateX(0);
}

.curtain-right {
  right: 0;
  transform: translateX(0);
}

.curtain-loader.opened .curtain-left {
  transform: translateX(-100%);
}

.curtain-loader.opened .curtain-right {
  transform: translateX(100%);
}

.curtain-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.curtain-logo {
  font-size: 4rem;
  font-weight: 100;
  margin-bottom: 1rem;
  opacity: 0;
  animation: curtainFadeIn 0.8s ease 0.3s forwards;
}

.curtain-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0;
  animation: curtainFadeIn 0.8s ease 0.6s forwards;
  color: #ffba00;
}

@keyframes curtainFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Page Transitions */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffba00;
  z-index: 9998;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
  transform: translateY(0);
}

.page-transition.exit {
  transform: translateY(100%);
}

/* Mobile Loading Optimization */
@media (max-width: 768px) {
  .loader-logo {
    font-size: 2rem;
  }

  .curtain-logo {
    font-size: 2.5rem;
  }

  .curtain-tagline {
    font-size: 1rem;
  }

  .loader-progress {
    width: 150px;
  }
}
