/* Socialyst Media Custom Styles */

/* Import Inter font locally */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-light.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-bold.woff2') format('woff2');
}

/* Root Variables - Socialyst Brand Colors */
:root {
  --color-bg: #000000;
  --color-text: #f4f4f4;
  --color-accent: #ff0099;
  --color-accent-hover: #e6007a;
  --color-gray: #666666;
  --color-light-gray: #333333;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Global Overrides */
body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--color-text);
  font-weight: 600;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.highlight-text {
  color: var(--color-accent);
  font-weight: 600;
}

/* Navigation */
.navbar-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  background: transparent;
  padding: 1rem 0;
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-accent);
}

.whatsapp-button {
  background-color: var(--color-accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* Buttons */
.primary-button {
  background-color: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.primary-button:hover {
  background-color: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
}

.secondary-button {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.secondary-button:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-2px);
}

/* Hero Section */
.banner-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.banner-overlay-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.banner-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.banner-button-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title-area {
  text-align: center;
  margin-bottom: 3rem;
}

.section-sub-text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.subtitle-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7500%) hue-rotate(316deg) brightness(95%) contrast(115%);
}

/* Problem Section */
.problem-section {
  background: var(--color-light-gray);
}

.problem-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.problem-icon {
  font-size: 2rem;
  min-width: 60px;
  text-align: center;
}

.problem-conclusion h3 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Solution Section */
.solution-list {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.solution-item:hover {
  transform: translateY(-5px);
}

.solution-icon {
  font-size: 3rem;
  min-width: 80px;
  text-align: center;
}

.solution-text h4 {
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

/* Examples Section */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.example-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.example-card:hover {
  transform: translateY(-10px);
}

.example-icon {
  margin-bottom: 1rem;
}

.example-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7500%) hue-rotate(316deg) brightness(95%) contrast(115%);
}

.example-image {
  margin: 1.5rem 0;
}

.example-image img {
  width: 100%;
  border-radius: 10px;
}

/* Vision Section */
.vision-section {
  background: var(--color-light-gray);
}

.vision-formula {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.formula-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.5rem;
}

.formula-arrow {
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: bold;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Services Section */
.services-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.service-category h3 {
  color: var(--color-accent);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.service-items {
  display: grid;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
}

.service-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7500%) hue-rotate(316deg) brightness(95%) contrast(115%);
}

.service-content h4 {
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
  background: var(--color-light-gray);
}

.about-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

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

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-text {
  margin-bottom: 1.5rem;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author strong {
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.25rem;
}

/* Blog Section */
.blog-section {
  background: var(--color-light-gray);
}

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

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--color-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-light-gray);
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* Contact Section */
.contact-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7500%) hue-rotate(316deg) brightness(95%) contrast(115%);
}

.contact-details h4 {
  margin: 0 0 0.25rem 0;
  color: var(--color-accent);
}

.contact-details a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--color-accent);
}

/* Footer */
.footer-section {
  background: var(--color-light-gray);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.footer-logo {
  width: 200px;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-light-gray);
}

.social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(7500%) hue-rotate(316deg) brightness(95%) contrast(115%);
}

/* GDPR Consent Banner */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 10000;
  border-top: 2px solid var(--color-accent);
}

.consent-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.consent-text h4 {
  margin: 0 0 0.5rem 0;
  color: var(--color-accent);
}

.consent-text p {
  margin: 0;
  font-size: 0.9rem;
}

.consent-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.consent-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consent-btn.accept {
  background: var(--color-accent);
  color: white;
}

.consent-btn.accept:hover {
  background: var(--color-accent-hover);
}

.consent-btn.decline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.consent-btn.decline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* Chatbot */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 0, 153, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 0, 153, 0.4);
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.chatbot-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: var(--color-bg);
  border: 1px solid var(--color-light-gray);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background: var(--color-accent);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-header-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.chatbot-header-text h4 {
  margin: 0;
  font-size: 1rem;
}

.chatbot-status {
  font-size: 0.8rem;
  opacity: 0.9;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chatbot-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.message-avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.message-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 15px;
  max-width: 80%;
}

.message-content p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.message-content p:last-child {
  margin-bottom: 0;
}

.user-message {
  flex-direction: row-reverse;
}

.user-message .message-content {
  background: var(--color-accent);
  color: white;
}

.chatbot-input-area {
  padding: 1rem;
  border-top: 1px solid var(--color-light-gray);
  display: flex;
  gap: 0.5rem;
}

.chatbot-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-light-gray);
  border-radius: 20px;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-size: 0.9rem;
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.chatbot-send-btn {
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: background 0.3s ease;
}

.chatbot-send-btn:hover {
  background: var(--color-accent-hover);
}

.chatbot-actions {
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--color-light-gray);
}

.chatbot-action-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-light-gray);
  border-radius: 20px;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.chatbot-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-accent);
}

.chatbot-action-btn img {
  width: 16px;
  height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .banner-button-wrap,
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content-wrap,
  .contact-content-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .chatbot-window {
    width: 300px;
    height: 450px;
  }
  
  .formula-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .examples-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-accent: #ff0099;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
