/**
 * PalmSeth SARL - E-Marketing & Communication Styles
 * Custom styles for the E-Marketing page
 */

/* Marketing Hero Section */
.marketing-hero .hero-background {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  position: relative;
  overflow: hidden;
}

/* Marketing Overlay with floating icons */
.marketing-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.marketing-effect {
  position: relative;
  width: 100%;
  height: 100%;
}

.pulse-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0);
  opacity: 0;
  animation: pulse-animation 4s infinite;
}

.pulse-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.pulse-circle:nth-child(2) {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 60%;
  animation-delay: 1s;
}

.pulse-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a11cb;
  font-size: 1.6rem;
  animation: float 6s ease-in-out infinite;
}

.icon-social {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.icon-search {
  top: 35%;
  left: 75%;
  animation-delay: 1s;
}

.icon-globe {
  top: 65%;
  left: 25%;
  animation-delay: 2s;
}

.icon-insta {
  top: 20%;
  left: 60%;
  animation-delay: 1.5s;
}

.icon-chart {
  top: 70%;
  left: 65%;
  animation-delay: 0.5s;
}

.icon-mail {
  top: 50%;
  left: 85%;
  animation-delay: 2.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Approach Section */
.approach-section {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.approach-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 3rem;
}

.approach-text {
  max-width: 900px;
  margin: 0 auto;
}

.lead-text {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 0;
}

.approach-highlights {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.highlight-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.highlight-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.highlight-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.highlight-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.highlight-info p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Solutions Section */
.solutions-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--color-background-light);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.solution-card {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #6a11cb, #2575fc);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-normal);
  z-index: -1;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.solution-card:hover::before {
  transform: scaleY(1);
}

.solution-icon {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin: 0 auto 3rem;
  background-color: rgba(106, 17, 203, 0.1);
  color: #6a11cb;
  transition: all var(--transition-normal);
}

.solution-card:hover .solution-icon {
  transform: scale(1.1);
  background-color: #6a11cb;
  color: white;
}

.solution-card h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.solution-card p {
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  text-align: center;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-features li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.solution-features li:last-child {
  margin-bottom: 0;
}

.solution-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

/* Process Section */
.process-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.process-steps {
  margin-top: 5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: calc(100% - 50px);
  width: 2px;
  background: linear-gradient(to bottom, #6a11cb, #2575fc);
}

.process-step {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 2;
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.step-content p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Packages/Pricing Section */
.comparison-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--color-background-light);
}

.packages-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
}

.package {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 4rem 3rem;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  transition: transform var(--transition-normal);
  position: relative;
}

.package:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.package-popular {
  border: 2px solid #6a11cb;
  transform: scale(1.05);
}

.package-popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 1.4rem;
  font-weight: 600;
}

.package-header {
  text-align: center;
  margin-bottom: 3rem;
}

.package-header h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.currency {
  font-size: 2rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.amount {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1.6rem;
  color: var(--color-text-light);
  margin-left: 0.5rem;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.package-features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
}

.package-features li:last-child {
  border-bottom: none;
}

.feature-included::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 1rem;
  color: #6a11cb;
}

.feature-excluded {
  color: var(--color-text-light);
}

.feature-excluded::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 1rem;
  color: var(--color-text-light);
}

.package-action {
  text-align: center;
}

/* Portfolio Section */
.portfolio-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem 2rem;
  cursor: pointer;
  color: var(--color-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: #6a11cb;
}

.filter-btn.active {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  height: 250px;
}

.portfolio-image {
  width: 100%;
  height: 100%;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  color: white;
}

.portfolio-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.portfolio-content p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: var(--color-background-light);
}

.testimonials-slider {
  position: relative;
  margin-top: 4rem;
}

.testimonials-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 3rem;
  padding: 2rem 1rem;
  margin: -2rem -1rem;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  min-width: 350px;
  flex: 1 0 350px;
  max-width: 400px;
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  position: relative;
  margin-bottom: 3rem;
  color: var(--color-text-light);
}

.testimonial-quote .fa-quote-left {
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 2.5rem;
  color: rgba(106, 17, 203, 0.2);
}

.testimonial-quote .fa-quote-right {
  position: absolute;
  bottom: -15px;
  right: -10px;
  font-size: 2.5rem;
  color: rgba(106, 17, 203, 0.2);
}

.testimonial-quote p {
  font-style: italic;
  margin: 0;
  padding: 0 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-author img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #6a11cb;
}

.author-info h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.author-info p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.slider-arrow {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: var(--color-background);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.slider-dots {
  display: flex;
  gap: 1rem;
  margin: 0 2rem;
}

.slider-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.slider-dot.active {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  transform: scale(1.2);
}

/* Call to Action Section */
.cta {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-text {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta .btn-primary {
  background-color: white;
  color: #6a11cb;
  border: none;
}

.cta .btn-primary:hover {
  background-color: var(--color-background);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .approach-highlights {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .testimonial {
    min-width: 300px;
  }
  
  .process-steps::before {
    left: 25px;
  }
  
  .process-step {
    gap: 2rem;
  }
  
  .step-number {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .lead-text {
    font-size: 1.8rem;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .portfolio-item {
    height: 200px;
  }
  
  .packages-container {
    flex-direction: column;
    align-items: center;
  }
  
  .package {
    width: 100%;
    max-width: 400px;
  }
  
  .package-popular {
    transform: scale(1);
  }
  
  .package-popular:hover {
    transform: translateY(-10px) scale(1);
  }
}