/* ============================================
   ELIAS UNLIMITED - Component Styles
   ============================================ */

/* ============================================
   NAVIGATION
   ============================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-width) solid var(--border);
  padding: var(--space-4) 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-violet);
  border: var(--border-width) solid var(--border-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: white;
  box-shadow: 3px 3px 0px var(--border-dark);
  transition: all var(--duration-normal) var(--ease-bounce);
}

.nav-logo:hover .logo-icon {
  transform: rotate(-5deg);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
}

.nav-links {
  display: flex;
  gap: var(--space-8);
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  position: relative;
  transition: color var(--duration-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pop-yellow);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  padding: var(--space-3) var(--space-6);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--fg-slate);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  margin-bottom: var(--space-6);
  line-height: 1.05;
}

.hero-description {
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 5;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-blob {
  position: absolute;
  inset: -20px;
  background: var(--pop-pink);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.3;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  border: var(--border-width-thick) solid var(--border-dark);
  box-shadow: var(--shadow-pop-hover);
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.hero-float-1 {
  top: 10%;
  left: -10%;
  box-shadow: var(--shadow-violet);
  animation-delay: 0s;
}

.hero-float-2 {
  top: 50%;
  right: -5%;
  box-shadow: var(--shadow-pink);
  animation-delay: 0.5s;
}

.hero-float-3 {
  bottom: 15%;
  left: 5%;
  box-shadow: var(--shadow-yellow);
  animation-delay: 1s;
}

.float-icon {
  font-size: var(--text-lg);
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape-1 {
  width: 350px;
  height: 350px;
  top: 10%;
  left: -5%;
  opacity: 0.5;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 5%;
  opacity: 0.4;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 20%;
  opacity: 0.2;
}

.hero-shape-4 {
  width: 100px;
  height: 40px;
  bottom: 30%;
  left: 10%;
  opacity: 0.6;
  transform: rotate(-15deg);
}

.hero-shape-5 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 30%;
  opacity: 0.4;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }
}

/* ============================================
   TRUSTED BY MARQUEE (Matching Stats Style)
   ============================================ */
.trusted-section {
  background: linear-gradient(135deg, var(--accent-violet) 0%, #7C3AED 50%, var(--pop-pink) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-12) 0;
  border-top: 3px solid var(--border-dark);
  border-bottom: 3px solid var(--border-dark);
}

/* Decorative background shapes */
.trusted-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--pop-yellow);
  border-radius: 50%;
  opacity: 0.15;
}

.trusted-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: var(--pop-mint);
  border-radius: 50%;
  opacity: 0.2;
}

.trusted-label {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg-cream);
  text-align: center;
  margin: 0 auto var(--space-6);
  padding: 0 var(--space-4);
  position: relative;
  z-index: 5;
}

.trusted-marquee {
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.trusted-track {
  display: flex;
  width: max-content;
  animation: trusted-scroll 20s linear infinite;
  will-change: transform;
}

.trusted-content {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin: 0;
  padding: 0 var(--space-4);
}

.trusted-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-6);
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: 4px 4px 0px var(--border-dark);
  transition: all var(--duration-normal) var(--ease-bounce);
  min-width: 160px;
}

.trusted-item img {
  height: 44px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
}

.trusted-divider {
  font-size: var(--text-2xl);
  color: var(--pop-yellow);
  text-shadow: 2px 2px 0px var(--border-dark);
}

@keyframes trusted-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .trusted-track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .trusted-section {
    padding: var(--space-8) 0;
  }

  .trusted-item {
    padding: var(--space-3) var(--space-4);
    min-width: 120px;
  }

  .trusted-item img {
    height: 32px;
  }
}

/* ============================================
   STATS MARQUEE
   ============================================ */
.stats-section {
  background: var(--fg-slate);
  overflow: hidden;
  padding: var(--space-8) 0;
}

.stats-marquee {
  overflow: hidden;
}

.stats-track {
  display: flex;
  width: max-content;
  animation: stats-scroll 25s linear infinite;
}

.stats-content {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: 0 var(--space-6);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bg-cream);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pop-yellow);
}

.stat-divider {
  font-size: var(--text-2xl);
  color: var(--accent-violet);
}

@keyframes stats-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-track {
    animation: none;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--bg-cream);
}

.section-header {
  margin-bottom: var(--space-16);
}

.section-description {
  font-size: var(--text-xl);
  margin-top: var(--space-4);
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.service-card {
  position: relative;
}

.service-label {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
}

.service-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.service-description {
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--fg-slate-light);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--pop-mint);
  color: var(--fg-slate);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

.service-showcase {
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: var(--muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.showcase-label {
  color: var(--muted-fg);
}

.showcase-name {
  font-weight: 700;
  color: var(--accent-violet);
}

/* Service section shapes */
.services-shape-1 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -5%;
  opacity: 0.3;
}

.services-shape-2 {
  top: 20%;
  right: 5%;
  border-bottom-color: var(--pop-pink);
  opacity: 0.4;
  transform: rotate(20deg);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WORK / PORTFOLIO SECTION
   ============================================ */
.work-section {
  background: var(--bg-white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.work-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-width) solid var(--border-dark);
  box-shadow: var(--shadow-soft);
  transition: all var(--duration-normal) var(--ease-bounce);
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop-hover);
}

.work-item-featured {
  grid-column: span 2;
}

.work-image {
  position: relative;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--duration-slow);
}

.work-item-featured .work-image img {
  height: 400px;
}

.work-item:hover .work-image img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.work-content {
  padding: var(--space-6);
  background: var(--bg-white);
}

.work-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.work-content p {
  font-size: var(--text-base);
  color: var(--muted-fg);
}

.work-tags {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  background: var(--muted);
  border-radius: var(--radius-full);
  color: var(--muted-fg);
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item-featured {
    grid-column: span 1;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-lead {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--fg-slate);
  margin-bottom: var(--space-6);
}

.about-content p {
  margin-bottom: var(--space-6);
}

.about-values {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
}

.value-icon {
  font-size: var(--text-lg);
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: var(--border-width) solid var(--border-dark);
  box-shadow: var(--shadow-pop-hover);
}

.about-shape {
  position: absolute;
  z-index: -1;
}

.about-shape.shape-circle {
  width: 150px;
  height: 150px;
  top: -30px;
  right: -30px;
  opacity: 0.6;
}

.about-shape.shape-dots {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: -20px;
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--muted);
  position: relative;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.contact-content {
  padding: var(--space-12);
}

.contact-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.contact-content > p {
  margin-bottom: var(--space-8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

textarea.input {
  resize: vertical;
  min-height: 120px;
}

select.input {
  cursor: pointer;
}

/* Contact Info Sidebar */
.contact-info {
  background: var(--fg-slate);
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-violet);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.info-label {
  font-size: var(--text-sm);
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--bg-cream);
}

.info-value:hover {
  color: var(--pop-yellow);
}

.contact-social {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: var(--border-width) solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-cream);
  transition: all var(--duration-normal) var(--ease-bounce);
}

.social-link:hover {
  background: var(--accent-violet);
  border-color: var(--accent-violet);
  transform: translateY(-2px);
}

/* Contact shapes */
.contact-shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  opacity: 0.3;
}

.contact-shape-2 {
  width: 80px;
  height: 30px;
  bottom: 15%;
  right: 10%;
  opacity: 0.5;
  transform: rotate(-10deg);
}

@media (max-width: 1024px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--fg-slate);
  color: var(--bg-cream);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo-icon {
  background: var(--bg-cream);
  color: var(--accent-violet);
}

.footer-brand .logo-text {
  color: var(--bg-cream);
}

.footer-tagline {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--muted-fg);
}

.footer-links {
  display: flex;
  gap: var(--space-16);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: var(--text-base);
  color: var(--bg-cream);
  transition: color var(--duration-fast);
}

.footer-col a:hover {
  color: var(--pop-yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  color: var(--muted-fg);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: var(--space-8);
  }

  .footer-links {
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}
