/* Ayna Brand Colors */
:root {
  --ayna-orange: #f15100;
  --ayna-purple: #9509FF;
  --ayna-offwhite: #F2F2F0;
  --ayna-black: #18181a;
  --ayna-gray: #e0e0de;
  --font-main: 'Inter', Arial, Helvetica, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--ayna-offwhite);
  color: var(--ayna-black);
  scroll-behavior: smooth;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(21,9,41,0.04);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.nav-logo h2 {
  color: var(--ayna-orange);
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
}
.nav-menu a {
  color: var(--ayna-black);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu .nav-cta {
  color: var(--ayna-orange);
}
.nav-cta {
  background: var(--ayna-purple);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  margin-left: 2rem;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--ayna-orange);
}

.hero {
  background: var(--ayna-offwhite);
  padding: 4rem 0 2rem 0;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 2rem;
}
.hero-content {
  flex: 1 1 400px;
  min-width: 320px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-title .highlight {
  color: var(--ayna-orange);
  display: block;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.btn {
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--ayna-orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(241,81,0,0.08);
}
.btn-primary:hover {
  background: var(--ayna-purple);
}
.btn-secondary {
  background: var(--ayna-purple);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--ayna-orange);
}
.btn-large {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}
.btn-outline {
  background: transparent;
  color: var(--ayna-orange);
  border: 2px solid var(--ayna-orange);
}
.btn-outline:hover {
  background: var(--ayna-orange);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ayna-orange);
}
.stat-label {
  display: block;
  font-size: 1rem;
  color: #666;
}
.hero-visual {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel Animation Styles */
.pic-ctn {
  position: relative;
  width: 280px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(21,9,41,0.08);
}

.pic-ctn > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: display 10s infinite;
}

@keyframes display {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(-200px);
    opacity: 0;
  }
}

.pic-ctn > img:nth-child(2) {
  animation-delay: 2s;
}

.pic-ctn > img:nth-child(3) {
  animation-delay: 4s;
}

.pic-ctn > img:nth-child(4) {
  animation-delay: 6s;
}

.pic-ctn > img:nth-child(5) {
  animation-delay: 8s;
}

.value-section {
  background: #fff;
  padding: 3rem 0;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ayna-black);
  margin-bottom: 2rem;
  text-align: center;
}
.value-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.value-card {
  background: var(--ayna-offwhite);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(21,9,41,0.06);
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(149,9,255,0.10);
}
.value-icon {
  font-size: 2.2rem;
  color: var(--ayna-purple);
  margin-bottom: 1rem;
  text-align: center;
}

.value-icon .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ayna-orange);
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.solution-section {
  background: var(--ayna-offwhite);
  padding: 3rem 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(21,9,41,0.06);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(241,81,0,0.10);
}

.solution-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.05);
}

.solution-content {
  padding: 1.5rem;
}

.solution-content h3 {
  color: var(--ayna-orange);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.solution-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.features-section {
  background: #fff;
  padding: 3rem 0;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.feature-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.animation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  min-height: 500px;
}

.animation-scene {
  background: var(--ayna-offwhite);
  border-radius: 18px;
  padding: 1.5rem;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.feature-info {
  padding: 1rem 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ayna-black);
  margin-bottom: 1rem;
}

.feature-info p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Flatlay to Photoshoot Animation */
.flatlay-transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.image-container {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease, opacity 0.3s ease;
}

.transform-button {
  background: var(--ayna-orange);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.5s ease;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(241,81,0,3);
}

.transform-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.transform-button.clicked {
  background: var(--ayna-purple);
  transform: scale(0.95);
  box-shadow: 0 6px 20px rgba(241,81,0.5);
}

.transform-button.clicked::before {
  left: 100%;
}

.image-container.transformed {
  width: 240px;
  height: 320px;
}

.image-container.transformed img {
  transform: scale(1);
}

/* Brand Carousel Banner */
.brand-banner {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid var(--ayna-gray);
  border-bottom: 1px solid var(--ayna-gray);
}

.banner-content {
  text-align: center;
}

.banner-content h3 {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.brand-carousel {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 1rem 0;
}

.brand-carousel-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-item {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  background: var(--ayna-offwhite);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 60px;
  margin: 0.5rem;
}

.brand-logo {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
}

/* Make specific logos bigger */
.brand-logo[src*="37866-eb88864e7fffff55.svg"],
.brand-logo[src*="Louis-Philippe-Logo.png"] {
  max-height: 50px;
  transform: scale(1.2);
}

/* Model & Background Replacement Animation */
.before-after-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.before-image, .after-image {
  text-align: center;
  flex-shrink: 0;
}

.before-image h4, .after-image h4 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--ayna-black);
  font-size: 1rem;
}

.before-image img, .after-image img {
  width: 180px;
  height: 240px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #f8f8f8;
}

.after-image {
  animation: easeInOut 6s infinite;
}

@keyframes easeInOut {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Exclusive Models Carousel */
.models-carousel {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.model-card {
  flex: 0 0 100px;
  text-align: center;
  opacity: 0.7;
  transform: scale(0.95);
  transition: all 0.5s ease;
  animation: modelCycle 6s infinite;
}

.model-card:nth-child(1) { animation-delay: 0s; }
.model-card:nth-child(2) { animation-delay: 2s; }
.model-card:nth-child(3) { animation-delay: 4s; }

@keyframes modelCycle {
  0%, 25% {
    opacity: 1;
    transform: scale(1.1);
  }
  33%, 100% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

.model-card img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.model-card span {
  font-size: 0.8rem;
  color: var(--ayna-black);
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.testimonials-section {
  background: var(--ayna-offwhite);
  padding: 3rem 0;
}
.testimonials-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(21,9,41,0.06);
  padding: 2rem 1.5rem;
  min-width: 260px;
  max-width: 400px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(241,81,0,0.10);
}
.testimonial-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}
.author-info h4 {
  margin: 0;
  color: var(--ayna-purple);
  font-weight: 700;
}
.author-info span {
  color: #888;
  font-size: 0.95rem;
}

.cta-section {
  background: var(--ayna-orange);
  color: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero-container, .value-grid, .solution-grid, .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  
  .pic-ctn {
    width: 240px;
    height: 340px;
  }
  
  .animation-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }
  
  .animation-scene {
    height: 350px;
  }
  
  .before-after-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .models-carousel {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .model-card {
    flex: 0 0 100px;
  }
  
  .model-card img {
    width: 120px;
    height: 160px;
    object-fit: cover;
  }
  
  .flatlay-transform {
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .image-container {
    width: 120px;
    height: 120px;
  }
  
  .image-container.transformed {
    width: 200px;
    height: 270px;
  }
  
  .transform-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    pointer-events: none;
  }
  
  .before-image img, .after-image img {
    width: 180px;
    height: 240px;
  }
  
  .models-carousel {
    gap: 0.5rem;
  }
  
  .model-card {
    flex: 0 0 80px;
  }
  
  .model-card img {
    width: 80px;
    height: 100px;
    object-fit: cover;
  }
  
  .brand-carousel {
    gap: 1.5rem;
  }
  
  .brand-carousel-inner {
    gap: 1.5rem;
  }
  
  .brand-item {
    padding: 0.8rem 1rem;
    min-width: 100px;
    height: 50px;
    margin: 0.3rem;
  }
  
  .brand-logo {
    max-height: 30px;
  }
  
  /* Make specific logos bigger on mobile too */
  .brand-logo[src*="37866-eb88864e7fffff55.svg"],
  .brand-logo[src*="Louis-Philippe-Logo.png"] {
    max-height: 40px;
    transform: scale(1.15);
  }
  
  .banner-content h3 {
    font-size: 1rem;
  }
  
  .before-image img, .after-image img {
    width: 150px;
    height: 225px;
  }
}
@media (max-width: 600px) {
  .nav-container, .hero-container, .container {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .btn, .btn-large {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-image-placeholder {
    width: 200px;
    height: 200px;
  }
  .results-stats {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }
}

/* Features CTA Section */
.features-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ayna-gray);
}

.features-cta .btn {
  margin: 0 0.75rem;
} 