/* ============================================
   GO PRO MEDIA - Website Styles
   Color Scheme: Black (#0a0a0a) & Blue (#00a8ff)
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary-blue: #00a8ff;
  --primary-blue-dark: #0088cc;
  --primary-blue-light: #33b5ff;
  --primary-blue-glow: rgba(0, 168, 255, 0.3);

  /* Background Colors */
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #0d1117 50%, #0a0a0a 100%);

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #a0a0a0;
  --text-dark: #666666;

  /* Accent Colors */
  --accent-cyan: #00d4ff;
  --accent-purple: #7c3aed;
  --accent-gradient: linear-gradient(135deg, #00a8ff 0%, #00d4ff 100%);

  /* Borders & Shadows */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-hover: rgba(0, 168, 255, 0.3);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 168, 255, 0.2);

  /* Typography */
  --font-primary: "Poppins", sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Base */
.section {
  padding: var(--section-padding);
  position: relative;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 168, 255, 0.1);
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Text Gradient */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(0, 168, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 168, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  background: rgba(0, 168, 255, 0.1);
}

.btn-white {
  background: var(--text-white);
  color: var(--bg-dark);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 120px;
  height: 120px;
}

.loader-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-inner::before,
.loader-inner::after {
  content: "";
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
}

.loader-inner::before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-top-color: var(--accent-cyan);
  animation: spin 2s linear infinite reverse;
}

.loader-inner::after {
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-top-color: var(--primary-blue-light);
  animation: spin 1.5s linear infinite;
}

.loader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 2px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 24px;
  font-weight: 800;
}

.logo-go {
  color: var(--text-white);
}

.logo-pro {
  color: var(--primary-blue);
}

.logo-media {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  margin-left: 5px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-normal);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 168, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      rgba(124, 58, 237, 0.08) 0%,
      transparent 40%
    );
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-number::after {
  content: "+";
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

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

.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border: 2px solid rgba(0, 168, 255, 0.2);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero-circle-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: rgba(0, 168, 255, 0.05);
  border: 1px solid rgba(0, 168, 255, 0.1);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite 0.5s;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.7;
  }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 24px;
  color: var(--primary-blue);
}

.floating-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.card-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 5%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image .image-wrapper {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(0, 168, 255, 0.1) 100%
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.about-img-placeholder i {
  font-size: 80px;
  color: var(--primary-blue);
  opacity: 0.5;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent-gradient);
  padding: 25px 35px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.exp-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.exp-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.about-content .section-tag {
  margin-bottom: 15px;
}

.about-content .section-title {
  font-size: 38px;
  margin-bottom: 25px;
}

.about-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 168, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--primary-blue);
  font-size: 18px;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background: var(--bg-darker);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  transition: var(--transition-normal);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: linear-gradient(
    135deg,
    rgba(0, 168, 255, 0.1) 0%,
    var(--bg-card) 100%
  );
  border-color: rgba(0, 168, 255, 0.3);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gradient);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 50px;
}

.service-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 32px;
  color: var(--primary-blue);
  position: relative;
  z-index: 1;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 168, 255, 0.1);
  border-radius: var(--radius-md);
  transform: rotate(45deg);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 15px;
}

.service-description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.service-features li i {
  color: var(--primary-blue);
  font-size: 12px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
}

.service-link:hover {
  gap: 12px;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--text-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.portfolio-item.large {
  grid-column: span 2;
}

.portfolio-image {
  position: relative;
  height: 300px;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(0, 168, 255, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-placeholder i {
  font-size: 50px;
  color: var(--primary-blue);
  opacity: 0.5;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px;
  opacity: 0;
  transition: var(--transition-normal);
}

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

.portfolio-category {
  font-size: 12px;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.portfolio-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
}

.portfolio-link {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-link {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-link:hover {
  background: var(--primary-blue-dark);
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us {
  background: var(--bg-darker);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content .section-tag {
  margin-bottom: 15px;
}

.why-us-content .section-title {
  font-size: 38px;
  margin-bottom: 20px;
}

.reasons-list {
  margin-top: 40px;
}

.reason-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.reason-item:hover {
  border-color: var(--border-color-hover);
  transform: translateX(10px);
}

.reason-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
  opacity: 0.5;
}

.reason-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.reason-content p {
  font-size: 14px;
  color: var(--text-muted);
}

.why-us-visual {
  position: relative;
  height: 500px;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.visual-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow:
    var(--shadow-glow),
    0 0 100px rgba(0, 168, 255, 0.3);
}

.circle-number {
  font-size: 60px;
  font-weight: 800;
  color: var(--text-white);
}

.circle-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.floating-badge i {
  font-size: 24px;
  color: var(--primary-blue);
}

.floating-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.badge-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  right: 5%;
  animation-delay: 1.5s;
}

/* ============================================
   Team Section
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-glow);
}

.team-image {
  position: relative;
  height: 280px;
}

.team-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(0, 168, 255, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder i {
  font-size: 60px;
  color: var(--primary-blue);
  opacity: 0.3;
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  transform: translateY(100%);
  transition: var(--transition-normal);
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition-normal);
}

.team-social a:hover {
  background: var(--primary-blue);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.team-role {
  font-size: 14px;
  color: var(--primary-blue);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background: var(--bg-darker);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
  display: block;
}

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

.testimonial-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 40px;
  color: var(--primary-blue);
  opacity: 0.2;
}

.testimonial-text {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  font-size: 24px;
  color: var(--primary-blue);
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
}

.author-role {
  font-size: 14px;
  color: var(--text-muted);
}

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

.testimonial-rating i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-dots .dot.active {
  width: 30px;
  background: var(--primary-blue);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info .section-tag {
  margin-bottom: 15px;
}

.contact-info .section-title {
  font-size: 38px;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  color: var(--primary-blue);
}

.contact-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 15px;
  color: var(--text-muted);
}

.social-links h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-normal);
}

.social-icon:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--text-white);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0a0a0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  padding: 100px 0;
  background: var(--accent-gradient);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-darker);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary-blue);
  color: var(--text-white);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 25px;
}

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

.footer-links ul li a {
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.footer-links ul li a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.footer-contact ul li i {
  color: var(--primary-blue);
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: 48px;
  }

  .about-grid,
  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    order: 2;
  }

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

  .portfolio-item.large {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 30px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section-title {
    font-size: 32px;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .portfolio-filter {
    flex-wrap: wrap;
  }

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

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

  .cta-title {
    font-size: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .why-us-visual {
    height: 350px;
  }

  .visual-circle {
    width: 200px;
    height: 200px;
  }

  .circle-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .experience-badge {
    right: 0;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .testimonial-content {
    padding: 30px 20px;
  }
}
