/* Client page styles */

/* Scroll Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation Delay Utilities */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

.parallax-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 130%;
  height: 130%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translateY(0);
  will-change: transform;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.1;
  font-weight: bold;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-section {
  padding: 6rem 2rem;
  text-align: center;
  background: white;
}

.client-logo {
  width: 100%;
  max-width: 423px;
  margin: 0 auto;
  display: block;
}

.content-section {
  padding: 4rem 0;
}

.intro-text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.intro-text p {
  margin-bottom: 1.5rem;
}

/* Grid System */
.grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-collapse: collapse;
}

.grid__col {
  vertical-align: top;
  flex: 0 0 auto;
}

.grid__col--4 { width: 33.333%; }
.grid__col--6 { width: 50%; }
.grid__col--8 { width: 66.666%; }
.grid__col--12 { width: 100%; }

/* Testimonial Section */
.testimonial-section {
  padding: 6rem 2rem;
  text-align: center;
  background: #f5f5f5;
}

.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Image Gallery */
.image-gallery {
  width: 100%;
  overflow: hidden;
}

.gallery-item {
  margin: 0;
  padding: 0;
}

.gallery-item.full-width img {
  width: 100%;
  display: block;
}

.image-container {
  height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Section */
.video-section {
  padding: 4rem 0;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Spacing */
.section {
  margin: 4rem 0;
}

.section--flush {
  margin: 0;
}

/* Accordion */
.accordion {
  margin: 0;
}

.accordion__item {
  border-bottom: 1px solid #ccc;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.accordion__toggle {
  display: flex;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background: #f8f8f8;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.accordion__toggle:hover {
  background: #f0f0f0;
}

.accordion__icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.accordion__icon:before,
.accordion__icon:after {
  content: '';
  position: absolute;
  background-color: #333;
  transition: transform 0.3s ease;
}

.accordion__icon:before {
  top: 11px;
  left: 0;
  width: 24px;
  height: 2px;
}

.accordion__icon:after {
  top: 0;
  left: 11px;
  width: 2px;
  height: 24px;
}

.accordion__item.active .accordion__icon:after {
  transform: rotate(90deg);
}

.accordion__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.accordion__content {
  display: none;
  padding: 1rem;
  line-height: 1.6;
  background: #fff;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion__item.active .accordion__content {
  display: block;
  opacity: 1;
}