@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #FF6B2B;
  --primary-hover: #E55A1B;
  --primary-gradient: linear-gradient(135deg, #FF6B2B, #FF9A5C);
  
  --bg-dark: #0A0A0A;
  
  --text-dark: #1A1A1A; /* Used sparingly now, only for very light cards if any */
  --text-light: #FFFFFF;
  --text-muted: #A0A0A0; /* Brighter muted text for deep dark theme */
  
  --radius-card: 16px;
  --radius-btn: 12px;
  --radius-pill: 999px;
  
  --shadow-glow: 0 0 20px rgba(255, 107, 43, 0.3);
  --shadow-glass: 0 8px 30px rgba(0, 0, 0, 0.4);
  
  --transition-bezier: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-speed: 0.5s;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-light);
  background-color: var(--bg-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) var(--transition-bezier);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  border-radius: inherit;
  display: block;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  font-size: 1.0625rem; /* 17px */
}

/* Layout Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2; /* always above glows */
}

.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* Utilities */
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.subtext {
  color: var(--text-muted);
  font-size: 1.125rem; /* 18px */
  max-width: 600px;
  margin: 0 auto;
}

/* Background Glow Effect entirely CSS */
.hero-glow, .bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,107,43,0.15) 0%, rgba(255,107,43,0) 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-bezier);
  border: border: none;
  outline: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(255, 107, 43, 0.2);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.05); /* Increased scale slightly for better feedback */
  box-shadow: var(--shadow-glow);
}

/* Specific lead-gen link hovers */
a[href*="instagram.com"]:hover,
a[href*="ig.me"]:hover {
  transform: scale(1.05);
  transition: transform 0.3s var(--transition-bezier);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.badge-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
}

.badge-orange {
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.4);
  color: var(--primary);
}

/* Navigation - Pill and Glass FULL */
.navbar-wrapper {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-speed) var(--transition-bezier);
  padding: 0 24px;
}

.navbar {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-speed) var(--transition-bezier);
}

.navbar-wrapper.scrolled .navbar {
  background: rgba(10, 10, 10, 0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  opacity: 0.8;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 101;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.1) 0%, rgba(255,107,43,0) 70%);
  pointer-events: none;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay .nav-link {
  font-size: 2rem;
  color: var(--text-light);
  font-weight: 600;
  z-index: 2;
}

/* Animations Classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Global Footer (Minimal) */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0;
  text-align: center;
  position: relative;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
}
.footer-link {
  color: var(--text-muted);
  font-weight: 500;
}
.footer-link:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-links, .nav-action { display: none; }
  .mobile-menu-toggle { display: block; }
  .navbar-wrapper { padding: 0 16px; top: 16px; }
  .navbar { padding: 12px 24px; }
}

/* Layouts: Glassmorphism strictly */
.glass-card, .client-card, .project-card, .stat-item, .testimonial-card-xl, .founder-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-glass);
}

.glass-card:hover, .client-card:hover, .project-card:hover, .stat-item:hover, .testimonial-card-xl:hover, .founder-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 43, 0.1);
  z-index: 5;
}

.client-card:hover, .project-card:hover {
  border-color: rgba(255, 107, 43, 0.3);
}

.glass-card:active, .client-card:active, .project-card:active, .stat-item:active, .testimonial-card-xl:active, .founder-card:active {
  transform: translateY(-4px) scale(0.98);
  transition-duration: 0.15s;
}

.client-card {
  padding: 0;
}

/* Service Bubbles Redesign */
.services-bubbles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 80px auto 0 auto;
  position: relative;
}

.bubble-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floating-bubble var(--float-duration, 8s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  will-change: transform;
}

@keyframes floating-bubble {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(var(--float-x, 8px), var(--float-y, -10px), 0); }
}

.service-bubble {
  width: var(--bubble-size, 200px);
  height: var(--bubble-size, 200px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-bubble:hover {
  transform: scale(1.03);
  border-color: rgba(255, 107, 43, 0.5);
  box-shadow: 0 0 35px rgba(255, 107, 43, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

/* Pause animation on wrapper when bubble is hovered */
.bubble-wrap:has(.service-bubble:hover) {
  animation-play-state: paused;
}

.service-bubble .emoji {
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.service-bubble h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0;
  max-width: 130px;
}

/* Size Variants */
.bubble-lg { --bubble-size: 240px; }
.bubble-md { --bubble-size: 200px; }
.bubble-sm { --bubble-size: 175px; }

/* Responsive */
@media (max-width: 768px) {
  .services-bubbles-container {
    gap: 20px;
    margin-top: 40px;
  }
  .bubble-wrap {
    animation: none !important;
  }
  .service-bubble {
    width: 160px;
    height: 160px;
    padding: 16px;
  }
  .service-bubble .emoji { font-size: 1.75rem; }
  .service-bubble h3 { font-size: 0.85rem; }
}
  content: "→";
  color: var(--primary);
  margin-right: 12px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.service-list-item:hover .service-list-title::before {
  transform: translateX(4px);
}

/* Image wrappers styling */
.img-wrapper {
  overflow: hidden;
  border-radius: calc(var(--radius-card) - 2px);
  position: relative;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 500;
  transition: transform 0.6s var(--transition-bezier);
}

.project-card {
  padding: 0;
}
.project-card .img-wrapper {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.project-card .img-wrapper {
  height: 280px;
}
.project-card:hover .img-placeholder {
  transform: scale(1.06);
}

.team-image-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #111;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.6s var(--transition-bezier);
  overflow: hidden;
}

.team-card:hover .team-image-circle {
  transform: scale(1.05);
}

/* Forms: Glass Dark */
.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 0.9375rem; 
  margin-bottom: 16px;
  transition: all 0.3s ease;
  outline: none;
  color: var(--text-light);
}
.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255,107,43,0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}
option {
  background: var(--bg-dark);
  color: var(--text-light);
}

/* Adjustments for Layouts */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
}
.stat-number {
  font-size: 3.5rem; 
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .stats-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stats-container { grid-template-columns: 1fr; }
}

/* Trust Section Customization */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 24px;
}
.trust-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-speed);
}
.trust-logo:hover {
  color: var(--text-light);
  transform: translateY(-2px);
}
/* Instagram CTA Card */
.instagram-cta-container {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.instagram-cta-card {
  display: block;
  width: 100%;
  padding: 64px 80px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--transition-bezier);
  text-decoration: none;
}

.instagram-cta-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 107, 43, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 43, 0.1);
}

.cta-glow {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.12) 0%, rgba(255, 107, 43, 0) 70%);
  pointer-events: none;
  z-index: 0;
  transition: all 0.6s var(--transition-bezier);
}

.instagram-cta-card:hover .cta-glow {
  transform: translateY(-50%) scale(1.1);
  background: radial-gradient(circle, rgba(255, 107, 43, 0.2) 0%, rgba(255, 107, 43, 0) 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-left h2 {
  font-size: 2.75rem;
  margin-bottom: 12px;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-left p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 520px;
  line-height: 1.6;
}

.cta-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  padding: 16px 32px;
  background: rgba(255, 107, 43, 0.05);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 107, 43, 0.2);
  transition: all 0.3s ease;
}

.instagram-cta-card:hover .cta-link {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 1024px) {
  .cta-left h2 { font-size: 2.25rem; }
  .instagram-cta-card { padding: 48px 60px; }
}

@media (max-width: 768px) {
  .instagram-cta-container { margin-top: 48px; }
  .instagram-cta-card { padding: 40px 32px; }
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .cta-left h2 { font-size: 2rem; }
  .cta-left p { font-size: 1rem; }
  .cta-glow {
    right: 50%;
    transform: translate(50%, -50%);
    width: 300px;
    height: 300px;
  }
  .instagram-cta-card:hover .cta-glow {
    transform: translate(50%, -50%) scale(1.2);
  }
}

/* Section Badge Utility */
.section-badge {
  margin-bottom: 20px;
  display: inline-block;
}
