* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 50%, #0f3460 100%);
  color: #e0e0e0;
  overflow-x: hidden;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00ffff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.3s ease;
  /* Ensure logo comes first on all devices */
  order: 1;
}

.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 2rem;
  /* Place navigation second on desktop */
  order: 2;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #00ff88);
  transition: width 0.3s ease;
}

nav a:hover {
  color: #00ffff;
}

nav a:hover::after {
  width: 100%;
}

/* BURGER MENU BUTTON */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
  /* Place burger menu last on mobile */
  order: 3;
}

.burger-menu span {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #00ff88);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(0, 255, 136, 0.3);
  flex-direction: column;
  padding: 2rem 0;
  gap: 0;
  z-index: 999;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.2rem 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #00ffff, #00ff88);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  opacity: 0;
}

.mobile-menu a:hover {
  color: #00ffff;
  background: rgba(0, 255, 136, 0.05);
}

.mobile-menu a:hover::before {
  transform: scaleY(1);
  opacity: 1;
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  padding: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  width: 100%;
}

.badge-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.badge {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.4);
  color: #b0f7e6;
  font-size: 0.85rem;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00ffff, #00ff88, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-text .lead {
  color: #d9f7ff;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #00ffff, #00ff88);
  color: #0a0e27;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
}

.cta-button:active {
  transform: scale(0.95);
}

.button-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
  transform: translateX(4px);
}

.ghost-button {
  padding: 0.95rem 1.8rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.ghost-button:hover {
  border-color: rgba(0, 255, 136, 0.6);
  color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-item {
  padding: 0.8rem 1rem;
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 10px;
  color: #cdeef6;
  font-size: 0.95rem;
  box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.08);
}

.performance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.performance-item {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 200, 255, 0.05));
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.performance-item .label {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9be2ff;
  font-size: 0.85rem;
}

.performance-item .value {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.2rem 0;
  color: #fff;
}

.performance-item .desc {
  color: #cdeef6;
  margin-bottom: 0.4rem;
}

.performance-item small {
  color: #90a4ae;
}

/* ============ 3D CANVAS ============ */
.canvas-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 39, 0.5);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.2), inset 0 0 40px rgba(0, 255, 136, 0.1);
  overflow: hidden;
}

#canvas3d {
  width: 100%;
  height: 100%;
  background: transparent;
}

/* ============ PARTICLES ============ */
.particles {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  pointer-events: none;
}

/* ============ ADS SECTION & BACKGROUND ============ */
.ads-section {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #0f172a, #1a1f35, #0f172a);
  overflow: hidden;
}

.container {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0a0f1f 0%, #0f1729 50%, #0a0f1f 100%);
  overflow: hidden;
  min-height: 100vh;
}

/* Background Container with Bright Glowing Spheres */
.background-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.grid-background {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: 50px 50px;
  opacity: 0;
  z-index: 1;
}

/* Bright Glowing Spheres */
.blur-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: spherePulseGlow 8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.sphere-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff6b6b 0%, #ee5a6f 30%, #c44569 60%, transparent 100%);
  top: 10%;
  left: -10%;
  opacity: 0.6;
  animation-delay: 0s;
  box-shadow: 0 0 200px 80px rgba(255, 107, 107, 0.8);
}

.sphere-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #4facfe 0%, #00f2fe 30%, #0abde3 60%, transparent 100%);
  bottom: 15%;
  right: -5%;
  opacity: 0.6;
  animation-delay: 2.5s;
  box-shadow: 0 0 200px 80px rgba(79, 172, 254, 0.8);
}

.sphere-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #fbbf24 0%, #f59e0b 30%, #d97706 60%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation-delay: 5s;
  box-shadow: 0 0 200px 80px rgba(251, 191, 36, 0.8);
}

@keyframes spherePulseGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
    filter: blur(100px) brightness(1);
  }
  5% {
    transform: translate(0, 0) scale(1.3);
    opacity: 1;
    filter: blur(80px) brightness(2.5);
  }
  15% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.9;
    filter: blur(90px) brightness(1.8);
  }
  40% {
    transform: translate(40px, -30px) scale(1);
    opacity: 0.7;
    filter: blur(100px) brightness(1.2);
  }
  70% {
    transform: translate(20px, -10px) scale(0.6);
    opacity: 0.3;
    filter: blur(120px) brightness(0.8);
  }
  85% {
    transform: translate(0, 0) scale(0.2);
    opacity: 0;
    filter: blur(150px) brightness(0.5);
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
    filter: blur(100px) brightness(1);
  }
}

.content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 128px;
}

/* Header Section in Ads */
.header-section {
  max-width: 768px;
  margin-bottom: 80px;
}

.badge-ads {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #22d3ee;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.main-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(to right, #06b6d4, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Featured Cards */
.featured-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.main-card {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .featured-cards {
    grid-template-columns: 2fr 1fr;
  }
  .main-card {
    grid-column: span 1;
  }
}

.feature-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
  backdrop-filter: blur(12px);
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-20px);
  border-color: rgba(6, 182, 212, 0.5);
}

.card-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(6, 182, 212, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 50%,
    rgba(168, 85, 247, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .card-background {
  opacity: 1;
}

.card-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.main-card .card-glow {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.stats-card .card-glow {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-label {
  font-size: 12px;
  font-weight: 600;
  color: #06b6d4;
  text-transform: uppercase;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 8px 0 16px 0;
  transition: color 0.3s ease;
}

.feature-card:hover .card-title {
  color: #22d3ee;
}

.feature-list {
  list-style: none;
  margin: 16px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  margin-bottom: 12px;
  font-size: 15px;
}

.bullet {
  color: #06b6d4;
  font-weight: bold;
  font-size: 18px;
}

.logo-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
}

.logo-badge.ga {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.logo-badge.meta {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}

/* Stats Card */
.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: #94a3b8;
  margin-bottom: 24px;
}

.stats-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-name {
  font-size: 14px;
  color: #64748b;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #334155;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  animation: fillProgress 1.5s ease-out forwards;
  width: 0;
}

@keyframes fillProgress {
  to {
    width: 100%;
  }
}

/* Grid Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-card {
  min-height: 256px;
  position: relative;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.grid-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  color: #ffffff;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.card-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  color: rgba(6, 182, 212, 0.5);
  transition: all 0.3s ease;
}

.card-arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.grid-card:hover .card-arrow {
  color: #06b6d4;
  transform: translateX(4px);
}

.shine-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  opacity: 0;
  transform: translateX(-100%);
  border-radius: inherit;
  pointer-events: none;
}

.feature-card:hover .shine-effect {
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(200%);
    opacity: 0;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.5), rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
  backdrop-filter: blur(12px);
  padding: 48px 32px;
  text-align: center;
  overflow: hidden;
}

.cta-section h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p {
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  opacity: 0.5;
  border-radius: inherit;
}

.cta-section:hover .cta-background {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* About Section */
.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  z-index: 10;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-header {
  margin-bottom: 80px;
  text-align: left;
}

.about-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.about-intro {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 600px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-card {
  padding: 40px 32px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(6, 182, 212, 0.8);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
}

.about-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.about-card:hover h4 {
  color: #22d3ee;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.about-card p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
}

/* What I Do Section */
.what-i-do-section {
  position: relative;
  z-index: 10;
  padding: 100px 0;
}

.what-i-do-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 18px;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(6, 182, 212, 0.8);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 25px 50px rgba(6, 182, 212, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(6, 182, 212, 0.3));
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 12px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.service-card:hover .icon-badge {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), rgba(6, 182, 212, 0.6));
  border-color: rgba(168, 85, 247, 0.9);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #22d3ee;
  text-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
}

.card-image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15));
  border: 1px dashed rgba(6, 182, 212, 0.4);
  border-radius: 12px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-card:hover .card-image-placeholder {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(168, 85, 247, 0.25));
  border-color: rgba(6, 182, 212, 0.7);
}

.card-image-placeholder::before {
  content: "Add image here";
  opacity: 0.5;
}

.card-description {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.service-card:hover .card-description {
  color: #cbd5e1;
}

/* Info Boxes */
.info-boxes-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

@media (min-width: 1024px) {
  .info-boxes-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.info-box:hover {
  border-color: rgba(168, 85, 247, 0.8);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  transform: translateY(-8px);
}

.info-box-title {
  font-size: 18px;
  font-weight: 60;
  /* Replaced yellow color with cyan to match site style */
  color: #22d3ee;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.info-box:hover .info-box-title {
  /* Replaced yellow hover color with brighter cyan */
  color: #06b6d4;
  text-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
}

.info-list {
  list-style: none;
}

.info-list li {
  font-size: 14px;
  color: #cbd5e1;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #fbbf24;
  font-weight: bold;
}

.info-box:hover .info-list li {
  color: #e2e8f0;
}

/* Process Section */
.process-section {
  position: relative;
  z-index: 10;
  padding: 100px 0;
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-header {
  margin-bottom: 80px;
  text-align: center;
}

/* Process Content Layout */
.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Steps Column */
.steps-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.step:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateX(12px);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  /* Replaced yellow color with cyan */
  color: #22d3ee;
  min-width: 60px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.step:hover .step-number {
  /* Replaced yellow hover color with brighter cyan */
  color: #06b6d4;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Info Cards Column */
.info-cards-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  padding: 32px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.info-card:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(251, 191, 36, 0.4);
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.1);
}

.info-card-title {
  font-size: 18px;
  font-weight: 600;
  /* Replaced yellow color with cyan */
  color: #22d3ee;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.info-card:hover .info-card-title {
  /* Replaced yellow hover color with brighter cyan */
  color: #06b6d4;
}

.info-card-list {
  list-style: none;
}

.info-card-list li {
  font-size: 14px;
  color: #cbd5e1;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.info-card-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #fbbf24;
  font-weight: bold;
}

.info-card:hover .info-card-list li {
  color: #e2e8f0;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  margin-top: 3rem;
}

.slider-container {
  overflow: hidden;
  border-radius: 12px;
}

.slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.portfolio-card {
  flex: 0 0 320px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 172, 254, 0.5);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 30px rgba(79, 172, 254, 0.2);
}

.portfolio-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.15), rgba(251, 191, 36, 0.15));
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card-image::before {
  content: "";
}

.portfolio-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(3, 7, 18, 0.35) 100%);
}

.portfolio-img-realestate {
  background-image: url("img/site.webp");
}

.portfolio-img-bella {
  background-image: url("img/bella.webp");
}

.portfolio-img-jasmin {
  background-image: url("img/localseo.webp");
}

.portfolio-img-touch {
  background-image: url("img/touch.webp");
}

.portfolio-img-mirage {
  background-image: url("img/mirage.webp");
}

.portfolio-img-inn {
  background-image: url("img/innspa.webp");
}

.portfolio-img-velvet {
  background-image: url("img/velvet.webp");
}

.portfolio-img-castle {
  background-image: url("img/castle.webp");
}

.portfolio-img-shiestar {
  background-image: url("img/shine.webp");
}

.portfolio-img-effect {
  background-image: url("img/effect.png");
}

.portfolio-img-bellacures {
  background-image: url("img/bellacures.png");
}

.portfolio-img-cloud9 {
  background-image: url("img/cloud9.png");
}

.portfolio-img-puzatic {
  background-color: #fff;
  background-image: url("img/puzatic.png");
  background-size: contain;
  background-position: center;
}

.portfolio-img-puzatic::after {
  display: none;
}

.portfolio-img-amara {
  background-color: #07172d;
  background-image: url("img/amara-logo.png");
  background-size: 82% auto;
  background-position: center;
}

.portfolio-img-amara::after {
  background: radial-gradient(circle at center, rgba(207, 161, 78, 0.08), rgba(3, 7, 18, 0.28));
}

.portfolio-img-doral {
  background-color: #f8f3e9;
  background-image: url("img/doral-logo.png");
  background-size: contain;
  background-position: center;
}

.portfolio-img-doral::after {
  display: none;
}

.portfolio-card-content {
  padding: 1.5rem;
}

.portfolio-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.portfolio-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span {
  padding: 0.3rem 0.8rem;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #06b6d4;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #06b6d4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.slider-nav:hover {
  background: rgba(79, 172, 254, 0.4);
  border-color: rgba(79, 172, 254, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav-prev {
  left: -60px;
}

.slider-nav-next {
  right: -60px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00ffff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info p {
  font-size: 1.1rem;
  color: #b0f7e6;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-item .icon {
  font-size: 1.5rem;
}

.detail-item a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-item a:hover {
  color: #00ffff;
}

.contact-form-box {
  background: rgba(10, 14, 39, 0.6);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.contact-form-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-form-box p {
  color: #9be2ff;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  color: #e0e0e0;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #64748b;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.5);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-whatsapp {
  padding: 1rem;
  background: linear-gradient(135deg, #00ffff, #00ff88);
  color: #0a0e27;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ffff, #00ff88);
  color: #0a0e27;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-8px) rotate(10deg);
  box-shadow: 0 0 60px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 200, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #0a0e27;
}

/* Adding styles for RESULTS section */
.results-section {
  padding: 120px 20px;
  /* Updated background to match site's main dark background #1a1f2e */
  background: transparent !important;
  position: relative;
  overflow: hidden;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #22d3ee;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.section-badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #22d3ee, transparent);
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.result-card {
  background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.result-card:hover::before {
  opacity: 1;
}

.result-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: #22d3ee;
  position: relative;
  z-index: 1;
}

.result-icon svg {
  width: 100%;
  height: 100%;
}

.result-value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right, #22d3ee, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.result-label {
  font-size: 18px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.result-desc {
  font-size: 14px;
  color: #94a3b8;
  position: relative;
  z-index: 1;
}

/* Adding styles for INSIGHTS section */
.insights-section {
  padding: 120px 20px;
  /* Updated background to match site's main dark background #1a1f2e */
  background: transparent !important;
  position: relative;
}

.insights-container {
  max-width: 1200px;
  margin: 0 auto;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.insight-card {
  background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.insight-card:hover::before {
  opacity: 1;
}

.large-card {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .large-card {
    grid-column: span 1;
  }
}

.insight-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.insight-icon {
  width: 40px;
  height: 40px;
  color: #22d3ee;
  flex-shrink: 0;
}

.insight-icon svg {
  width: 100%;
  height: 100%;
}

.insight-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.insight-card p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.insight-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #22d3ee;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  animation-play-state: paused;
}

.fade-in-up:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in-up:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in-up:nth-child(4) {
  animation-delay: 0.4s;
}
.fade-in-up:nth-child(5) {
  animation-delay: 0.5s;
}
.fade-in-up:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Responsive for Results and Insights sections */
  .results-section,
  .insights-section {
    padding: 80px 16px;
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 1.5rem;
    margin-top: 70px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-text {
    order: 2;
  }

  .canvas-container {
    order: 1;
    height: 420px;
    margin-bottom: 1rem;
    width: 100%;
    max-width: none;
  }

  /* increased h1 font size for mobile from 2.2rem to 3rem */
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

  /* increased paragraph font size for mobile from 0.95rem to 1.1rem */
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ghost-button {
    text-align: center;
  }

  /* Hide service grid on mobile devices as requested */
  .service-grid {
    display: none;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 0.95rem 1.5rem;
  }

  .mobile-menu {
    top: 65px;
    height: calc(100vh - 65px);
  }

  .content-wrapper {
    padding: 60px 16px 80px;
  }

  .main-title {
    font-size: 32px;
  }

  .description {
    font-size: 16px;
  }

  .feature-card {
    padding: 24px;
    min-height: 280px;
  }

  .cta-section {
    padding: 32px 24px;
  }

  .about-section,
  .what-i-do-section,
  .process-section,
  .portfolio,
  .contact-section {
    padding: 60px 0;
  }

  .about-container,
  .what-i-do-container,
  .process-container,
  .results-container,
  .insights-container {
    /* Added results and insights here */
    padding: 0 16px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .section-description {
    font-size: 16px;
  }

  .about-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    margin-bottom: 60px;
  }

  .about-card,
  .service-card {
    padding: 20px;
  }

  .card-image-placeholder {
    height: 140px;
  }

  .info-boxes-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-box {
    padding: 24px;
  }

  .info-box-title {
    font-size: 16px;
  }

  .process-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step {
    padding: 20px;
    gap: 16px;
  }

  .step-number {
    font-size: 24px;
    min-width: 50px;
  }

  .info-card {
    padding: 24px;
  }

  .info-card-title {
    font-size: 16px;
  }

  .slider-nav-prev {
    left: 10px;
  }

  .slider-nav-next {
    right: 10px;
  }

  .portfolio-card {
    flex: 0 0 280px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .blur-sphere {
    filter: blur(80px);
  }

  .sphere-1 {
    width: 350px;
    height: 350px;
  }

  .sphere-2 {
    width: 300px;
    height: 300px;
  }

  .sphere-3 {
    width: 280px;
    height: 280px;
  }

  /* Responsive for Results section */
  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .result-card {
    padding: 24px;
  }

  .result-value {
    font-size: 40px;
  }

  .result-label {
    font-size: 16px;
  }

  /* Responsive for Insights section */
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .large-card {
    grid-column: span 1;
  }
  .insight-card {
    padding: 24px;
  }
  .insight-card h3 {
    font-size: 18px;
  }
  .insight-card p {
    font-size: 14px;
  }
  .insight-stats {
    gap: 20px;
  }
  .stat-value {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem;
    margin-top: 65px;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .hero-text p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }

  .canvas-container {
    height: 360px;
    border-radius: 8px;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.85rem 1.2rem;
  }

  header {
    padding: 0.8rem 1.2rem;
  }

  .logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .burger-menu span {
    width: 24px;
    height: 2.5px;
  }

  .about-container,
  .what-i-do-container,
  .process-container,
  .results-container,
  .insights-container {
    /* Added results and insights here */
    padding: 0 1rem;
  }

  .portfolio-card {
    flex: 0 0 240px;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 1rem;
    right: 1rem;
  }

  /* Responsive for Results and Insights sections */
  .results-section,
  .insights-section {
    padding: 60px 10px;
  }

  .section-badge {
    font-size: 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
  }

  .results-grid {
    grid-template-columns: 1fr; /* Stack results on very small screens */
  }

  .result-icon {
    margin-bottom: 16px;
  }

  .result-value {
    font-size: 32px;
  }

  .result-label {
    font-size: 14px;
  }

  .insight-card {
    padding: 20px;
  }

  .insight-card h3 {
    font-size: 16px;
  }

  .insight-stats {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .stat-value {
    font-size: 18px;
  }
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
}

/* ============ FAQ SECTION ============ */
.faq-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  z-index: 10;
  background: linear-gradient(to bottom, #0a0e27, #0f172a);
}

.faq-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-description {
  font-size: 18px;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.1);
}

.faq-question {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 200, 255, 0.03));
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 200, 255, 0.05));
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  color: #00ff88;
  margin-left: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  color: #cdeef6;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.faq-cta {
  text-align: center;
  padding: 40px 24px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
}

.faq-cta p {
  color: #b0b0b0;
  font-size: 16px;
  margin-bottom: 20px;
}

/* ============ FADE ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

/* ============ SCROLL TO TOP BUTTON ============ */
.scroll-to-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00ffff, #00ff88);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 999;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.7);
}

.scroll-to-top:active {
  transform: translateY(0) scale(0.95);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  color: #0a0e27;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Animation for button appearance */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.scroll-to-top.show {
  animation: slideInUp 0.4s ease-out;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    left: 20px;
    bottom: 20px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ============ LANGUAGE SWITCHER ============ */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50px;
  color: #00ffff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
  /* Place language switcher last on desktop */
  order: 3;
}

.language-switcher:hover {
  background: rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
}

.language-switcher:active {
  transform: scale(0.95);
}

.lang-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.lang-text {
  font-weight: 700;
  letter-spacing: 1px;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
  .language-switcher {
    /* Removed absolute positioning to let it sit naturally in flexbox */
    padding: 0.6rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
    /* Keep switcher between logo and burger on mobile */
    order: 2;
  }
}

@media (max-width: 480px) {
  .language-switcher {
    /* Removed absolute positioning overrides */
    padding: 0.55rem 0.95rem;
  }
}
/* ==========================================================
   LUMERA MARKETING LLC — 2026 interface upgrade
   Original neon theme and page structure intentionally kept.
   ========================================================== */
:root {
  --lumera-navy: #06172d;
  --lumera-panel: #0b223d;
  --lumera-blue: #178dff;
  --lumera-cyan: #13d9ef;
  --lumera-text: #eef7ff;
  --lumera-muted: #9fb3c7;
  --lumera-line: rgba(126, 193, 255, 0.16);
}

@media (max-width: 768px) {
  .blur-sphere,
  .particles,
  .canvas-container {
    display: none !important;
  }

  .hero {
    background: linear-gradient(160deg, #071326 0%, #09233e 55%, #07172d 100%) !important;
  }
}

body {
  font-family: "Manrope", "Inter", sans-serif;
  background: var(--lumera-navy);
  color: var(--lumera-text);
}

header {
  min-height: 78px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  background: rgba(5, 20, 40, 0.84);
  border-bottom: 1px solid var(--lumera-line);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 38px rgba(0, 8, 24, 0.18);
}

.header-container { width: min(1380px, 100%); }
.logo { width: 200px; min-width: 200px; background: none; -webkit-text-fill-color: initial; }
.logo img { display: block; width: 100%; height: auto; }
.logo:hover { transform: translateY(-2px); }
nav { gap: clamp(1rem, 2vw, 2rem); }
nav a { font-size: 0.76rem; color: #c6d5e4; letter-spacing: 0.07em; }
nav a::after { background: linear-gradient(90deg, var(--lumera-blue), var(--lumera-cyan)); }
nav a:hover { color: #fff; }
.language-switcher { margin-left: 1rem; border-color: rgba(44, 181, 255, 0.3); background: rgba(16, 113, 191, 0.08); }

.hero {
  margin-top: 0;
  padding-top: 135px;
  background:
    radial-gradient(circle at 13% 28%, rgba(202, 57, 181, 0.15), transparent 30%),
    radial-gradient(circle at 82% 30%, rgba(0, 185, 255, 0.2), transparent 35%),
    linear-gradient(135deg, #071326 0%, #09233e 54%, #07172d 100%);
}
.hero::before { opacity: 0.48; }
.hero-content { width: min(1380px, 100%); gap: clamp(2rem, 5vw, 5rem); }
.hero-text h1 { font-size: clamp(3.1rem, 5vw, 5rem); line-height: 1.04; letter-spacing: -0.05em; background: linear-gradient(110deg, #f4fbff 0%, #55caff 46%, #17e5cb 100%); -webkit-background-clip: text; background-clip: text; }
.hero-text .lead { max-width: 700px; color: #c0cfdd; font-size: 1.08rem; }
.badge { background: rgba(27, 130, 210, 0.09); border-color: rgba(71, 190, 255, 0.28); color: #bceaff; box-shadow: none; }
.cta-button { background: linear-gradient(135deg, var(--lumera-blue), var(--lumera-cyan)); border-radius: 12px; letter-spacing: 0; box-shadow: 0 16px 38px rgba(18, 142, 255, 0.25); }
.ghost-button { border-radius: 12px; border-color: rgba(168, 215, 255, 0.24); }
.service-item, .performance-item { background: rgba(7, 25, 48, 0.68); border-color: var(--lumera-line); backdrop-filter: blur(12px); border-radius: 14px; }
.performance-item:hover, .service-item:hover { border-color: rgba(60, 190, 255, 0.45); transform: translateY(-4px); }
.canvas-container { border: 1px solid var(--lumera-line); border-radius: 24px; background: rgba(4, 18, 36, 0.54); box-shadow: 0 30px 80px rgba(0, 7, 20, 0.35); overflow: hidden; }

.ads-section, .results-section, .process-section, .insights-section, .about-section, .what-i-do-section, .portfolio, .faq-section, .contact-section { padding-top: 110px; padding-bottom: 110px; }
.ads-section, .process-section, .about-section, .portfolio, .contact-section { background-color: #07172d; }
.results-section, .insights-section, .what-i-do-section, .faq-section { background-color: #091d35; }
.main-title, .results-title, .process-title, .insights-title, .about-title, .section-title, .faq-title { letter-spacing: -0.045em; line-height: 1.08; }
.description, .results-description, .process-description, .insights-description, .about-description, .section-description, .faq-description { max-width: 720px; color: var(--lumera-muted); }
.feature-card, .result-card, .process-card, .insight-card, .service-card, .portfolio-card, .faq-item, .contact-form-box { border-radius: 20px; border-color: var(--lumera-line); background: linear-gradient(145deg, rgba(15, 44, 76, 0.82), rgba(6, 25, 47, 0.92)); box-shadow: none; }
.feature-card:hover, .result-card:hover, .process-card:hover, .insight-card:hover, .service-card:hover, .portfolio-card:hover { transform: translateY(-7px); border-color: rgba(53, 187, 255, 0.38); box-shadow: 0 24px 55px rgba(0, 9, 27, 0.28); }
.card-image { border-radius: 13px; }
.faq-item.active { border-color: rgba(46, 184, 255, 0.45); background: rgba(14, 48, 82, 0.9); }
.form-input, .form-textarea { background: rgba(4, 19, 38, 0.72); border-color: var(--lumera-line); border-radius: 11px; }
.btn-whatsapp { border-radius: 12px; background: linear-gradient(135deg, #16a7f5, #19dbc4); }

.lumera-footer { background: #040f20; border-top: 1px solid var(--lumera-line); padding: 42px 2rem; }
.lumera-footer-inner { width: min(1380px, 100%); margin: 0 auto; display: grid; grid-template-columns: 210px 1fr auto; align-items: center; gap: 3rem; }
.lumera-footer img { width: 190px; height: auto; }
.lumera-footer p { color: var(--lumera-muted); font-size: 0.78rem; }
.lumera-footer div div { display: flex; flex-direction: column; text-align: right; gap: 6px; color: #7f94a9; font-size: 0.7rem; }
.whatsapp-float { box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28); }

@media (max-width: 1100px) {
  header { min-height: 70px; padding: 0 1.25rem; }
  .logo { width: 170px; min-width: 170px; }
  .hero { padding-top: 105px; }
  .lumera-footer-inner { grid-template-columns: 180px 1fr; }
  .lumera-footer-inner > div { grid-column: 1 / -1; flex-direction: row !important; justify-content: space-between; text-align: left !important; }
}

@media (max-width: 768px) {
  header { padding: 0 1rem; }
  .logo { width: 150px; min-width: 150px; }
  .language-switcher { margin-left: auto; }
  .mobile-menu { top: 70px; height: calc(100vh - 70px); background: rgba(5, 20, 40, 0.98); }
  .hero { padding: 110px 1rem 70px; }
  .hero-text h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-text .lead { font-size: 0.96rem; }
  .canvas-container { border-radius: 18px; }
  .ads-section, .results-section, .process-section, .insights-section, .about-section, .what-i-do-section, .portfolio, .faq-section, .contact-section { padding-top: 78px; padding-bottom: 78px; }
  .lumera-footer-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
  .lumera-footer-inner > div { display: flex; flex-direction: column !important; text-align: left !important; }
}
