/* 
  Cubeweb - Main Stylesheet
  Colors: 
  - #0F0D33 (Dark Blue/Black)
  - #F70180 (Pink)
  - #3F1FEF (Purple)
  - Gradient: #FD007D - #3F1FEF
  - #FFFFFF (White)
  Font: Poppins
*/

/* Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #0F0D33;
  --pink: #F70180;
  --purple: #3F1FEF;
  --white: #FFFFFF;
  --dark-light: #1A1744;
  --dark-lighter: #252152;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-lighter: rgba(255, 255, 255, 0.6);
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--dark);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero .container, 
  .about .container, 
  .services .container,
  .process .container,
  .testimonials .container {
    padding: 0 1rem;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 0.8rem;
  }
}

@media (max-width: 768px) {
  a, button, .btn, .dropdown-toggle, input[type="submit"] {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  input, textarea, select {
    font-size: 16px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

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

.section-header p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
}

.btn-primary {
  background: linear-gradient(to right, var(--pink), var(--purple));
  color: var(--white);
  border: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 13, 51, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 13, 51, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 50px;
  width: auto;
  height: 50px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 1rem;
  position: relative;
}

.nav-links a {
  font-weight: 500;
  padding: 0.5rem;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--pink);
}

.dropdown-toggle::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--dark-light);
  border-radius: 10px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: var(--text-light);
  font-weight: 400;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--pink);
}

.structured-dropdown {
  width: 240px;
}

.dropdown-heading {
  display: block;
  padding: 0.8rem 1.5rem 0.35rem;
  color: var(--text-lighter);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dropdown-menu a.dropdown-child {
  padding-left: 2rem;
}

.dropdown-menu a.dropdown-child::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: rgba(247, 1, 128, 0.75);
  vertical-align: middle;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 0 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  filter: blur(150px);
  opacity: 0.15;
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 80px);
  padding: 4rem 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-element {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  top: -20px;
  right: 20%;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

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

/* Hero section responsive improvements */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 2rem;
    min-height: auto;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero .container {
    padding: 2.5rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .container {
    padding: 2rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-image {
    margin-top: 1.5rem;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--dark-light);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--purple), var(--pink));
  filter: blur(150px);
  opacity: 0.1;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  color: var(--pink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: fit-content;
}

.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Homepage audience architecture */
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero .container {
  gap: 4rem;
}

.home-hero-panel {
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
  max-width: 520px;
  margin-left: auto;
}

.home-signal-card {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(26, 23, 68, 0.8);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.home-signal-card:nth-child(3) {
  margin-left: 3rem;
}

.home-signal-card:nth-child(4) {
  margin-left: 1.5rem;
}

.home-signal-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

.home-signal-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.35;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-card {
  padding: 2rem;
}

.mini-list {
  margin-bottom: 1.5rem;
}

.mini-list li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.mini-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--pink), var(--purple));
}

.media-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.product-card {
  border-color: rgba(247, 1, 128, 0.16);
}

.card-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(247, 1, 128, 0.28);
  border-radius: 999px;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.media-projects .capability-card {
  display: flex;
  flex-direction: column;
}

.media-projects .service-icon {
  margin-bottom: 1.5rem;
}

.media-projects .service-link {
  margin-top: auto;
}

.product-card .btn {
  width: fit-content;
  margin-top: auto;
}

.capabilities {
  padding: 100px 0;
  background: var(--dark);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.capability-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.capability-card > i {
  margin-bottom: 1rem;
  color: var(--pink);
  font-size: 2rem;
}

.capability-card h3 {
  font-size: 1.35rem;
}

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

.proof-section {
  padding: 100px 0;
  background: var(--dark-light);
}

.proof-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.proof-content p {
  color: var(--text-light);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  min-height: 150px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(15, 13, 51, 0.55);
}

.proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 1, 128, 0.35);
}

.proof-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.proof-card span {
  color: var(--text-light);
}

.landing-hero .product-hero-content {
  max-width: 680px;
}

.landing-hero .product-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.brand-hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.brand-campaign-card {
  position: relative;
  min-height: 135px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(26, 23, 68, 0.78);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.brand-campaign-card-main {
  grid-column: span 2;
  min-height: 170px;
  background: linear-gradient(135deg, rgba(247, 1, 128, 0.22), rgba(63, 31, 239, 0.22));
}

.brand-campaign-card i {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--pink);
  font-size: 1.7rem;
}

.brand-campaign-card span {
  display: block;
  color: var(--text-light);
  font-size: 0.95rem;
}

.brand-campaign-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.7rem;
  line-height: 1.25;
}

.landing-section .section-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.landing-section .services-grid,
.landing-section .capabilities-grid,
.landing-section .media-products-grid {
  margin-top: 3rem;
}

.landing-section .service-card,
.landing-section .capability-card,
.landing-section .product-card {
  min-height: 100%;
}

.landing-section .capability-card {
  transition: all 0.3s ease;
}

.landing-section .capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.landing-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.segmented-cta .cta-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1180px) {
  .audience-grid,
  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-hero-panel {
    width: 100%;
    margin-left: 0;
  }

  .home-signal-card:nth-child(3),
  .home-signal-card:nth-child(4) {
    margin-left: 0;
  }

  .media-products-grid,
  .proof-content,
  .proof-grid,
  .segmented-cta .cta-choice-grid {
    grid-template-columns: 1fr;
  }

  .brand-hero-panel {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .brand-campaign-card-main {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .audience-grid,
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

/* About Section */
.about {
  padding: 100px 0;
  position: relative;
}

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

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.shape-element {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
  background: linear-gradient(45deg, var(--purple), var(--pink));
  top: -30px;
  right: -30px;
  z-index: 0;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background-color: var(--dark-light);
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 2rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
  overscroll-behavior-x: contain;
  will-change: scroll-position;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 400px;
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  min-width: 400px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
  margin: 0;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.1rem;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-lighter);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(63, 31, 239, 0.1), rgba(247, 1, 128, 0.1));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/cta-bg-pattern.svg');
  background-size: cover;
  opacity: 0.03;
  z-index: -1;
}

.cta h2 {
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: var(--dark-lighter);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
  max-height: 40px;
  margin-bottom: 1.5rem;
}

.footer-column p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, var(--pink), var(--purple));
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--pink);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(45deg, var(--pink), var(--purple));
  transform: translateY(-3px);
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-info li i {
  margin-right: 1rem;
  color: var(--pink);
  min-width: 16px;
  margin-top: 4px;
}

.contact-info-block a {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-lighter);
  margin: 0;
  font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero .container,
  .about .container,
  .product-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .shape-element {
    right: 0;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 0.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover, .nav-links a.active {
    background-color: var(--dark-light);
  }
  
  .dropdown-toggle {
    position: relative;
  }
  
  .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    background-color: var(--dark-lighter);
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 520px;
  }
  
  .dropdown-menu a {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .dropdown-heading {
    padding: 0.9rem 1.5rem 0.4rem;
  }

  .dropdown-menu a.dropdown-child {
    padding-left: 2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero, .services, .about, .testimonials, .cta, 
  .features, .how-it-works, .use-cases, .pricing,
  .approach, .creators, .case-studies, .brands,
  .web-services, .process, .technologies, .portfolio {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }

  .hero-content h1, 
  .product-hero-content h1,
  .contact-hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-content p, 
  .product-hero-content p,
  .contact-hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .service-icon, 
  .feature-icon, 
  .web-service-icon,
  .approach-icon, 
  .quick-contact-icon,
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .contact-info-block {
    padding: 1.5rem;
  }

  .navbar .container {
    padding: 0 1rem;
  }

  .logo img {
    width: 140px;
    height: auto;
  }

  .creators-filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .case-studies-nav {
    justify-content: center;
    padding: 1rem 0;
  }

  .prev-btn, .next-btn {
    width: 40px;
    height: 40px;
  }

  .web-services-grid {
    grid-template-columns: 1fr;
  }

  .web-service-card {
    padding: 1.5rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    padding-left: 60px;
  }

  .process-icon {
    left: 10px;
    width: 40px;
    height: 40px;
  }

  .process-content {
    padding: 1.5rem;
    margin: 0;
  }
  
  .process-step:nth-child(odd) .process-content,
  .process-step:nth-child(even) .process-content {
    margin: 0;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }

  .dropdown-menu.language-menu {
    right: 0;
    width: auto;
    min-width: 120px;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero, .services, .about, .testimonials, .cta {
    padding: 50px 0;
  }

  .navbar {
    padding: 1rem 0;
  }

  .logo img {
    width: 120px;
  }

  .mobile-menu-toggle {
    padding: 0.5rem;
  }

  .mobile-menu-toggle span {
    width: 24px;
  }

  .service-card, .feature-card, .use-case-card, .pricing-card, 
  .approach-card, .creator-card, .web-service-card {
    padding: 1.25rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  .btn, 
  .nav-links a, 
  .dropdown-toggle, 
  .mobile-menu-toggle,
  .service-link,
  .filter-btn,
  .prev-btn, 
  .next-btn,
  .social-icon {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.product-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  filter: blur(150px);
  opacity: 0.15;
  z-index: -1;
}

.product-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.product-hero-content h1 {
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 1rem;
}

.product-hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.product-hero-image {
  position: relative;
}

.product-hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.features {
  padding: 100px 0;
  background-color: var(--dark-light);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.how-it-works {
  padding: 100px 0;
  position: relative;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 1rem;
}

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

.use-cases {
  padding: 100px 0;
  background-color: var(--dark-light);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.use-case-card {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
}

.use-case-card h3 {
  margin-bottom: 1.5rem;
  color: var(--pink);
}

.use-case-card ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.use-case-card ul li i {
  color: var(--pink);
  margin-right: 1rem;
  margin-top: 5px;
}

.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-grid.single-pricing-card {
  grid-template-columns: minmax(300px, 420px);
  justify-content: center;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(63, 31, 239, 0.2), rgba(247, 1, 128, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 30px;
  background: linear-gradient(to right, var(--pink), var(--purple));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
  margin-bottom: 1rem;
}

.price {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
}

.starting-from {
  display: block;
  font-size: 0.9rem;
  color: var(--text-lighter);
  margin-bottom: 0.2rem;
  font-weight: 400;
}

.period {
  font-size: 1.2rem;
  color: var(--text-lighter);
}

.custom-price {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.pricing-features ul li i {
  color: var(--pink);
  margin-right: 1rem;
  margin-top: 5px;
}

.pricing-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.pricing-enterprise {
  margin-top: 2rem;
}

.pricing-card.enterprise-banner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr auto;
  align-items: center;
  gap: 2.5rem;
}

.enterprise-banner .pricing-header {
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.enterprise-banner .pricing-header h3 {
  margin-bottom: 0.5rem;
}

.enterprise-banner .price {
  margin-bottom: 0.5rem;
}

.enterprise-banner .pricing-features {
  margin-bottom: 0;
}

.enterprise-banner .pricing-features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
}

.enterprise-banner .pricing-features ul li {
  margin-bottom: 0.75rem;
}

.enterprise-banner .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pricing-card.enterprise-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .enterprise-banner .pricing-header {
    text-align: center;
  }

  .enterprise-banner .pricing-features ul {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  filter: blur(150px);
  opacity: 0.15;
  z-index: -1;
}

.contact-hero-content h1 {
  margin-bottom: 1.5rem;
}

.contact-hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info-block {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.contact-info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-info-block h3 {
  margin-bottom: 0.5rem;
}

.contact-info-block p, .contact-info-block a {
  color: var(--text-light);
}

.contact-info-block a:hover {
  color: var(--pink);
}

.contact-social {
  margin-top: 1rem;
}

.contact-social h3 {
  margin-bottom: 1rem;
}

.contact-social .social-links {
  justify-content: flex-start;
}

.contact-form-container {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
}

.contact-form-container h2 {
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 5px;
}

.form-checkbox label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.form-submit {
  grid-column: span 2;
  text-align: center;
  margin-top: 1rem;
}

.map-section {
  padding-bottom: 80px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-quick-contact {
  padding: 80px 0;
  background-color: var(--dark-light);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quick-contact-card {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quick-contact-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.quick-contact-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.quick-contact-card h3 {
  margin-bottom: 1rem;
}

.quick-contact-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.quick-contact-link {
  color: var(--pink);
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-contact-link:hover {
  color: var(--purple);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: rgba(15, 13, 51, 0.5);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faq-toggle i {
  font-size: 0.9rem;
  color: var(--white);
}

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

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

.faq-item.active .faq-toggle {
  background: linear-gradient(45deg, var(--pink), var(--purple));
}

/* Influence Page Styles */
.influence-hero {
  background: linear-gradient(to right, rgba(15, 13, 51, 0.95), rgba(15, 13, 51, 0.8)), url('/images/influence-bg.jpg');
  background-size: cover;
  background-position: center;
}

.approach {
  padding: 100px 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.approach-card {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.approach-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--pink), var(--purple));
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.approach-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.creators {
  padding: 100px 0;
  background-color: var(--dark-light);
}

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

.filter-btn {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(to right, var(--pink), var(--purple));
  color: var(--white);
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.creator-card {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.creator-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.creator-image {
  position: relative;
  height: 250px;
}

.creator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(15, 13, 51, 0.9), transparent);
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(to right, var(--pink), var(--purple));
}

.creator-info {
  padding: 2rem;
}

.creator-info h3 {
  margin-bottom: 0.5rem;
}

.creator-category {
  color: var(--pink);
  font-weight: 500;
  margin-bottom: 1rem;
}

.creator-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Improve contrast for YouTube channel links */
.creator-socials .social-icon {
  background-color: rgba(0, 0, 0, 0.7); /* Darker background for better contrast */
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  transition: background-color 0.3s;
}

.creator-socials .social-icon:hover {
  background-color: rgba(255, 0, 0, 0.8); /* YouTube red on hover */
}

.creator-socials .social-icon i.fab.fa-youtube {
  color: #FF0000; /* YouTube red */
  margin-right: 5px;
}

/* Instagram styling */
.creator-socials .social-icon-instagram:hover {
  background-color: rgba(195, 42, 163, 0.8); /* Instagram purple on hover */
}

.creator-socials .social-icon i.fab.fa-instagram {
  color: #C13584; /* Instagram gradient start color */
  margin-right: 5px;
}

.creator-socials .social-icon span {
  color: white;
}

/* Hero Thumbnails Grid */
.hero-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 500px;
  perspective: 1000px;
}

.hero-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInScale 0.6s ease forwards;
  opacity: 0;
}

.hero-thumbnail:nth-child(1) { animation-delay: 0.1s; }
.hero-thumbnail:nth-child(2) { animation-delay: 0.2s; }
.hero-thumbnail:nth-child(3) { animation-delay: 0.3s; }
.hero-thumbnail:nth-child(4) { animation-delay: 0.4s; }
.hero-thumbnail:nth-child(5) { animation-delay: 0.5s; }
.hero-thumbnail:nth-child(6) { animation-delay: 0.6s; }
.hero-thumbnail:nth-child(7) { animation-delay: 0.7s; }
.hero-thumbnail:nth-child(8) { animation-delay: 0.8s; }
.hero-thumbnail:nth-child(9) { animation-delay: 0.9s; }
.hero-thumbnail:nth-child(10) { animation-delay: 1s; }
.hero-thumbnail:nth-child(11) { animation-delay: 1.1s; }
.hero-thumbnail:nth-child(12) { animation-delay: 1.2s; }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(253, 0, 125, 0.3), rgba(63, 31, 239, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hero-thumbnail:hover::before {
  opacity: 1;
}

.hero-thumbnail:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(253, 0, 125, 0.4);
}

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

.hero-thumbnail .creator-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-thumbnail:hover .creator-name {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-thumbnails-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    max-width: 100%;
  }
  
  .hero-thumbnail:nth-child(n+9) {
    display: none;
  }
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.creators-load-more {
  text-align: center;
  margin-top: 3rem;
}

.influence-services {
  padding: 100px 0;
}

.case-studies {
  padding: 100px 0;
  background-color: var(--dark-light);
}

.case-studies-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.case-studies-slider::-webkit-scrollbar {
  display: none;
}

.case-study {
  flex: 0 0 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.case-study-content h3 {
  margin-bottom: 1rem;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-study-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.case-study-meta span i {
  color: var(--pink);
}

.case-study-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.case-studies-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.prev-btn, .next-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background: linear-gradient(45deg, var(--pink), var(--purple));
}

.prev-btn i, .next-btn i {
  color: var(--white);
}

.brands {
  padding: 100px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  align-items: center;
}

.brand-logo {
  text-align: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.brand-logo img {
  max-width: 120px;
  max-height: 60px;
  filter: grayscale(100%) brightness(200%);
}

.brand-logo:hover img {
  filter: grayscale(0%) brightness(100%);
}

/* Additional Media Queries */
@media (max-width: 1024px) {
  .product-hero .container,
  .case-study {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-submit {
    text-align: center;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .case-study {
    padding: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 576px) {
  .creators-filters {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
  
  .filter-btn {
    flex: 0 0 auto;
  }
  
  .case-study-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .social-icon {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Interface Showcase Section */
.interface-showcase {
  padding: 100px 0;
  position: relative;
}

.interface-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.interface-item {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.interface-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

.interface-caption {
  padding: 1.5rem;
}

.interface-caption h3 {
  margin-bottom: 0.5rem;
  color: var(--pink);
}

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

.interface-note {
  background: rgba(15, 13, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.interface-note p {
  margin: 0;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

.interface-note i {
  color: var(--pink);
  margin-right: 0.5rem;
}

.interface-note:hover {
  background: linear-gradient(45deg, var(--pink), var(--purple));
}

@media (max-width: 768px) {
  .interface-gallery {
    grid-template-columns: 1fr;
  }
}

/* Language Switcher */
.language-menu {
  min-width: 120px;
}

.language-menu a {
  display: flex;
  align-items: center;
  padding: 8px 15px;
}

.language-menu a.active {
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-toggle .fas.fa-globe {
  margin-right: 5px;
}

/* Web Services Grid */
.web-services {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.web-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  overflow-x: hidden;
}

.web-service-card {
  background-color: var(--dark-light);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.web-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.web-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 10px 20px rgba(247, 1, 128, 0.2);
}

.web-service-icon i {
  font-size: 28px;
  color: var(--white);
}

.web-service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.web-service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-top: auto;
}

.service-features li {
  margin-bottom: 0.75rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--pink);
  margin-right: 10px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .web-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .web-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .web-service-card {
    padding: 1.5rem;
    width: 100%;
  }
  
  .web-service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-features li {
    font-size: 0.95rem;
  }
}

/* Process Section */
.process {
  padding: 6rem 0;
  position: relative;
  background-color: var(--dark-light);
}

.process-timeline {
  margin-top: 4rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

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

.process-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.process-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(247, 1, 128, 0.3);
  z-index: 2;
}

.process-icon i {
  color: white;
  font-size: 30px;
}

.process-content {
  width: 45%;
  padding: 2rem;
  background-color: var(--dark-lighter);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.process-step:nth-child(odd) .process-content {
  margin-right: calc(50% + 40px);
}

.process-step:nth-child(even) .process-content {
  margin-left: calc(50% + 40px);
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

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

@media (max-width: 768px) {
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row;
    margin-bottom: 3rem;
  }
  
  .process-step:nth-child(odd) {
    flex-direction: row;
  }
  
  .process-icon {
    left: 30px;
    width: 50px;
    height: 50px;
  }
  
  .process-icon i {
    font-size: 20px;
  }
  
 .process-content {
    width: calc(100% - 70px);
    margin-left: 70px !important;
    padding: 1.5rem;
  }
  
  .process-step:nth-child(odd) .process-content,
  .process-step:nth-child(even) .process-content {
    margin-right: 0;
    margin-left: 70px;
  }
  
  .process-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .process-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .process-timeline::before {
    left: 25px;
  }
  
  .process-icon {
    left: 25px;
    width: 40px;
    height: 40px;
  }
  
  .process-icon i {
    font-size: 16px;
  }
  
  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    padding: 1.2rem;
  }
  
  .process-step:nth-child(odd) .process-content,
  .process-step:nth-child(even) .process-content {
    margin-left: 60px;
  }
  
  .process-content h3 {
    font-size: 1.1rem;
  }
  
  .process-content p {
    font-size: 0.9rem;
  }
}

/* Technologies Section */
.technologies {
  padding: 6rem 0;
  position: relative;
}

.tech-categories {
  margin-top: 3rem;
}

.tech-category {
  margin-bottom: 3.5rem;
}

.tech-category:last-child {
  margin-bottom: 0;
}

.tech-category h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.tech-category h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, var(--pink), var(--purple));
  border-radius: 3px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.tech-item {
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  background-color: var(--dark-lighter);
}

.tech-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.tech-item span {
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tech-category h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-item {
    padding: 1rem;
  }
  
  .tech-item img {
    width: 50px;
    height: 50px;
  }
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  position: relative;
  background-color: var(--dark);
}

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

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  height: 300px;
}

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 13, 51, 0.95), rgba(15, 13, 51, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-content {
  text-align: center;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.portfolio-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

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

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-item {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .floating-element {
    width: 100px;
    height: 100px;
    top: -10px;
    right: 10%;
  }
}

@media (max-width: 576px) {
  .floating-element {
    width: 80px;
    height: 80px;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 16px;
  }
  
  .form-group label {
    font-size: 0.95rem;
  }
  
  .form-checkbox label {
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    margin-right: -0.5rem;
  }
}

@media (max-width: 768px) {
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group,
  .form-group.full-width {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .form-submit {
    text-align: center;
    width: 100%;
  }
  
  .form-submit .btn {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
} 