/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-card: rgba(26, 26, 26, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;

  /* Gradients */
  --gradient-hero: linear-gradient(
    135deg,
    #ff6b6b 0%,
    #4ecdc4 50%,
    #45b7d1 100%
  );
  --gradient-cards: linear-gradient(
    135deg,
    #8b5cf6 0%,
    #ec4899 25%,
    #f59e0b 75%,
    #fbbf24 100%
  );

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 1rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px; /* Base font size for mobile */
}

/* Mobile-first base styles */
.btn-apply {
  display: none; /* Hidden on mobile by default */
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
  text-align: center;
}

.btn-apply:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Header Styles - Mobile First */
/* Header Section - Mobile First */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 60px;
}

.logo {
  z-index: 1001;
  flex-shrink: 0;
}

/* Logo image styling */
.logo {
  margin: 0;
  line-height: 0;
}

.logo picture {
  display: block;
}

.logo img {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: var(--spacing-lg);
  gap: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:last-child {
  border-bottom: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-link:hover {
  color: var(--text-secondary);
}

.btn-apply {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: none;
  text-align: center;
  flex-shrink: 0;
}

.btn-apply:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Enhanced Hero Animations */
.hero-title {
  animation: title-glow 4s ease-in-out infinite alternate;
}

@keyframes title-glow {
  0% {
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
  }
  100% {
    text-shadow: 0 0 40px rgba(102, 126, 234, 0.8),
      0 0 60px rgba(118, 75, 162, 0.6);
  }
}

.hero-subtitle {
  animation: subtitle-pulse 3s ease-in-out infinite;
}

@keyframes subtitle-pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.btn-hero {
  animation: button-float 2s ease-in-out infinite;
}

@keyframes button-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 80%;
  animation-delay: 1s;
  animation-duration: 8s;
  border-radius: 20%;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 10s;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.shape-4 {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
  animation-duration: 7s;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-5 {
  width: 70px;
  height: 70px;
  top: 70%;
  left: 60%;
  animation-delay: 4s;
  animation-duration: 9s;
  border-radius: 30%;
}

.shape-6 {
  width: 35px;
  height: 35px;
  top: 15%;
  left: 70%;
  animation-delay: 5s;
  animation-duration: 5s;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@keyframes float-shape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) rotate(180deg) scale(0.9);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) rotate(270deg) scale(1.05);
    opacity: 0.5;
  }
}

/* Particle System */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(102, 126, 234, 0.8);
  border-radius: 50%;
  animation: particle-float 12s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 12s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
  animation-duration: 14s;
}

.particle:nth-child(5) {
  left: 60%;
  animation-delay: 8s;
  animation-duration: 16s;
}

.particle:nth-child(6) {
  left: 70%;
  animation-delay: 10s;
  animation-duration: 13s;
}

.particle:nth-child(7) {
  left: 80%;
  animation-delay: 12s;
  animation-duration: 17s;
}

.particle:nth-child(8) {
  left: 90%;
  animation-delay: 14s;
  animation-duration: 11s;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(-10vh) translateX(20px) scale(1);
  }
  100% {
    transform: translateY(-20vh) translateX(40px) scale(0);
    opacity: 0;
  }
}

/* Enhanced Gradient Orbs */
.gradient-orb-1 {
  animation: orb-float-1 8s ease-in-out infinite;
}

.gradient-orb-2 {
  animation: orb-float-2 10s ease-in-out infinite;
}

.gradient-orb-3 {
  animation: orb-float-3 12s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -20px) scale(1.1) rotate(120deg);
    opacity: 0.6;
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9) rotate(240deg);
    opacity: 0.4;
  }
}

@keyframes orb-float-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translate(-40px, -30px) scale(1.2) rotate(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translate(20px, -40px) scale(0.8) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translate(30px, 20px) scale(1.1) rotate(270deg);
    opacity: 0.6;
  }
}

@keyframes orb-float-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.2;
  }
  20% {
    transform: translate(50px, 20px) scale(1.3) rotate(72deg);
    opacity: 0.5;
  }
  40% {
    transform: translate(-30px, -50px) scale(0.7) rotate(144deg);
    opacity: 0.3;
  }
  60% {
    transform: translate(40px, -20px) scale(1.1) rotate(216deg);
    opacity: 0.6;
  }
  80% {
    transform: translate(-20px, 40px) scale(0.9) rotate(288deg);
    opacity: 0.4;
  }
}

/* Hero Content Animations */
.hero-content {
  animation: content-entrance 2s ease-out;
}

@keyframes content-entrance {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.title-line {
  animation: title-line-entrance 1.5s ease-out;
}

.title-line:nth-child(1) {
  animation-delay: 0.5s;
}

.title-line:nth-child(2) {
  animation-delay: 0.8s;
}

@keyframes title-line-entrance {
  0% {
    opacity: 0;
    transform: translateX(-50px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

/* Responsive Animations */
@media (max-width: 768px) {
  .shape {
    animation-duration: 6s;
  }

  .particle {
    animation-duration: 10s;
  }

  .gradient-orb-1,
  .gradient-orb-2,
  .gradient-orb-3 {
    animation-duration: 6s;
  }
}

@media (max-width: 480px) {
  .shape {
    animation-duration: 4s;
  }

  .particle {
    animation-duration: 8s;
  }

  .floating-shapes .shape {
    width: 30px;
    height: 30px;
  }

  .floating-shapes .shape-1,
  .floating-shapes .shape-3,
  .floating-shapes .shape-5 {
    width: 40px;
    height: 40px;
  }
}
/* Hero Section - Mobile First */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-md);
  overflow: hidden;
  padding-top: calc(60px + var(--spacing-xl));
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  font-size: 0.8rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(2.5rem, 10vw, 6rem);
  font-weight: var(--font-weight-black);
  line-height: 0.9;
  margin-bottom: var(--spacing-xl);
  color: var(--text-primary);
}

.title-line {
  display: block;
}

.title-indent {
  margin-left: 1rem;
}

.btn-hero {
  font-size: 0.7rem;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  display: inline-block;
  width: 15rem;
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.gradient-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.gradient-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #4ecdc4 0%, transparent 70%);
  top: 20%;
  right: 20%;
  animation-delay: 2s;
}

.gradient-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #45b7d1 0%, transparent 70%);
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Social Media Section */
.social-media {
  background: var(--bg-secondary);
  padding: var(--spacing-xl) var(--spacing-lg);
  margin-top: -1px;
}

.social-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.social-item {
  width: 8rem;
  height: 8rem;
  text-align: center;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: all 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

.social-link:hover .social-icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.social-label {
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Social Media Brand Colors on Hover */
.social-link[href*="facebook"]:hover {
  color: #1877f2;
}

.social-link[href*="twitter"]:hover {
  color: #1da1f2;
}

.social-link[href*="instagram"]:hover {
  color: #e4405f;
}

.social-link[href*="tiktok"]:hover {
  color: #000000;
}

/* Services Section */
.services {
  position: relative;
  padding: var(--spacing-3xl) var(--spacing-lg);
  background: var(--bg-primary);
}

.services-content {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
}

.star-icon {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--text-primary);
  opacity: 0.8;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-lg);
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: var(--text-secondary);
}

.link-icon {
  font-size: 0.8rem;
}

.services-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.services-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Cards */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  color: var(--text-primary);
}

.service-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.service-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.service-number {
  position: absolute;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  font-size: 2rem;
  font-weight: var(--font-weight-black);
  color: var(--text-secondary);
  opacity: 0.6;
}

/* 3D Shapes */
.service-shape {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: rotate 10s linear infinite;
}

.shape-1 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: rotate(15deg);
}

.shape-2 {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(-15deg);
}

.shape-3 {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(30deg);
}

.shape-4 {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(-30deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Services Background */
.services-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.services-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: var(--gradient-cards);
  filter: blur(100px);
  opacity: 0.3;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Companies Section */
.companies {
  position: relative;
  padding: var(--spacing-3xl) var(--spacing-lg);
  background: var(--bg-secondary);
  overflow: hidden;
}

.companies-content {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 2;
}

.companies-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-3xl);
  line-height: 1.2;
  color: var(--text-primary);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 var(--spacing-lg);
}

.company-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  min-width: 160px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.company-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.company-card:hover::before {
  opacity: 1;
}

.company-logo {
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(1);
}

.company-logo picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.company-card:hover .company-logo {
  transform: scale(1.1) rotate(5deg);
  filter: grayscale(0);
}

.company-card:hover .company-logo picture img {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}



/* Companies Background */
.companies-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.companies-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  filter: blur(100px);
  opacity: 0.2;
  animation: companies-pulse 10s ease-in-out infinite;
}

@keyframes companies-pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
  }
}

/* Team Members Section */
.team {
  position: relative;
  padding: var(--spacing-3xl) var(--spacing-lg);
  background: var(--bg-primary);
  overflow: hidden;
}

.team-content {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 2;
}

.team-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
  color: var(--text-primary);
}

.team-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.team-member {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.member-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  cursor: pointer;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.member-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-lg);
  border-radius: 50%;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

.member-card:hover .member-image {
  transform: translateZ(20px) rotateY(10deg);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.image-placeholder svg {
  width: 60px;
  height: 60px;
  fill: rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.member-card:hover .image-placeholder {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.member-card:hover .image-placeholder svg {
  transform: scale(1.1);
  fill: rgba(255, 255, 255, 1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 50%;
}

.member-card:hover .image-overlay {
  opacity: 1;
}

.member-info {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-name {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.member-card:hover .member-name {
  transform: translateZ(10px);
  color: var(--text-secondary);
}

.member-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.member-card:hover .member-role {
  transform: translateZ(5px);
  color: var(--text-secondary);
}

.member-social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: auto;
}

.member-social .social-link {
  /* width: 36px;
  height: 36px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.member-social .social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateZ(10px) scale(1.1);
}

.member-social .social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.member-social .social-link:hover svg {
  fill: var(--text-secondary);
  transform: rotateY(180deg);
}

/* 3D Shapes */
.member-shape {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float-3d 8s ease-in-out infinite;
  transform-style: preserve-3d;
}

.shape-1 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: rotate(15deg) rotateX(45deg);
  animation-delay: 0s;
}

.shape-2 {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(-15deg) rotateY(45deg);
  animation-delay: 2s;
}

.shape-3 {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(30deg) rotateZ(45deg);
  animation-delay: 4s;
}

.shape-4 {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(-30deg) rotateX(30deg) rotateY(30deg);
  animation-delay: 6s;
}

@keyframes float-3d {
  0%,
  100% {
    transform: rotate(0deg) rotateX(0deg) rotateY(0deg) translateZ(0px);
    opacity: 0.3;
  }
  25% {
    transform: rotate(90deg) rotateX(45deg) rotateY(0deg) translateZ(10px);
    opacity: 0.6;
  }
  50% {
    transform: rotate(180deg) rotateX(0deg) rotateY(45deg) translateZ(20px);
    opacity: 0.8;
  }
  75% {
    transform: rotate(270deg) rotateX(45deg) rotateY(45deg) translateZ(10px);
    opacity: 0.6;
  }
}

/* Team Background */
.team-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.team-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #f5576c 75%,
    #4facfe 100%
  );
  filter: blur(120px);
  opacity: 0.2;
  animation: team-pulse 12s ease-in-out infinite;
}

@keyframes team-pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.1) rotate(120deg);
  }
  66% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(0.9) rotate(240deg);
  }
}

/* Contact Us Section - Mobile First */
.contact {
  position: relative;
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--bg-primary);
  overflow: hidden;
}

.contact-content {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: var(--font-weight-black);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  color: var(--text-primary);
}

.contact-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.contact-form {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  order: 1;
}

.contact-form:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.form-row {
  margin-bottom: var(--spacing-lg);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-field label {
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
  font-family: inherit;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.form-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.btn-submit {
  font-size: 1rem;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  min-width: 160px;
  display: inline-block;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.form-status {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  opacity: 1;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  opacity: 1;
}

.field-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: var(--spacing-xs);
  opacity: 0;
  transition: all 0.3s ease;
}

.field-error.show {
  opacity: 1;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  order: 2;
}

.option-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.option-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.option-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--text-primary);
}

.option-content h3 {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.option-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.contact-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #f5576c 75%,
    #4facfe 100%
  );
  filter: blur(120px);
  opacity: 0.15;
  animation: contact-pulse 15s ease-in-out infinite;
}

@keyframes contact-pulse {
  0%,
  100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.1) rotate(120deg);
  }
  66% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.9) rotate(240deg);
  }
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.footer-heading {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.footer-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: var(--spacing-sm);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Design - Mobile First Approach */

/* Extra Small Mobile Styles (320px - 480px) */
@media (max-width: 480px) {
  .nav {
    padding: var(--spacing-xs);
    min-height: 50px;
  }

  .logo {
    font-size: 0.9rem;
  }
  .logo img {
    height: 22px;
  }

  .hero {
    padding: var(--spacing-md) var(--spacing-xs);
    padding-top: calc(50px + var(--spacing-md));
  }

  .hero-title {
    font-size: clamp(1.8rem, 15vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 0.65rem;
  }

  .btn-hero {
    font-size: 0.8rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    min-width: 100px;
    margin-top: 2rem;
  }

  .social-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0 !important;
  }

  .social-item {
    width: 6rem;
    height: 6rem;
    text-align: center;
  }

  .social-item a {
    width: 100%;
    height: 100%;
  }

  .social-item a .social-label {
    display: none;
  }

  .services-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
  }

  .service-card {
    width: 22rem;
    padding: var(--spacing-sm);
  }

  .company-card .company-logo {
    width: 5rem;
    height: 5rem;
  }

  .contact-form {
    padding: var(--spacing-sm);
  }

  .btn-submit {
    display: block;
    width: 100%;
  }

  .form-field input,
  .form-field textarea {
    font-size: 0.85rem;
    padding: var(--spacing-xs);
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-content .footer-brand {
    text-align: center;
  }

  .footer-content .footer-links {
    display: flex;
    align-items: space-between;
    justify-content: center;
    column-gap: 8rem;
  }
}

/* Mobile Phone Styles (320px - 767px) */
@media (max-width: 767px) {
  /* Header Mobile Optimizations */
  .header {
    width: 100%;
    box-sizing: border-box;
  }

  .nav {
    padding: var(--spacing-xs) var(--spacing-sm);
    min-height: 55px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1rem;
    flex-shrink: 0;
  }
  .logo img {
    height: 24px;
  }

  .nav-links {
    width: 100%;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    box-sizing: border-box;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: var(--spacing-sm) 0;
    text-align: center;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    padding: var(--spacing-xs);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .btn-apply {
    display: none;
  }

  .btn-submit {
    display: block;
  }

  /* Hero Mobile Optimizations */
  .hero {
    padding: var(--spacing-lg) var(--spacing-sm);
    padding-top: calc(55px + var(--spacing-lg));
    min-height: calc(100vh - 55px);
  }

  .hero-content {
    padding: 0 var(--spacing-xs);
  }

  .hero-subtitle {
    font-size: 0.7rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 4rem);
    line-height: 0.85;
    margin-bottom: var(--spacing-lg);
  }

  .title-indent {
    margin-left: 0.5rem;
  }

  .btn-hero {
    font-size: 0.85rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    min-width: 120px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Social Media Mobile */
  .social-media {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .social-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .social-item {
    padding: var(--spacing-sm);
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .social-label {
    font-size: 0.8rem;
  }

  /* Services Mobile */
  .services {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .service-card {
    padding: var(--spacing-md);
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  /* Companies Mobile */
  .companies {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: 0 var(--spacing-sm);
  }

  .company-card {
    min-height: 120px;
    min-width: 120px;
    padding: var(--spacing-md);
  }

  .company-logo {
    width: 32px;
    height: 32px;
  }

 

  /* Team Mobile */
  .team {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .team-grid {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .member-card {
    height: 20rem;
    width: 20rem;
    padding: var(--spacing-md);
  }

  .member-image {
    width: 6rem;
    height: 6rem;
  }

  .member-name {
    font-size: 1rem;
  }

  .member-role {
    font-size: 0.8rem;
  }

  .member-description {
    font-size: 0.8rem;
  }

  /* Contact Mobile */
  .contact {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .contact-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    margin-bottom: var(--spacing-sm);
  }

  .contact-description {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
  }

  .contact-wrapper {
    gap: var(--spacing-md);
  }

  .contact-form {
    padding: var(--spacing-md);
  }

  .form-field input,
  .form-field textarea {
    font-size: 0.9rem;
    padding: var(--spacing-sm);
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .btn-submit {
    font-size: 0.9rem;
    padding: var(--spacing-sm) var(--spacing-md);
    width: 100%;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .option-card {
    padding: var(--spacing-sm);
    gap: var(--spacing-xs);
  }

  .option-icon {
    width: 35px;
    height: 35px;
  }

  .option-icon svg {
    width: 18px;
    height: 18px;
  }

  .option-content h3 {
    font-size: 0.9rem;
  }

  .option-content p {
    font-size: 0.8rem;
  }

  /* Footer Mobile */
  .footer {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
  }

  .footer-social svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .footer-legal {
    font-size: 0.8rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .nav {
    padding: var(--spacing-md) var(--spacing-lg);
    min-height: 70px;
  }

  .logo {
    font-size: 1.3rem;
  }
  .logo img {
    height: 30px;
  }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    backdrop-filter: none;
    border: none;
    padding: 0;
    gap: var(--spacing-lg);
    transform: none;
    opacity: 1;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0;
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .btn-apply {
    display: block;
    font-size: 0.9rem;
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .hero {
    padding: var(--spacing-2xl) var(--spacing-lg);
    padding-top: calc(70px + var(--spacing-2xl));
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
  }

  .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: var(--spacing-xl);
  }

  .title-indent {
    margin-left: 1.5rem;
  }

  .btn-hero {
    font-size: 1rem;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
  }

  .social-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .carousel-track {
    gap: var(--spacing-md);
  }

  .companies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }

  .company-card {
    min-height: 140px;
    min-width: 140px;
    padding: var(--spacing-lg);
  }

  .company-logo {
    width: 6rem;
    height: 6rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .member-card {
    height: 350px;
    padding: var(--spacing-lg);
  }

  .member-image {
    width: 100px;
    height: 100px;
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }

  .contact-form {
    order: 1;
    padding: var(--spacing-xl);
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }

  .contact-options {
    order: 2;
    gap: var(--spacing-lg);
  }

  .option-card {
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
  }

  .option-icon {
    width: 48px;
    height: 48px;
  }

  .option-icon svg {
    width: 24px;
    height: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .nav {
    padding: var(--spacing-md) var(--spacing-lg);
    min-height: 80px;
  }

  .logo {
    font-size: 1.4rem;
  }
  .logo img {
    height: 34px;
  }

  .nav-links {
    gap: var(--spacing-xl);
  }

  .nav-link {
    font-size: 1rem;
  }

  .btn-apply {
    font-size: 1rem;
    padding: var(--spacing-md) var(--spacing-lg);
  }

  .hero {
    padding: var(--spacing-3xl) var(--spacing-lg);
    padding-top: calc(80px + var(--spacing-3xl));
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-xl);
  }

  .hero-title {
    font-size: clamp(4rem, 8vw, 6rem);
    margin-bottom: var(--spacing-2xl);
  }

  .title-indent {
    margin-left: 2rem;
  }

  .btn-hero {
    font-size: 1.1rem;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-xl);
  }

  .social-container {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }

  .services-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }

  .carousel-track {
    gap: var(--spacing-lg);
  }

  .companies-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }

  .company-card {
    min-height: 160px;
    min-width: 160px;
    padding: var(--spacing-xl);
  }

  .company-logo {
    width: 8rem;
    height: 8rem;
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
  }

  .member-card {
    height: 25rem;
    width: 20rem;
    padding: var(--spacing-xl);
  }

  .member-image {
    width: 120px;
    height: 120px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-2xl);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .nav {
    padding: var(--spacing-lg) var(--spacing-xl);
    min-height: 90px;
  }

  .logo {
    font-size: 1.5rem;
  }
  .logo img {
    height: 5rem;
  }

  .nav-links {
    gap: var(--spacing-2xl);
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .btn-apply {
    font-size: 1.1rem;
    padding: var(--spacing-lg) var(--spacing-xl);
  }

  .hero {
    padding: var(--spacing-3xl) var(--spacing-xl);
    padding-top: calc(90px + var(--spacing-3xl));
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
  }

  .hero-title {
    font-size: clamp(5rem, 8vw, 7rem);
    margin-bottom: var(--spacing-2xl);
  }

  .title-indent {
    margin-left: 2.5rem;
  }

  .btn-hero {
    font-size: 1.2rem;
    padding: var(--spacing-xl) var(--spacing-2xl);
    border-radius: var(--radius-xl);
  }

  .services-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
