:root {
  --bg-dark: #0a0e1a;
  --bg-dark-2: #0f172a;
  --bg-dark-3: #1e293b;
  --primary: #a855f7;
  --primary-dark: #9333ea;
  --secondary: #ec4899;
  --accent: #22c55e;
  --text-light: #f1f5f9;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVIGATION */
#mainNav {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

#mainNav.scrolled {
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-text {
  color: var(--text-light);
}

.brand-accent {
  color: var(--secondary);
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* HERO SECTION */
.hero-new {
  min-height: 100vh;
  background: radial-gradient(circle at top, #581c87, var(--bg-dark));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0.3;
  filter: blur(100px);
  animation: float 20s ease-in-out infinite;
}

.hero-glow-1 {
  top: -150px;
  left: -150px;
}

.hero-glow-2 {
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.1); }
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(168, 85, 247, 0.2);
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px auto;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* PAGE HERO */
.page-hero {
  min-height: 60vh;
  background: radial-gradient(circle at top, #581c87, var(--bg-dark));
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.min-vh-75 {
  min-height: 75vh;
}

.section-badge {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SECTIONS */
.section-dark {
  background: var(--bg-dark-2);
  padding: 100px 0;
}

.section-padding {
  padding: 100px 0;
}

.bg-dark-2 {
  background: var(--bg-dark-2);
}

.bg-soft-dark {
  background-color: rgba(255, 255, 255, 0.03);
}

/* TECH GRID */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
  backdrop-filter: blur(10px);
}

.tech-item:hover {
  background: rgba(168, 85, 247, 0.2);
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

/* TECH SECTION (modern) */
.tech-section {
  position: relative;
  overflow: hidden;
}

.tech-section::before,
.tech-section::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18), transparent 60%);
  filter: blur(10px);
  z-index: 0;
}

.tech-section::before {
  top: -40px;
  left: -60px;
}

.tech-section::after {
  bottom: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18), transparent 60%);
}

.tech-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 1;
  position: relative;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.tech-matrix {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.tech-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  min-height: 170px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.tech-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.18);
}

.tech-card:hover::after {
  opacity: 1;
}

.tech-card h6 {
  margin: 12px 0 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tech-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.tech-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a0e1a;
  background: var(--text-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  font-size: 1.1rem;
}

.tech-icon.php { background: linear-gradient(135deg, #8892bf, #6b78b8); color: #0f0f1f; }
.tech-icon.laravel { background: linear-gradient(135deg, #f45d48, #f97316); color: #fff7ed; }
.tech-icon.python { background: linear-gradient(135deg, #3776ab, #50a7f2); color: #eaf4ff; }
.tech-icon.django { background: linear-gradient(135deg, #0c4b33, #0f7c54); color: #e8fff4; }
.tech-icon.react { background: linear-gradient(135deg, #0ea5e9, #22d3ee); color: #0b1727; }
.tech-icon.bootstrap { background: linear-gradient(135deg, #563d7c, #7c3aed); color: #f5f3ff; }
.tech-icon.database { background: linear-gradient(135deg, #0ea5e9, #6366f1); color: #e5edff; }
.tech-icon.api { background: linear-gradient(135deg, #f59e0b, #f97316); color: #23130a; }

/* SERVICE CARDS */
.service-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  backdrop-filter: blur(10px);
}

.service-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.service-box h5 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.service-box p {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card-modern {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  backdrop-filter: blur(10px);
}

.service-card-modern:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  margin-bottom: 20px;
}

.service-icon {
  font-size: 2rem;
  color: white;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-features li {
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* PRICING */
.pricing-section {
  position: relative;
}

.pricing-toggle-wrapper {
  text-align: center;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  gap: 10px;
}

.pricing-toggle .label {
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.pricing-toggle .label:first-child {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0b1120;
}

.pricing-toggle .toggle-divider {
  width: 1px;
  height: 18px;
  background: rgba(148, 163, 184, 0.5);
}

.pricing-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(168, 85, 247, 0.24), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-featured {
  border-color: rgba(168, 85, 247, 0.9);
  box-shadow: 0 28px 80px rgba(168, 85, 247, 0.35);
}

.badge-popular {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 20%, #f97316, #a855f7);
}

.pricing-icon {
  font-size: 1.8rem;
  color: white;
}

.pricing-card h5 {
  margin-top: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 4px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.pricing-features li i {
  color: var(--accent);
  font-size: 1rem;
}

.pricing-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.pricing-footer .price {
  font-size: 1.7rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-footer .currency {
  font-size: 1.1rem;
  opacity: 0.8;
}

.pricing-footer .suffix {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-footer .hint {
  font-size: 0.85rem;
  margin-top: 4px;
}

/* EXPERTISE CARDS */
.expertise-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  text-align: center;
}

.expertise-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: white;
}

.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.bg-success-gradient {
  background: linear-gradient(135deg, var(--accent), #16a34a);
}

.bg-warning-gradient {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tech-tag {
  background: rgba(168, 85, 247, 0.2);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

/* VALUES SECTION */
.value-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-item h5 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 8px;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ABOUT VISUAL */
.about-visual {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
  font-weight: 600;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  color: var(--secondary);
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 10%;
  animation-delay: -2s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* PROCESS STEPS */
.process-step {
  text-align: center;
  padding: 30px;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.process-step h5 {
  color: var(--text-light);
  font-weight: 700;
  margin-top: 20px;
}

/* CONTACT */
.contact-info-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  height: 100%;
}

/* MODERN CONTACT FORM - Minimalist Underline Design */
.contact-form-card-modern {
  background: rgba(15, 23, 42, 0.8);
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.form-glow-effect {
  position: absolute;
  top: 0;
  right: -50px;
  width: 400px;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(168, 85, 247, 0.4), rgba(168, 85, 247, 0.2) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.modern-contact-form {
  position: relative;
  z-index: 1;
}

.form-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .form-row-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.form-group-modern {
  position: relative;
  margin-bottom: 30px;
}

.form-label-modern {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.form-group-modern:focus-within .form-label-modern {
  color: var(--primary);
}

.form-input-modern {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  font-size: 1rem;
  padding: 12px 0;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input-modern:focus {
  border-bottom-color: var(--primary);
  color: var(--text-light);
}

.form-textarea-modern {
  min-height: 120px;
  resize: vertical;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-light);
  font-size: 1rem;
  padding: 12px 0;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  line-height: 1.6;
}

.form-textarea-modern:focus {
  border-bottom-color: var(--primary);
  color: var(--text-light);
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.form-input-modern:focus::placeholder,
.form-textarea-modern:focus::placeholder {
  opacity: 0.5;
}

.error-message {
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}

.form-input-modern.is-invalid {
  border-bottom-color: #f87171;
}

.btn-submit-modern {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-modern:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.btn-submit-modern:active {
  transform: translateY(0);
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h6 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--secondary);
}

.form-control,
.form-control-lg {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 10px;
  padding: 12px 16px;
}

.form-control:focus,
.form-control-lg:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.25);
}

.form-control::placeholder,
.form-control-lg::placeholder {
  color: var(--text-muted);
}

.form-label {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.alert {
  border-radius: 12px;
  border: none;
  backdrop-filter: blur(10px);
}

.alert-success {
  background: rgba(34, 197, 94, 0.2);
  color: var(--accent);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* TEAM PAGE */
.team-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.team-avatar {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
  border-color: var(--secondary);
  transform: scale(1.05);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(168, 85, 247, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: white;
  color: var(--primary);
  transform: scale(1.1);
}

.team-name {
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.team-role {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.skill-tag {
  background: rgba(168, 85, 247, 0.2);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(168, 85, 247, 0.3);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.team-stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.team-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.team-stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.team-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.team-stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.join-us-visual {
  position: relative;
  height: 400px;
}

.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
  font-weight: 600;
  animation: floatCard 6s ease-in-out infinite;
}

.visual-card i {
  font-size: 2rem;
  color: var(--secondary);
}

.visual-card.card-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.visual-card.card-2 {
  top: 45%;
  right: 5%;
  animation-delay: -2s;
}

.visual-card.card-3 {
  bottom: 15%;
  left: 15%;
  animation-delay: -4s;
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2,
.cta-section p {
  color: white;
}

.btn-light {
  background: white;
  color: var(--primary);
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
.footer-modern {
  background: linear-gradient(180deg, var(--bg-dark-2) 0%, #0a0e1a 100%);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-brand-section {
  padding-right: 20px;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-brand .brand-accent {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-heading {
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-links li {
  margin-bottom: 16px;
}

.footer-contact-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-links a i {
  width: 20px;
  color: var(--primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-contact-links a:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

.footer-contact-links a:hover i {
  color: var(--secondary);
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-copyright,
.footer-built {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-built .heart {
  color: var(--secondary);
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* SOCIAL MEDIA LINKS */
.social-media-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, #1877f2, #0d5fbf);
  color: white;
  border-color: #1877f2;
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border-color: #bc1888;
}

.social-link.snapchat:hover {
  background: linear-gradient(135deg, #fffc00, #fff700);
  color: #000;
  border-color: #fffc00;
}

.social-link.linktree:hover {
  background: linear-gradient(135deg, #43e55e, #1abfe0);
  color: white;
  border-color: #43e55e;
}

.social-link.whatsapp:hover {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #e5f9ed;
  border-color: #22c55e;
}

/* Contact Page Social Links */
.contact-social-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.contact-social-section h6 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.contact-social-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--primary);
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* FEATURE BADGES */
.feature-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-light);
}

/* PORTFOLIO CARDS */
.portfolio-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.tech-badge {
  background: rgba(168, 85, 247, 0.2);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.portfolio-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.portfolio-description {
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.portfolio-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
}

/* PRIVACY PAGE STYLES */
.privacy-content {
  color: var(--text-light);
}

.privacy-content h2 {
  color: var(--text-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content h3,
.privacy-content h4 {
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
}

.privacy-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.privacy-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: var(--secondary);
}

.contact-info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
}

.contact-info-box a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-box a:hover {
  color: var(--secondary);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float i {
  font-size: 32px;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
  
  .whatsapp-float i {
    font-size: 28px;
  }
}

/* UTILITIES */
.text-muted {
  color: var(--text-muted) !important;
}

.display-3,
.display-5 {
  font-weight: 900;
  line-height: 1.1;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-card {
    position: relative;
    margin-bottom: 20px;
  }
  
  .about-visual {
    height: auto;
  }
}

/* SCROLL ANIMATIONS */
[data-aos] {
  pointer-events: none;
}

.aos-animate {
  pointer-events: auto;
}
