/* ============================================
   BRIGHT AGENCY ADDITIONAL STYLES
   Supporting styles for the bright agency design
   ============================================ */

/* ============================================
   NAVIGATION ADDITIONS
   ============================================ */

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  padding: 1rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(168, 85, 247, 0.1);
  color: var(--color-purple);
}

/* ============================================
   HERO SECTION ADDITIONS
   ============================================ */

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  padding-top: 5rem;
}

.hero-text {
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  height: 500px;
}

.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-card {
  position: absolute;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  max-width: 120px;
}

.floating-card.card-1 {
  top: 10%;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
  top: 20%;
  right: 10%;
  animation: float 3s ease-in-out infinite 0.5s;
}

.floating-card.card-3 {
  bottom: 30%;
  left: 5%;
  animation: float 3s ease-in-out infinite 1s;
}

.floating-card.card-4 {
  bottom: 10%;
  right: 15%;
  animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.tech-stack {
  display: flex;
  gap: 1rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tech-item {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   SERVICE FEATURES LIST
   ============================================ */

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-body);
  background: white !important;
  padding: 0.5rem;
  border-radius: 8px;
}

.service-features i {
  color: var(--color-mint);
  font-size: 0.9rem;
}

/* ============================================
   PORTFOLIO ADDITIONS
   ============================================ */

.portfolio-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 41, 55, 0.95);
  color: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  text-align: center;
  padding: 2rem;
}

.portfolio-content h3 {
  color: #F9FAFB;
  margin-bottom: 1rem;
}

.portfolio-content p {
  color: #D1D5DB;
  margin-bottom: 1.5rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 20px;
}

/* ============================================
   TESTIMONIALS ADDITIONS
   ============================================ */

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-wrapper {
  position: relative;
  min-height: 300px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-content {
  text-align: center;
  padding: 3rem 2rem;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: var(--color-yellow);
  font-size: 1.2rem;
}

.testimonial-content blockquote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--text-heading);
  margin: 0 0 0.25rem;
}

.author-info p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(168, 85, 247, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-btn.active {
  background: var(--color-purple);
  transform: scale(1.2);
}

/* ============================================
   CTA SECTION ADDITIONS
   ============================================ */

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-indicators {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--color-yellow);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .floating-cards {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-list {
    display: none;
  }
}

/* ============================================
   LOADING SCREEN ADDITIONS
   ============================================ */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  margin-bottom: 2rem;
}

.loading-logo .logo-text {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: var(--gradient-hero);
  border-radius: 2px;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--color-purple);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #9333EA;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   NEWSLETTER FORM ADDITIONS
   ============================================ */

.newsletter-form {
  margin-bottom: 1.5rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-purple);
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.3);
}

.newsletter-btn {
  padding: 0.75rem 1rem;
  background: var(--color-purple);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #9333EA;
  transform: translateY(-1px);
}

/* ============================================
   FEATURES LIST ADDITIONS
   ============================================ */

.features-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-title {
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   TIMELINE ADDITIONS
   ============================================ */

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-purple);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--card-bg);
  border: 3px solid var(--color-purple);
  border-radius: 50%;
  z-index: 1;
}

.timeline-content h3 {
  color: var(--text-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.timeline-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================
   TIMELINE ICON STYLES
   ============================================ */

.timeline-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.timeline-icon.icon-purple {
  background: rgba(168, 85, 247, 0.15);
  color: var(--color-purple);
}

.timeline-icon.icon-pink {
  background: rgba(236, 72, 153, 0.15);
  color: var(--color-pink);
}

.timeline-icon.icon-coral {
  background: rgba(251, 113, 133, 0.15);
  color: var(--color-coral);
}

.timeline-icon.icon-orange {
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-orange);
}

/* ============================================
   SERVICE TITLE STYLES
   ============================================ */

.service-title {
  color: var(--text-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}