/**
 * GPS Webtonic Main Stylesheet
 * Combined CSS from Next.js project
 * Includes: Base styles, Layout, Components, Responsive
 */

/* ===================================
   CSS VARIABLES
   =================================== */

:root {
  /* Primary Colors */
  --white: #ffffff;
  --blue: #0d72ef;
  --dark: #1f1f1f;
  --black: #000000;

  /* Glass Morphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-light: rgba(255, 255, 255, 0.08);
  --glass-bg-strong: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-strong: rgba(255, 255, 255, 0.2);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--white) 100%
  );
  --gradient-blue: linear-gradient(45deg, var(--blue), #4ea5f7);
  --gradient-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);

  /* 3D Shadows */
  --shadow-3d-light: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-3d-medium: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-3d-strong: 0 24px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(13, 114, 239, 0.3);
  --shadow-glow-white: 0 0 20px rgba(255, 255, 255, 0.2);

  /* Animations */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ===================================
   RESET & BASE SETUP
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  perspective: 2000px;
  background: var(--dark);
  scroll-padding-top: 80px;
}

body {
  background: linear-gradient(135deg, var(--dark) 0%, #0a0a0a 100%),
    radial-gradient(
      circle at 20% 80%,
      rgba(13, 114, 239, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
  background-attachment: scroll;
  color: var(--white);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  transform-style: preserve-3d;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    1px 1px at 30px 40px,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  background-repeat: repeat;
  background-size: 150px 150px;
  animation: float 60s linear infinite;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* ===================================
   CUSTOM SCROLLBAR
   =================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--blue), #4ea5f7);
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #4ea5f7, var(--blue));
  box-shadow: 0 0 10px rgba(13, 114, 239, 0.5);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--blue) rgba(0, 0, 0, 0.1);
}

/* ===================================
   CONTAINER
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================
   SCROLL PROGRESS BAR
   =================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #4ea5f7, #10b981);
  z-index: 10000;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(13, 114, 239, 0.5);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue), #4ea5f7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(13, 114, 239, 0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13, 114, 239, 0.4);
  background: linear-gradient(135deg, #4ea5f7, var(--blue));
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

.whatsapp-float {
  position: fixed !important;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 9999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 2px 2px 8px #999;
}

.whatsapp-float i {
  font-size: 30px;
}

/* ===================================
   MODERN HEADER
   =================================== */

.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 114, 239, 0.1);
  transition: all 0.3s ease;
  overflow: visible;
  will-change: background, border-bottom-color, box-shadow;
  height: auto;
  min-height: 70px;
}

.modern-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  border-bottom-color: rgba(13, 114, 239, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-particles {
  position: relative;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #0d72ef;
  border-radius: 50%;
  animation: headerParticle 8s linear infinite;
  will-change: transform;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 30%;
  animation-delay: -2s;
}
.particle:nth-child(3) {
  left: 50%;
  animation-delay: -4s;
}
.particle:nth-child(4) {
  left: 70%;
  animation-delay: -1s;
}
.particle:nth-child(5) {
  left: 90%;
  animation-delay: -3s;
}
.particle:nth-child(6) {
  left: 20%;
  animation-delay: -5s;
}

@keyframes headerParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  min-height: 70px;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 80px;
  height: 55px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 0;
}

.logo-icon::before {
  display: none;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
  filter: brightness(1.3) contrast(1.2);
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #0d72ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 25px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 15px;
  border-radius: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #0d72ef;
  transform: translateY(-2px);
  background: rgba(13, 114, 239, 0.1);
}

.nav-link:active {
  transform: translateY(0);
  background: rgba(13, 114, 239, 0.15);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0d72ef, #3b82f6);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-cta {
  background: linear-gradient(135deg, #0d72ef, #3b82f6);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 114, 239, 0.3);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 114, 239, 0.5);
  color: white;
}

.nav-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(13, 114, 239, 0.4);
}

.cta-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none !important;
  flex-direction: column;
  cursor: pointer;
  background: rgba(13, 114, 239, 0.1);
  border: 2px solid rgba(13, 114, 239, 0.3);
  transition: all 0.3s ease;
  border-radius: 8px;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  z-index: 1002;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  background: rgba(13, 114, 239, 0.2);
  border-color: rgba(13, 114, 239, 0.5);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 3px;
  transform-origin: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  display: block;
}

.mobile-menu-toggle:hover span {
  background: #0d72ef;
  box-shadow: 0 2px 6px rgba(13, 114, 239, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: #ff4757;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #ff4757;
}

.mobile-menu-toggle.active {
  background: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.3);
}

.mobile-menu-container {
  position: relative;
  width: 100%;
}

.mobile-menu {
  display: none !important;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  will-change: transform, opacity, visibility;
  z-index: 1001;
  min-height: auto;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 16px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  transform: translateX(-30px);
  opacity: 0;
  animation: slideInLeft 0.3s ease forwards;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav-link:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-nav-link:nth-child(2) {
  animation-delay: 0.15s;
}
.mobile-nav-link:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-nav-link:nth-child(4) {
  animation-delay: 0.25s;
}
.mobile-nav-link:nth-child(5) {
  animation-delay: 0.3s;
}
.mobile-nav-link:nth-child(6) {
  animation-delay: 0.35s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #0d72ef;
  background: rgba(13, 114, 239, 0.1);
  transform: translateX(0);
}

.mobile-nav-link:active {
  background: rgba(13, 114, 239, 0.2);
}

.mobile-cta {
  background: linear-gradient(135deg, #0d72ef, #3b82f6);
  color: white;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  margin: 15px 30px 20px 30px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(30px);
  opacity: 0;
  animation: slideInUp 0.4s ease forwards;
  animation-delay: 0.4s;
  width: calc(100% - 60px);
  box-sizing: border-box;
}

.mobile-cta:hover {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 8px 25px rgba(13, 114, 239, 0.4);
}

.mobile-cta:active {
  transform: translateY(0) scale(0.98);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================================
   MODERN HERO SECTION
   =================================== */

.modern-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}

.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 50%
    );
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-shape {
  position: absolute;
  border: 2px solid;
  opacity: 0.3;
}

.shape-1 {
  width: 150px;
  height: 320px;
  border-radius: 20px;
  top: 10%;
  left: 5%;
  border-color: #8b5cf6;
}

.shape-2 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 15%;
  right: 8%;
  border-color: #10b981;
}

.shape-3 {
  width: 200px;
  height: 80px;
  border-radius: 40px;
  bottom: 10%;
  right: 15%;
  border-color: #f59e0b;
}

.geometric-sphere {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  opacity: 0.4;
}

.sphere-outline {
  stroke: #8b5cf6;
  stroke-width: 2;
  fill: none;
  opacity: 0.6;
}

.sphere-polygon {
  stroke: #10b981;
  stroke-width: 1.5;
  fill: none;
  opacity: 0.8;
}

.blur-effects {
  position: absolute;
  width: 100%;
  height: 100%;
}

.blur1,
.blur2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
}

.blur1 {
  background: rgba(147, 51, 234, 0.15);
  top: 20%;
  right: 10%;
}

.blur2 {
  background: rgba(34, 197, 94, 0.15);
  bottom: 20%;
  left: 10%;
}

.digital-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.digital-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid;
}

.icon-seo {
  top: 25%;
  left: 15%;
  background: rgba(147, 51, 234, 0.1);
  border-color: rgba(147, 51, 234, 0.3);
}

.icon-social {
  top: 60%;
  right: 20%;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.icon-ads {
  bottom: 30%;
  left: 25%;
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.icon-analytics {
  top: 40%;
  right: 35%;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.digital-icon svg {
  width: 30px;
  height: 30px;
}

.icon-seo svg {
  fill: #8b5cf6;
}

.icon-social svg {
  fill: #10b981;
}

.icon-ads svg {
  fill: #f59e0b;
}

.icon-analytics svg {
  fill: #ef4444;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.floating-particles .particle:nth-child(1) {
  left: 10%;
  background: #8b5cf6;
}
.floating-particles .particle:nth-child(2) {
  left: 20%;
  background: #10b981;
}
.floating-particles .particle:nth-child(3) {
  left: 30%;
  background: #f59e0b;
}
.floating-particles .particle:nth-child(4) {
  left: 40%;
  background: #ef4444;
}
.floating-particles .particle:nth-child(5) {
  left: 50%;
  background: #8b5cf6;
}
.floating-particles .particle:nth-child(6) {
  left: 60%;
  background: #10b981;
}
.floating-particles .particle:nth-child(7) {
  left: 70%;
  background: #f59e0b;
}
.floating-particles .particle:nth-child(8) {
  left: 80%;
  background: #ef4444;
}
.floating-particles .particle:nth-child(9) {
  left: 90%;
  background: #8b5cf6;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
}

.main-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #8b5cf6;
  border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-3px);
  color: #8b5cf6;
}

.services-showcase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 500px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.service-card {
  background: linear-gradient(
    145deg,
    rgba(26, 26, 46, 0.8),
    rgba(22, 33, 62, 0.8)
  );
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-card:nth-child(2) {
  border-color: rgba(16, 185, 129, 0.3);
}
.service-card:nth-child(3) {
  border-color: rgba(245, 158, 11, 0.3);
}
.service-card:nth-child(4) {
  border-color: rgba(239, 68, 68, 0.3);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
}

.service-card:nth-child(2):hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  border-color: #10b981;
}

.service-card:nth-child(3):hover {
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
  border-color: #f59e0b;
}

.service-card:nth-child(4):hover {
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
  border-color: #ef4444;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.service-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.stats-banner {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #8b5cf6;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
  padding: 70px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.services-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  will-change: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-item {
  background: linear-gradient(
    145deg,
    rgba(26, 26, 46, 0.8),
    rgba(22, 33, 62, 0.8)
  );
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-item:nth-child(1) {
  border-color: rgba(139, 92, 246, 0.3);
}

.service-item:nth-child(2) {
  border-color: rgba(16, 185, 129, 0.3);
}

.service-item:nth-child(3) {
  border-color: rgba(245, 158, 11, 0.3);
}

.service-item:nth-child(4) {
  border-color: rgba(239, 68, 68, 0.3);
}

.service-item:nth-child(5) {
  border-color: rgba(139, 92, 246, 0.3);
}

.service-item:nth-child(6) {
  border-color: rgba(16, 185, 129, 0.3);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
}

.service-item:nth-child(1):hover {
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
}

.service-item:nth-child(2):hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  border-color: #10b981;
}

.service-item:nth-child(3):hover {
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
  border-color: #f59e0b;
}

.service-item:nth-child(4):hover {
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
  border-color: #ef4444;
}

.service-item:nth-child(5):hover {
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
}

.service-item:nth-child(6):hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  border-color: #10b981;
}

.service-item .service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: iconPulse 3s ease-in-out infinite;
}

.service-item:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.service-item:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.service-item:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-item:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.service-item:nth-child(5) .service-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.service-item:nth-child(6) .service-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.service-item .service-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.service-item .service-icon i {
  font-size: 32px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-item:nth-child(1) .learn-more {
  color: #8b5cf6;
}

.service-item:nth-child(2) .learn-more {
  color: #10b981;
}

.service-item:nth-child(3) .learn-more {
  color: #f59e0b;
}

.service-item:nth-child(4) .learn-more {
  color: #ef4444;
}

.service-item:nth-child(5) .learn-more {
  color: #8b5cf6;
}

.service-item:nth-child(6) .learn-more {
  color: #10b981;
}

.learn-more:hover {
  color: #ffffff;
}

/* Social Media Icons - Simplified */
.social-media-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.social-icon-bg {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.08;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: socialFloat 20s ease-in-out infinite;
  will-change: transform;
}

.social-icon-bg svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.social-icon-bg.facebook {
  top: 15%;
  left: 10%;
  color: #1877f2;
  animation-delay: 0s;
}

.social-icon-bg.instagram {
  top: 25%;
  right: 15%;
  color: #e4405f;
  animation-delay: -3s;
}

.social-icon-bg.twitter {
  bottom: 20%;
  left: 20%;
  color: #1da1f2;
  animation-delay: -6s;
}

.social-icon-bg.linkedin {
  top: 60%;
  right: 25%;
  color: #0077b5;
  animation-delay: -9s;
}

.social-icon-bg.youtube {
  bottom: 30%;
  right: 10%;
  color: #ff0000;
  animation-delay: -12s;
}

/* Marketing Elements (Hashtags) */
.marketing-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.marketing-element {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
  animation: hashtagFloat 30s ease-in-out infinite;
  will-change: transform;
}

.marketing-element:nth-child(1) {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.marketing-element:nth-child(2) {
  top: 40%;
  right: 8%;
  animation-delay: -4s;
}

.marketing-element:nth-child(3) {
  bottom: 25%;
  left: 15%;
  animation-delay: -8s;
}

.marketing-element:nth-child(4) {
  top: 70%;
  right: 5%;
  animation-delay: -12s;
}

.marketing-element:nth-child(5) {
  bottom: 15%;
  right: 20%;
  animation-delay: -16s;
}

.marketing-element:nth-child(6) {
  top: 10%;
  left: 60%;
  animation-delay: -20s;
}

/* Services Particles */
.services-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  animation: serviceParticleFloat 20s linear infinite;
  will-change: transform;
  opacity: 0.6;
}

.service-particle:nth-child(1) {
  left: 5%;
  background: #8b5cf6;
  animation-delay: 0s;
}
.service-particle:nth-child(2) {
  left: 15%;
  background: #10b981;
  animation-delay: -2s;
}
.service-particle:nth-child(3) {
  left: 25%;
  background: #f59e0b;
  animation-delay: -4s;
}
.service-particle:nth-child(4) {
  left: 35%;
  background: #ef4444;
  animation-delay: -6s;
}
.service-particle:nth-child(5) {
  left: 45%;
  background: #8b5cf6;
  animation-delay: -8s;
}
.service-particle:nth-child(6) {
  left: 55%;
  background: #10b981;
  animation-delay: -10s;
}
.service-particle:nth-child(7) {
  left: 65%;
  background: #f59e0b;
  animation-delay: -1s;
}
.service-particle:nth-child(8) {
  left: 75%;
  background: #ef4444;
  animation-delay: -3s;
}
.service-particle:nth-child(9) {
  left: 85%;
  background: #8b5cf6;
  animation-delay: -5s;
}
.service-particle:nth-child(10) {
  left: 95%;
  background: #10b981;
  animation-delay: -7s;
}
.service-particle:nth-child(11) {
  left: 10%;
  background: #f59e0b;
  animation-delay: -9s;
}
.service-particle:nth-child(12) {
  left: 90%;
  background: #ef4444;
  animation-delay: -11s;
}

/* Animated Lines */
.animated-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.line {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.3),
    transparent
  );
  animation: lineMove 8s ease-in-out infinite;
}

.line-1 {
  top: 20%;
  width: 200px;
  left: -200px;
  animation-delay: 0s;
}

.line-2 {
  top: 60%;
  width: 150px;
  right: -150px;
  animation-delay: -3s;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.3),
    transparent
  );
}

.line-3 {
  bottom: 30%;
  width: 180px;
  left: -180px;
  animation-delay: -6s;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.3),
    transparent
  );
}

/* Animations */
@keyframes socialFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes hashtagFloat {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.3;
  }
}

@keyframes serviceParticleFloat {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

@keyframes lineMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 200px));
    opacity: 0;
  }
}

/* End of Services Background Animations */

/* ===================================
   TOAST NOTIFICATION
   =================================== */

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  background: #363636;
  color: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.toast-success {
  background: #22c55e;
}

.toast.toast-error {
  background: #ef4444;
}

.toast.toast-info {
  background: #0d72ef;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.custom-footer {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a2e 30%,
    #16213e 70%,
    #0f172a 100%
  );
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.custom-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='0.25' fill='rgba(139,92,246,0.1)'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  transform: rotateY(180deg);
  animation: waveMove 3s ease-in-out infinite;
}

.custom-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='0.15' fill='rgba(16,185,129,0.08)'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  transform: rotateY(180deg);
  animation: waveMove 2s ease-in-out infinite reverse;
}

.wave-layer-1 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' opacity='0.1' fill='rgba(245,158,11,0.05)'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  transform: rotateY(180deg);
  animation: waveMove 4s ease-in-out infinite;
}

.wave-layer-2 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V30.81C13,51.92,27.64,71.86,47.69,87.05,99.41,126.27,165,126,224.58,106.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='0.08' fill='rgba(239,68,68,0.03)'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  transform: rotateY(180deg);
  animation: waveMove 5s ease-in-out infinite reverse;
}

.wave-layer-3 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V20.81C13,41.92,27.64,61.86,47.69,77.05,99.41,116.27,165,116,224.58,96.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='0.06' fill='rgba(139,92,246,0.02)'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  transform: rotateY(180deg);
  animation: waveMove 7s ease-in-out infinite;
}

/* Starry Sky Background */
.starry-sky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Stars */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffffff;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) {
  left: 5%;
  top: 10%;
  animation-delay: 0s;
}
.star:nth-child(2) {
  left: 15%;
  top: 20%;
  animation-delay: 0.5s;
}
.star:nth-child(3) {
  left: 25%;
  top: 15%;
  animation-delay: 1s;
}
.star:nth-child(4) {
  left: 35%;
  top: 25%;
  animation-delay: 1.5s;
}
.star:nth-child(5) {
  left: 45%;
  top: 10%;
  animation-delay: 2s;
}
.star:nth-child(6) {
  left: 55%;
  top: 30%;
  animation-delay: 2.5s;
}
.star:nth-child(7) {
  left: 65%;
  top: 20%;
  animation-delay: 0.3s;
}
.star:nth-child(8) {
  left: 75%;
  top: 15%;
  animation-delay: 0.8s;
}
.star:nth-child(9) {
  left: 85%;
  top: 25%;
  animation-delay: 1.3s;
}
.star:nth-child(10) {
  left: 95%;
  top: 10%;
  animation-delay: 1.8s;
}

/* Shooting Stars */
.shooting-stars {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shooting-star {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, transparent);
  animation: shootingStar 4s linear infinite;
}

.shooting-star:nth-child(1) {
  top: 20%;
  left: -100px;
  animation-delay: 0s;
}
.shooting-star:nth-child(2) {
  top: 40%;
  left: -100px;
  animation-delay: 1s;
}
.shooting-star:nth-child(3) {
  top: 60%;
  left: -100px;
  animation-delay: 2s;
}
.shooting-star:nth-child(4) {
  top: 80%;
  left: -100px;
  animation-delay: 3s;
}
.shooting-star:nth-child(5) {
  top: 30%;
  left: -100px;
  animation-delay: 0.5s;
}

/* Social Media Icons in Sky */
.sky-social-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sky-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.15;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: skyFloat 20s ease-in-out infinite;
}

.sky-icon svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}

.sky-icon.facebook {
  top: 15%;
  left: 10%;
  color: #1877f2;
  animation-delay: 0s;
}
.sky-icon.instagram {
  top: 25%;
  right: 15%;
  color: #e4405f;
  animation-delay: -4s;
}
.sky-icon.twitter {
  bottom: 20%;
  left: 20%;
  color: #1da1f2;
  animation-delay: -8s;
}
.sky-icon.linkedin {
  top: 60%;
  right: 25%;
  color: #0077b5;
  animation-delay: -12s;
}
.sky-icon.youtube {
  bottom: 30%;
  right: 10%;
  color: #ff0000;
  animation-delay: -16s;
}

/* Marketing Elements in Sky */
.sky-marketing-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sky-element {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  animation: skyElementFloat 25s ease-in-out infinite;
}

.sky-element:nth-child(1) {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}
.sky-element:nth-child(2) {
  top: 40%;
  right: 8%;
  animation-delay: -5s;
}
.sky-element:nth-child(3) {
  bottom: 25%;
  left: 15%;
  animation-delay: -10s;
}
.sky-element:nth-child(4) {
  top: 70%;
  right: 5%;
  animation-delay: -15s;
}
.sky-element:nth-child(5) {
  bottom: 15%;
  right: 20%;
  animation-delay: -20s;
}
.sky-element:nth-child(6) {
  top: 10%;
  left: 60%;
  animation-delay: -25s;
}

/* Sky Particles */
.sky-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sky-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  animation: skyParticleFloat 15s linear infinite;
}

.sky-particle:nth-child(1) {
  left: 5%;
  background: #8b5cf6;
  animation-delay: 0s;
}
.sky-particle:nth-child(2) {
  left: 15%;
  background: #10b981;
  animation-delay: -2s;
}
.sky-particle:nth-child(3) {
  left: 25%;
  background: #f59e0b;
  animation-delay: -4s;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

/* Company Section */
.company-logo-img {
  max-height: 60px;
  margin-bottom: 15px;
}

.company-description {
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e2e8f0;
  font-size: 0.95rem;
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
  color: white;
}

.social-icon-i {
  font-size: 1.2rem;
}

/* Section Titles */
.footer-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  color: #60a5fa;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  color: #60a5fa;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: #60a5fa;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 14px;
}

.contact-info i {
  color: #60a5fa;
  width: 16px;
}

.contact-info a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #60a5fa;
}

/* Contact Section */
.contact-section {
  margin-bottom: 0;
}

.contact-info-p {
  color: #e2e8f0;
  text-decoration: none;
  margin-bottom: 15px;
  display: block;
  font-size: 14px;
}

.contact-info-a {
  color: #e2e8f0;
  text-decoration: none;
  margin-bottom: 15px;
  display: block;
  font-size: 14px;
}

.contact-info-a:hover {
  color: #60a5fa;
}

/* Quick Links Section */
.quick-links-section {
  margin-bottom: 0;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-li {
  margin-bottom: 10px;
}

.quick-links-a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.quick-links-a:hover {
  color: #60a5fa;
}

/* Gallery Section */
.gallery-section {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 200px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Copyright Area */
.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 20px;
  padding-right: 20px;
}

.copyright-text p {
  margin: 0;
  color: #e2e8f0;
}

.copyright-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.copyright-nav a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright-nav a:hover {
  color: #60a5fa;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 20px;
  padding-right: 20px;
}

.copyright-text-p {
  margin: 0;
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  gap: 25px;
}

/* Footer Animations */
@keyframes waveMove {
  0%,
  100% {
    transform: translateX(0) rotateY(180deg);
  }
  50% {
    transform: translateX(-25%) rotateY(180deg);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes shootingStar {
  0% {
    transform: translateX(0) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 100px)) rotate(45deg);
    opacity: 0;
  }
}

@keyframes skyFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(-20px, 30px) rotate(-3deg);
  }
  75% {
    transform: translate(25px, -15px) rotate(2deg);
  }
}

@keyframes skyElementFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translate(40px, -25px) scale(1.1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-30px, 35px) scale(0.9);
    opacity: 0.1;
  }
  75% {
    transform: translate(35px, -20px) scale(1.05);
    opacity: 0.3;
  }
}

@keyframes skyParticleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-column {
    min-width: auto;
  }

  .copyright-area,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .company-logo-img,
  .footer-heading,
  .section-title {
    text-align: center;
  }

  .social-media {
    justify-content: center;
  }

  .gallery-grid {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .copyright-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  .main-content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .services-showcase {
    max-width: 600px;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .geometric-sphere {
    width: 300px;
    height: 300px;
  }

  .nav-logo .logo-link {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    padding: 100px 10px 50px;
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats-banner {
    flex-direction: column;
    gap: 15px;
  }

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

  .nav-cta {
    display: none;
  }

  .container {
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .service-card {
    padding: 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .modern-header {
    padding: 0.4rem 0;
    min-height: 56px;
  }

  body {
    padding-top: 56px;
  }

  .modern-hero {
    min-height: calc(100vh - 56px);
    padding: 20px 0 40px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-progress {
    display: none;
  }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Hero Section */
.contact-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-particles {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #8b5cf6, #06b6d4, #10b981, #f59e0b);
  border-radius: 50%;
  animation: heroParticle 20s linear infinite;
}

.hero-particle:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
}
.hero-particle:nth-child(2) {
  left: 15%;
  animation-delay: -2s;
}
.hero-particle:nth-child(3) {
  left: 25%;
  animation-delay: -4s;
}
.hero-particle:nth-child(4) {
  left: 35%;
  animation-delay: -6s;
}
.hero-particle:nth-child(5) {
  left: 45%;
  animation-delay: -8s;
}
.hero-particle:nth-child(6) {
  left: 55%;
  animation-delay: -10s;
}
.hero-particle:nth-child(7) {
  left: 65%;
  animation-delay: -1s;
}
.hero-particle:nth-child(8) {
  left: 75%;
  animation-delay: -3s;
}
.hero-particle:nth-child(9) {
  left: 85%;
  animation-delay: -5s;
}
.hero-particle:nth-child(10) {
  left: 95%;
  animation-delay: -7s;
}
.hero-particle:nth-child(11) {
  left: 10%;
  animation-delay: -9s;
}
.hero-particle:nth-child(12) {
  left: 20%;
  animation-delay: -11s;
}
.hero-particle:nth-child(13) {
  left: 30%;
  animation-delay: -13s;
}
.hero-particle:nth-child(14) {
  left: 40%;
  animation-delay: -15s;
}
.hero-particle:nth-child(15) {
  left: 50%;
  animation-delay: -17s;
}

@keyframes heroParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  animation: heroShape 30s ease-in-out infinite;
}

.hero-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero-shape.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: -8s;
}

.hero-shape.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: -16s;
}

.hero-shape.shape-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 30%;
  animation-delay: -12s;
}

.hero-shape.shape-5 {
  width: 180px;
  height: 180px;
  bottom: 40%;
  right: 5%;
  animation-delay: -20s;
}

@keyframes heroShape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
    opacity: 0.6;
  }
}

.hero-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.3),
    transparent
  );
  height: 2px;
  animation: heroLine 15s linear infinite;
}

.hero-line.line-1 {
  width: 200px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-line.line-2 {
  width: 150px;
  top: 70%;
  right: 20%;
  animation-delay: -5s;
}

.hero-line.line-3 {
  width: 180px;
  bottom: 30%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes heroLine {
  0% {
    transform: translateX(-100%) scaleX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateX(0%) scaleX(1);
  }
  100% {
    transform: translateX(100%) scaleX(0);
    opacity: 0;
  }
}

/* Contact Section */
/* .contact-section {
    padding: 100px 0;
    background: #000000;
} */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.contact-form-container:hover::before {
  opacity: 1;
}

.form-header {
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  border-radius: 20px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.form-badge svg {
  width: 16px;
  height: 16px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #10b981, #f59e0b);
  border-radius: 20px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.info-badge svg {
  width: 16px;
  height: 16px;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.form-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 10;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
  z-index: 10;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(13, 114, 239, 0.3);
  border-radius: 12px;
  padding: 15px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0d72ef;
  box-shadow: 0 0 0 3px rgba(13, 114, 239, 0.1);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a1a2e;
  color: #ffffff;
}

.submit-btn {
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-btn:hover .btn-glow {
  left: 100%;
}

.submit-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.contact-info > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.method-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.method-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.method-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.method-content a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
  display: block;
  margin-bottom: 5px;
}

.method-content a:hover {
  color: #8b5cf6;
}

.business-hours {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.business-hours:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
}

.business-hours h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
  border-bottom: none;
}

.hour-item span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #8b5cf6, #06b6d4);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.map-badge svg {
  width: 16px;
  height: 16px;
}

.map-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.google-map {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.google-map:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
  transform: translateY(-5px);
}

.google-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 20px;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-hero {
    min-height: 80vh;
    padding: 100px 30px 60px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 45px;
  }

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

  .google-map iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 70vh;
    padding: 90px 20px 50px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

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

  .contact-grid {
    gap: 50px;
  }

  .form-header h2,
  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 35px;
  }

  .map-section {
    padding: 70px 0;
  }

  .google-map iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

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

  .contact-grid {
    gap: 40px;
  }

  .form-header h2,
  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 25px;
  }

  .submit-btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .map-section {
    padding: 60px 0;
  }

  .google-map iframe {
    height: 280px;
  }
}

/* ========================================
   DIGITAL MARKETING HUB SECTION
   ======================================== */

.digital-hub-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

/* Digital Marketing Background Animation */
.hub-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* SEO Animation */
.seo-animation {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: seoFloat 8s ease-in-out infinite;
}

.seo-animation::before {
  content: "🔍";
  font-size: 30px;
  animation: seoPulse 2s ease-in-out infinite;
}

/* Digital Marketing Animation */
.digital-marketing-animation {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: digitalFloat 10s ease-in-out infinite;
}

.digital-marketing-animation::before {
  content: "📈";
  font-size: 35px;
  animation: digitalPulse 3s ease-in-out infinite;
}

/* Meta Ads Animation */
.meta-ads-animation {
  position: absolute;
  bottom: 25%;
  left: 15%;
  width: 90px;
  height: 90px;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: metaFloat 12s ease-in-out infinite;
}

.meta-ads-animation::before {
  content: "📱";
  font-size: 32px;
  animation: metaPulse 2.5s ease-in-out infinite;
}

/* Google Ads Animation */
.google-ads-animation {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 85px;
  height: 85px;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: googleFloat 9s ease-in-out infinite;
}

.google-ads-animation::before {
  content: "🎯";
  font-size: 30px;
  animation: googlePulse 2s ease-in-out infinite;
}

/* Social Media Animation */
.social-media-animation {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 95px;
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: socialFloat 11s ease-in-out infinite;
}

.social-media-animation::before {
  content: "📢";
  font-size: 33px;
  animation: socialPulse 2.8s ease-in-out infinite;
}

/* Hub Content - Glass Effect Card */
.hub-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 600px;
}

.hub-main-card {
  width: 100%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.hub-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 30px;
  z-index: -1;
}

.hub-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 100%;
}

.hub-text-section {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.hub-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hub-title .highlight {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.8),
    rgba(16, 185, 129, 0.8)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hub-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 35px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.8),
    rgba(16, 185, 129, 0.8)
  );
  color: white;
  padding: 18px 35px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(10px);
}

.hub-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
  color: white;
}

.hub-visual-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 450px;
}

.central-hub {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 40px;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 46, 0.95),
    rgba(22, 33, 62, 0.95)
  );
  border: 3px solid rgba(139, 92, 246, 0.6);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.4), 0 0 80px rgba(139, 92, 246, 0.2);
  position: relative;
  z-index: 10;
  margin: 0;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-hub::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    #8b5cf6,
    #10b981,
    #f59e0b,
    #ef4444,
    #8b5cf6
  );
  border-radius: 25px;
  z-index: -1;
  animation: borderGlow 3s linear infinite;
  background-size: 200% 200%;
}

/* Animated Light Bulb */
.light-bulb {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
    0 0 60px rgba(139, 92, 246, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.3);
  position: relative;
  animation: lightBulbGlow 3s ease-in-out infinite;
}

.light-bulb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 70%,
    transparent 100%
  );
  border-radius: 50%;
  animation: lightBulbPulse 2s ease-in-out infinite;
}

.light-bulb::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 15px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.6),
    rgba(16, 185, 129, 0.6)
  );
  border-radius: 0 0 10px 10px;
}

/* Light Rays */
.light-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  animation: lightRaysRotate 10s linear infinite;
}

.light-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  transform-origin: 0 0;
  border-radius: 1px;
  animation: lightRayGlow 2s ease-in-out infinite;
}

.light-ray:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}
.light-ray:nth-child(2) {
  transform: translate(-50%, -50%) rotate(60deg);
}
.light-ray:nth-child(3) {
  transform: translate(-50%, -50%) rotate(120deg);
}
.light-ray:nth-child(4) {
  transform: translate(-50%, -50%) rotate(180deg);
}
.light-ray:nth-child(5) {
  transform: translate(-50%, -50%) rotate(240deg);
}
.light-ray:nth-child(6) {
  transform: translate(-50%, -50%) rotate(300deg);
}

/* Floating Service Icons */
.floating-service-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
}

.floating-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: floatingIconFloat 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.floating-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(
      45deg,
      rgba(139, 92, 246, 0.3),
      rgba(16, 185, 129, 0.3)
    )
    border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: iconBorderGlow 3s ease-in-out infinite;
}

.floating-icon svg {
  width: 25px;
  height: 25px;
  fill: rgba(255, 255, 255, 0.9);
  z-index: 2;
  position: relative;
  margin-bottom: 2px;
}

.icon-label {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-align: center;
  z-index: 2;
  position: relative;
  line-height: 1;
}

/* SEO Icon - Green Theme */
.floating-icon.seo-icon {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.floating-icon.seo-icon::before {
  background: linear-gradient(
      45deg,
      rgba(16, 185, 129, 0.4),
      rgba(5, 150, 105, 0.4)
    )
    border-box;
}

.floating-icon.seo-icon svg {
  fill: rgba(16, 185, 129, 0.9);
}

/* Social Media Icon - Blue Theme */
.floating-icon.social-icon {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.floating-icon.social-icon::before {
  background: linear-gradient(
      45deg,
      rgba(59, 130, 246, 0.4),
      rgba(37, 99, 235, 0.4)
    )
    border-box;
}

.floating-icon.social-icon svg {
  fill: rgba(59, 130, 246, 0.9);
}

/* Google Ads Icon - Red Theme */
.floating-icon.google-ads-icon {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.floating-icon.google-ads-icon::before {
  background: linear-gradient(
      45deg,
      rgba(239, 68, 68, 0.4),
      rgba(220, 38, 38, 0.4)
    )
    border-box;
}

.floating-icon.google-ads-icon svg {
  fill: rgba(239, 68, 68, 0.9);
}

/* Meta Ads Icon - Purple Theme */
.floating-icon.meta-ads-icon {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.floating-icon.meta-ads-icon::before {
  background: linear-gradient(
      45deg,
      rgba(139, 92, 246, 0.4),
      rgba(124, 58, 237, 0.4)
    )
    border-box;
}

.floating-icon.meta-ads-icon svg {
  fill: rgba(139, 92, 246, 0.9);
}

/* Digital Marketing Icon - Orange Theme */
.floating-icon.digital-marketing-icon {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.floating-icon.digital-marketing-icon::before {
  background: linear-gradient(
      45deg,
      rgba(245, 158, 11, 0.4),
      rgba(217, 119, 6, 0.4)
    )
    border-box;
}

.floating-icon.digital-marketing-icon svg {
  fill: rgba(245, 158, 11, 0.9);
}

/* Brand Promotion Icon - Teal Theme */
.floating-icon.brand-promotion-icon {
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.floating-icon.brand-promotion-icon::before {
  background: linear-gradient(
      45deg,
      rgba(20, 184, 166, 0.4),
      rgba(13, 148, 136, 0.4)
    )
    border-box;
}

.floating-icon.brand-promotion-icon svg {
  fill: rgba(20, 184, 166, 0.9);
}

.floating-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.floating-icon:hover svg {
  fill: rgba(255, 255, 255, 1);
}

.floating-icon:hover .icon-label {
  color: rgba(255, 255, 255, 1);
}

/* Position floating icons in a circle around the light bulb */
.floating-icon:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 15%;
  right: 0;
  transform: translateX(50%);
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  bottom: 15%;
  right: 0;
  transform: translateX(50%);
  animation-delay: 2s;
}

.floating-icon:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 3s;
}

.floating-icon:nth-child(5) {
  bottom: 15%;
  left: 0;
  transform: translateX(-50%);
  animation-delay: 4s;
}

.floating-icon:nth-child(6) {
  top: 15%;
  left: 0;
  transform: translateX(-50%);
  animation-delay: 5s;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-section {
  padding: 70px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.portfolio-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.portfolio-element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.1;
  animation: portfolioFloat 15s ease-in-out infinite;
}

.portfolio-element.element-1 {
  top: 10%;
  left: 10%;
  background: rgba(139, 92, 246, 0.15);
  animation-delay: 0s;
}

.portfolio-element.element-2 {
  top: 40%;
  right: 15%;
  background: rgba(16, 185, 129, 0.15);
  animation-delay: -3s;
}

.portfolio-element.element-3 {
  bottom: 20%;
  left: 25%;
  background: rgba(245, 158, 11, 0.15);
  animation-delay: -6s;
}

.portfolio-element.element-4 {
  top: 70%;
  right: 20%;
  background: rgba(239, 68, 68, 0.15);
  animation-delay: -9s;
}

.portfolio-content {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.portfolio-item {
  background: linear-gradient(
    145deg,
    rgba(26, 26, 46, 0.9),
    rgba(22, 33, 62, 0.9)
  );
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.3),
    transparent
  );
  transition: left 0.5s ease;
  border-radius: 25px;
}

.portfolio-item:hover::before {
  left: 100%;
}

.portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4),
    0 0 60px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.8);
}

.portfolio-category {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.8),
    rgba(16, 185, 129, 0.8)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.portfolio-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.portfolio-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.portfolio-stats .stat {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.portfolio-cta {
  text-align: center;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.testimonial-element {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.08;
  animation: testimonialFloat 18s ease-in-out infinite;
}

.testimonial-element.element-1 {
  top: 15%;
  left: 15%;
  background: rgba(139, 92, 246, 0.3);
  animation-delay: 0s;
}

.testimonial-element.element-2 {
  top: 60%;
  right: 10%;
  background: rgba(16, 185, 129, 0.3);
  animation-delay: -6s;
}

.testimonial-element.element-3 {
  bottom: 30%;
  left: 20%;
  background: rgba(245, 158, 11, 0.3);
  animation-delay: -12s;
}

.testimonials-content {
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
}

.testimonial-content {
  margin-bottom: 20px;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(139, 92, 246, 0.6);
  margin-bottom: 15px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.6),
    rgba(16, 185, 129, 0.6)
  );
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.author-position {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-rating .star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat {
  text-align: center;
  padding: 30px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stat:nth-child(1) {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.stat:nth-child(2) {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.stat:nth-child(3) {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.stat:nth-child(1) .stat-number {
  color: #8b5cf6;
}

.stat:nth-child(2) .stat-number {
  color: #10b981;
}

.stat:nth-child(3) .stat-number {
  color: #f59e0b;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 100px 0;
  background: #000000;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   HUB SECTION ANIMATIONS
   ======================================== */

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatingIconFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-5deg);
  }
  75% {
    transform: translate(10px, 10px) rotate(5deg);
  }
}

@keyframes iconBorderGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes lightBulbGlow {
  0%,
  100% {
    filter: brightness(1) contrast(1);
  }
  50% {
    filter: brightness(1.2) contrast(1.1);
  }
}

@keyframes lightBulbPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes lightRaysRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes lightRayGlow {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes seoFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-5deg);
  }
  75% {
    transform: translate(10px, 10px) rotate(5deg);
  }
}

@keyframes seoPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes digitalFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, -15px) rotate(3deg);
  }
  50% {
    transform: translate(-15px, 15px) rotate(-3deg);
  }
  75% {
    transform: translate(15px, 15px) rotate(3deg);
  }
}

@keyframes digitalPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes metaFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(4deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-4deg);
  }
  75% {
    transform: translate(10px, 10px) rotate(4deg);
  }
}

@keyframes metaPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes googleFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(3deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-3deg);
  }
  75% {
    transform: translate(10px, 10px) rotate(3deg);
  }
}

@keyframes googlePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes socialPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes portfolioFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-5deg);
  }
  75% {
    transform: translate(10px, 10px) rotate(5deg);
  }
}

@keyframes testimonialFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(15px, -15px) rotate(3deg);
  }
  66% {
    transform: translate(-15px, 15px) rotate(-3deg);
  }
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ======================================== */

/* Large Tablet Responsive Design */
@media (max-width: 1200px) {
  .hub-card-content {
    gap: 50px;
  }

  .floating-service-icons {
    width: 350px;
    height: 350px;
  }

  .floating-icon {
    width: 60px;
    height: 60px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hub-card-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hub-title {
    font-size: 3rem;
  }

  .hub-visual-section {
    height: 350px;
  }

  .central-hub {
    width: 160px;
    height: 160px;
  }

  .light-bulb {
    width: 100px;
    height: 100px;
  }

  .floating-service-icons {
    width: 300px;
    height: 300px;
  }

  .floating-icon {
    width: 55px;
    height: 55px;
  }

  .floating-icon svg {
    width: 22px;
    height: 22px;
  }

  .icon-label {
    font-size: 7px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Mobile Landscape & Small Tablet */
@media (max-width: 768px) {
  .digital-hub-section {
    padding: 50px 0;
  }

  .portfolio-section,
  .testimonials-section,
  .about-section,
  .cta-section {
    padding: 50px 0;
  }

  .hub-main-card {
    padding: 30px;
  }

  .hub-title {
    font-size: 2.5rem;
  }

  .hub-description {
    font-size: 1.1rem;
  }

  .hub-visual-section {
    height: 300px;
  }

  .central-hub {
    width: 140px;
    height: 140px;
  }

  .light-bulb {
    width: 80px;
    height: 80px;
  }

  .floating-service-icons {
    width: 250px;
    height: 250px;
  }

  .floating-icon {
    width: 45px;
    height: 45px;
  }

  .floating-icon svg {
    width: 18px;
    height: 18px;
  }

  .icon-label {
    font-size: 6px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-item {
    padding: 25px;
  }

  .about-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .stat {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .testimonials-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
  .digital-hub-section,
  .portfolio-section,
  .testimonials-section,
  .about-section,
  .cta-section {
    padding: 40px 0;
  }

  .hub-main-card {
    padding: 20px;
  }

  .hub-title {
    font-size: 2rem;
  }

  .hub-description {
    font-size: 1rem;
  }

  .hub-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hub-visual-section {
    height: 250px;
  }

  .central-hub {
    width: 120px;
    height: 120px;
  }

  .light-bulb {
    width: 60px;
    height: 60px;
  }

  .floating-service-icons {
    width: 200px;
    height: 200px;
  }

  .floating-icon {
    width: 35px;
    height: 35px;
  }

  .floating-icon svg {
    width: 14px;
    height: 14px;
  }

  .icon-label {
    font-size: 5px;
  }

  .portfolio-item {
    padding: 20px;
  }

  .portfolio-stats {
    flex-direction: column;
    gap: 10px;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonials-stats {
    gap: 15px;
  }

  .stat-item {
    padding: 20px;
  }
}

/* Extra Small Mobile Screens */
@media (max-width: 360px) {
  .hub-main-card {
    padding: 15px;
  }

  .hub-visual-section {
    height: 200px;
  }

  .central-hub {
    width: 100px;
    height: 100px;
  }

  .floating-service-icons {
    width: 160px;
    height: 160px;
  }

  .floating-icon {
    width: 28px;
    height: 28px;
  }

  .floating-icon svg {
    width: 12px;
    height: 12px;
  }
}

/* ========================================
   HEADER RESPONSIVE STYLES
   ======================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .modern-header,
  .nav-link,
  .nav-cta,
  .mobile-menu,
  .mobile-nav-link,
  .mobile-cta,
  .mobile-menu-toggle,
  .mobile-menu-toggle span,
  .particle {
    animation: none !important;
    transition: none !important;
  }

  .mobile-nav-link {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .mobile-cta {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Optimize for touch devices */
@media (hover: none) and (pointer: coarse) {
  .nav-link:hover,
  .nav-cta:hover,
  .mobile-menu-toggle:hover {
    transform: none;
  }

  .nav-link:hover::after {
    width: 0;
  }
}

/* Desktop Large Screens */
@media (min-width: 1200px) {
  .header-container {
    padding: 0 40px;
  }

  .nav-links {
    gap: 2px;
    margin-right: 30px;
  }

  .logo-icon {
    width: 90px;
    height: 60px;
  }

  .nav-cta {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Large Tablet and Small Desktop */
@media (max-width: 1200px) {
  .nav-links {
    gap: 2px;
    margin-right: 20px;
  }
}

/* Large Tablet Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 25px;
  }

  .nav-container {
    padding: 10px 0;
    min-height: 65px;
  }

  .logo-icon {
    width: 75px;
    height: 50px;
  }

  .nav-cta {
    padding: 10px 20px;
    font-size: 13px;
  }

  .right-section {
    gap: 15px;
  }

  .nav-links {
    gap: 2px;
    margin-right: 15px;
  }
}

/* Medium Tablet - Hide Navigation, Show Mobile Menu */
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta::after {
    content: "Quote";
  }
}

/* Mobile Landscape & Small Tablet */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .header-container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 10px 0;
  }

  .logo-icon {
    width: 80px;
    height: 50px;
  }

  .logo-text {
    font-size: 22px;
  }

  .nav-cta {
    padding: 12px 20px;
    font-size: 13px;
  }

  .mobile-menu {
    padding: 25px 0;
    gap: 25px;
  }

  .mobile-nav-link {
    font-size: 18px;
    padding: 12px 0;
  }

  .mobile-cta {
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 15px;
  }
}

/* iPhone 14 Pro Max and similar devices */
@media (max-width: 430px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .header-container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 8px 0;
  }

  .logo-icon {
    width: 70px;
    height: 45px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .header-container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 8px 0;
  }

  .logo-icon {
    width: 70px;
    height: 45px;
  }

  .logo-text {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 12px;
  }

  .mobile-nav-link {
    font-size: 16px;
    padding: 14px 20px;
  }

  .mobile-cta {
    padding: 14px 28px;
    font-size: 14px;
    margin: 15px 20px 20px 20px;
  }
}

/* Extra Small Mobile Screens */
@media (max-width: 360px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .header-container {
    padding: 0 10px;
  }

  .logo-icon {
    width: 60px;
    height: 40px;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta:after {
    content: "Quote";
    font-size: 11px;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .mobile-menu-toggle {
    min-width: 42px;
    min-height: 42px;
    padding: 10px;
  }

  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 15px;
  }

  .mobile-cta {
    margin: 10px 15px 15px 15px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Ultra Small Screens and Foldable Devices */
@media (max-width: 320px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .header-container {
    padding: 0 8px;
  }

  .nav-container {
    padding: 6px 0;
  }

  .logo-icon {
    width: 50px;
    height: 35px;
  }

  .nav-cta {
    padding: 6px 12px;
    font-size: 10px;
    min-width: 60px;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta:after {
    content: "Quote";
    font-size: 10px;
  }

  .mobile-menu-toggle {
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }

  .mobile-nav-link {
    padding: 10px 12px;
    font-size: 14px;
  }

  .mobile-cta {
    margin: 8px 12px 12px 12px;
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Galaxy Fold and similar ultra-narrow devices */
@media (max-width: 280px) {
  .nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .header-container {
    padding: 0 5px;
  }

  .nav-container {
    padding: 5px 0;
  }

  .logo-icon {
    width: 45px;
    height: 32px;
  }

  .nav-actions {
    gap: 4px;
  }

  .nav-cta {
    padding: 5px 8px;
    font-size: 9px;
    min-width: 50px;
  }

  .mobile-menu-toggle {
    padding: 6px;
    min-width: 36px;
    min-height: 36px;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
  }

  .mobile-nav-link {
    padding: 8px 10px;
    font-size: 13px;
  }

  .mobile-cta {
    margin: 6px 10px 10px 10px;
    padding: 8px 12px;
    font-size: 11px;
  }
}
