/* ==========================================
   DESIGN SYSTEM - ALVIXO Creative Agency
   Purple & Black Premium Theme
   ========================================== */

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

/* CSS Variables / Design Tokens */
:root {
  --brand-dark: #070707;
  --brand-dark-alt: #0a0a0a;
  --brand-accent: #A855F7;
  --brand-accent-hover: #C084FC;
  --brand-accent-dim: #732eeb;
  --brand-accent-deep: #863efa;
  --brand-gradient: linear-gradient(135deg, #A855F7, #7C3AED);
  --brand-gradient-subtle: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(124, 58, 237, 0.05));
  --text-primary: #ffffff;
  --text-secondary: #929292;
  --text-muted: #606060;
  --surface-dark: rgba(7, 7, 7, 0.92);
  --surface-card: #111111;
  --surface-card-hover: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-light: rgba(255, 255, 255, 0.15);
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --container-max: 1280px;
  --container-padding: 24px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --purple-glow: 0 0 60px rgba(168, 85, 247, 0.15);
}

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

html {
  font-family: var(--font-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.loading-screen.slide-up {
  transform: translateY(-100%);
}

.loading-screen.hidden {
  display: none;
}

.loading-words {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-words .word {
  position: absolute;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.loading-words .word.active {
  opacity: 1;
  transform: translateY(0);
}

.loading-words .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--brand-accent);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding-top: 32px;
  text-align: center;
  transition: transform 0.5s ease-out;
}

.site-header.header-hidden {
  transform: translateY(-120%);
}

.header-inner {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  padding: 10px 10px 10px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.header-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
}

.header-nav ul {
  display: flex;
  gap: 4px;
}

.header-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  font-weight: 400;
  border-radius: 100px;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--brand-accent);
}

/* Button Primary */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
  animation: pulse-glow 3s infinite alternate;
}

.btn-primary:hover {
  background: var(--brand-accent-hover);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.8), 0 0 10px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.35);
  }
  100% {
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.65), 0 0 8px rgba(124, 58, 237, 0.3);
  }
}

.btn-text-wrapper {
  position: relative;
  overflow: hidden;
  height: 1.2em;
}

.btn-text {
  display: block;
  transition: transform var(--transition-medium);
}

.btn-text-hover {
  position: absolute;
  top: 100%;
  left: 0;
}

.btn-primary:hover .btn-text {
  transform: translateY(-100%);
}

.btn-primary:hover .btn-text-hover {
  transform: translateY(-100%);
}

/* Button gradient variant */
.btn-gradient {
  background: var(--brand-gradient);
  color: #ffffff;
}

.btn-gradient:hover {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.85), 0 0 12px rgba(124, 58, 237, 0.5);
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  padding: 8px;
  border-radius: 50%;
  transition: background var(--transition-fast);
  color: var(--text-primary);
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: var(--brand-dark);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
  padding: 8px;
  border-radius: 50%;
  transition: background var(--transition-fast);
  color: var(--text-primary);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
  padding: 24px;
  flex: 1;
}

.mobile-menu-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 18px;
  color: var(--text-secondary);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.mobile-menu-nav a:hover {
  color: var(--brand-accent);
  background: rgba(168, 85, 247, 0.06);
}

.mobile-menu-cta {
  padding: 24px;
  border-top: 1px solid var(--border-color);
}

.mobile-menu-cta .btn-primary {
  width: 100%;
  text-align: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Purple ambient glow behind hero */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--brand-accent);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards 0.3s;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 920px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  border: 1px solid var(--border-color-light);
  transition: all var(--transition-fast);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.btn-secondary svg {
  transition: transform var(--transition-fast);
}

.btn-secondary:hover svg {
  transform: translateX(3px);
}

/* Hero Image Carousel */
.hero-carousel {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards 1.1s;
}

.hero-carousel-track {
  display: flex;
  gap: 20px;
  animation: scrollCarousel 30s linear infinite;
  width: max-content;
}

.hero-carousel-track:hover {
  animation-play-state: paused;
}

.hero-card {
  flex-shrink: 0;
  width: 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-medium);
  position: relative;
}

.hero-card:hover {
  border-color: var(--brand-accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-card:hover img {
  transform: scale(1.08);
}

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   TRUST BAR / RATINGS
   ========================================== */
.trust-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.trust-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-accent);
}

.trust-score {
  font-size: 14px;
  color: var(--text-secondary);
}

.trust-separator {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-description {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.service-card:hover {
  background: var(--surface-card-hover);
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--purple-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-medium);
  font-size: 24px;
}

.service-card:hover .service-icon {
  background: rgba(168, 85, 247, 0.15);
  transform: scale(1.05);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--brand-accent);
}

.service-number {
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tag {
  padding: 5px 12px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.service-card:hover .service-tag {
  border-color: rgba(168, 85, 247, 0.15);
}

/* ==========================================
   FEATURED WORK SECTION
   ========================================== */
.featured-work {
  background: var(--brand-dark-alt);
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.featured-project-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-medium);
  background: var(--surface-card);
}

.featured-project-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.featured-project-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.featured-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-project-card:hover .featured-project-image img {
  transform: scale(1.03);
}

.featured-project-info {
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.featured-project-meta h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.featured-project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.featured-project-tag {
  padding: 4px 12px;
  font-size: 13px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 100px;
  color: var(--brand-accent);
}

.featured-project-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.featured-project-card:hover .featured-project-arrow {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
}

.featured-project-card:hover .featured-project-arrow svg {
  color: var(--brand-dark);
  transform: translate(2px, -2px);
}

.featured-project-arrow svg {
  width: 20px;
  height: 20px;
  transition: all var(--transition-fast);
}

/* Project Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.project-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-medium);
  background: var(--surface-card);
}

.project-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--purple-glow);
}

.project-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-card-info {
  padding: 24px;
}

.project-card-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.project-card-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================
   STATS / NUMBERS SECTION
   ========================================== */
.stats-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid var(--border-color);
  transition: background var(--transition-medium);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(168, 85, 247, 0.03);
}

.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ==========================================
   MISSION SECTION
   ========================================== */
.mission-section {
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05), transparent 70%);
  pointer-events: none;
}

.mission-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-content .section-label {
  justify-content: center;
}

.mission-quote {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 24px;
}

.mission-quote strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================
   PROCESS SECTION & SOCIAL SHOWCASE CARD
   ========================================== */
.process-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .process-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-card-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.process-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.process-card-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.1);
}

.process-card-item:hover::before {
  opacity: 1;
}

.process-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.process-card-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-accent);
  background: rgba(255, 95, 31, 0.12);
  border: 1px solid rgba(255, 95, 31, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
}

.process-card-icon {
  font-size: 24px;
  line-height: 1;
}

.process-card-body {
  flex: 1;
}

.process-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.process-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* SOCIAL & PHONE GIF SHOWCASE CARD */
.process-social-showcase {
  height: 100%;
  display: flex;
}

.social-showcase-card {
  width: 100%;
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.15);
  transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.social-showcase-card:hover {
  border-color: rgba(255, 95, 31, 0.4);
  transform: translateY(-5px);
}

.phone-glow-bg {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 95, 31, 0.25) 0%, rgba(168, 85, 247, 0.15) 50%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.phone-img-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 250px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-img-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  transition: transform var(--transition-medium);
}

.social-showcase-card:hover .phone-img-media {
  transform: scale(1.03);
}

.social-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.social-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.social-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.social-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.social-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

@media (max-width: 400px) {
  .social-buttons-grid {
    grid-template-columns: 1fr;
  }
}

.social-pill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

.social-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.social-pill-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-pill-btn.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.social-pill-btn.wa:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-pill-btn.card:hover {
  background: var(--brand-gradient);
  border-color: transparent;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-track {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  width: max-content;
  animation: scroll-testimonials 16s linear infinite;
  padding-left: 24px;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  max-width: 85vw;
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px;
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--purple-glow);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-accent);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.testimonial-author-info h4 {
  font-size: 15px;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  text-align: center;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta-accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.why-item {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: var(--surface-card);
  transition: all var(--transition-medium);
}

.why-item:hover {
  border-color: rgba(168, 85, 247, 0.2);
  background: var(--surface-card-hover);
  transform: translateY(-4px);
}

.why-item-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.why-item h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-brand-name .logo-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-accent);
  border-radius: 50%;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 340px;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--brand-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  border-color: var(--brand-accent);
  background: rgba(168, 85, 247, 0.08);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-social-link:hover svg {
  color: var(--brand-accent);
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.72s; opacity: 1; transform: translateY(0); }

/* ==========================================
   MARQUEE / SCROLLING TEXT
   ========================================== */
.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 40px;
}

.marquee-item .dot {
  width: 10px;
  height: 10px;
  background: var(--brand-accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



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

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-description {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
  color: var(--brand-accent);
}

.about-feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.about-feature-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   SEO HIDDEN CONTENT (accessible to crawlers)
   ========================================== */
.seo-content {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .header-nav,
  .header-inner > .btn-primary,
  .custom-cursor {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-inner {
    width: 90%;
    max-width: 320px;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 0;
  }

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

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .featured-project-info {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  .site-header {
    padding-top: 16px;
  }

  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-card {
    width: 140px;
    height: 180px;
  }

  .section {
    padding: 80px 0;
  }

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

  .process-step {
    flex-direction: column;
    gap: 16px;
  }

  .trust-bar-inner {
    gap: 30px;
  }

  .trust-separator {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .testimonial-card {
    width: 300px;
    max-width: 80vw;
  }

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

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

@media (max-width: 480px) {
  .hero-card {
    width: 120px;
    height: 160px;
    border-radius: 12px;
  }

  .hero-carousel-track {
    gap: 12px;
  }

  .service-card {
    padding: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 40px 24px;
  }

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

/* ==========================================
   HERO BACKGROUND GRADIENT
   ========================================== */
.background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background: radial-gradient(125% 125% at 50% 10%, #000 40%, #63e 100%);
  z-index: -10;
}

/* ==========================================
   FLIP TEXT ANIMATION
   ========================================== */
.flip-text-wrapper {
  perspective: 1000px;
  display: inline-block;
}

.flip-text-wrapper .word {
  display: inline-block;
  white-space: nowrap;
  transform-style: preserve-3d;
}

.flip-text-wrapper .flip-char {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  animation: flip-3d var(--flip-duration, 2.2s) ease-in-out var(--flip-delay, 0s) var(--flip-iteration, infinite);
  backface-visibility: visible;
}

@keyframes flip-3d {
  0%, 20% {
    transform: rotateX(0deg);
  }
  40%, 60% {
    transform: rotateX(180deg);
  }
  80%, 100% {
    transform: rotateX(360deg);
  }
}

/* ==========================================
   STICKY CARD STACK (Recent Projects)
   ========================================== */
.projects-stack-container {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 5vh;
  margin-top: 60px;
}

.project-stack-card {
  position: sticky;
  top: 130px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.project-stack-card-inner {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  display: flex;
  width: 100%;
  max-width: 1080px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  transform-origin: top center;
}

.project-stack-card:hover .project-stack-card-inner {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: var(--purple-glow);
}

.project-stack-image {
  flex: 1.2;
  height: 100%;
  overflow: hidden;
}

.project-stack-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0c0c0c;
  padding: 20px;
  transition: transform var(--transition-slow);
}

.project-stack-card:hover .project-stack-image img {
  transform: scale(1.03);
}

.project-stack-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(135deg, #111111, #080808);
}

.project-stack-tag {
  font-size: 12px;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 16px;
  background: rgba(168, 85, 247, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

.project-stack-content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.project-stack-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ==========================================
   SERVICES COVERFLOW SWIPER
   ========================================== */
.services-swiper-container {
  width: 100%;
  padding: 40px 0 60px !important;
  overflow: visible !important;
  position: relative;
}

.services-swiper-container .swiper-slide {
  width: 360px;
  max-width: 85vw;
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
  height: auto;
}

.services-swiper-container .swiper-slide-active {
  opacity: 1;
}

.services-swiper-container .swiper-pagination {
  bottom: 0px !important;
}

.services-swiper-container .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
}

.services-swiper-container .swiper-pagination-bullet-active {
  background: var(--brand-accent) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

.services-swiper-container .swiper-button-next,
.services-swiper-container .swiper-button-prev {
  color: var(--brand-accent) !important;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.services-swiper-container .swiper-button-next::after,
.services-swiper-container .swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: bold;
}

.services-swiper-container .swiper-button-next:hover,
.services-swiper-container .swiper-button-prev:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--brand-accent);
}

.services-swiper-container .swiper-button-disabled {
  opacity: 0.2 !important;
}

/* Responsiveness adjustments for stack and swiper */
@media (max-width: 1024px) {
  .project-stack-card-inner {
    flex-direction: column;
    height: auto;
  }
  .project-stack-card {
    height: auto;
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
  .project-stack-image {
    aspect-ratio: 16/10;
  }
  .project-stack-content {
    padding: 32px;
  }
  .services-swiper-container .swiper-slide {
    width: 300px;
    max-width: 80vw;
  }
}

/* ==========================================
   SERVICES & NAV MOBILE RESPONSIVENESS FIXES
   ========================================== */
#services {
  overflow: hidden;
}

/* Swiper navigation arrows mobile fix */
@media (max-width: 768px) {
  .services-swiper-container .swiper-button-next,
  .services-swiper-container .swiper-button-prev {
    display: none !important;
  }
}

/* Nav Bar Mobile Show/Hide Fix */
.mobile-header-content {
  display: none !important;
}

@media (max-width: 1024px) {
  .header-nav,
  .header-inner > .header-logo,
  .header-inner > .btn-primary,
  .header-inner > .btn-gradient {
    display: none !important;
  }

  .mobile-header-content {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .header-inner {
    width: 90% !important;
    max-width: 400px !important;
    padding: 8px 16px !important;
    gap: 0 !important;
  }
}

/* ==========================================
   CONTACT SECTION CARD & FORM
   ========================================== */
.contact-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: var(--purple-glow);
}

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

.contact-info-col {
  padding: 60px;
  background: linear-gradient(135deg, #111111, #0a0a0a);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.contact-card-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 20px 0 16px;
  color: var(--text-primary);
}

.contact-card-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--brand-accent);
}

.contact-info-text {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-info-text a:hover {
  color: var(--brand-accent);
}

.contact-form-col {
  padding: 60px;
  background: #141414;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--brand-accent);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.15);
}

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

.form-submit-btn {
  align-self: flex-start;
  width: 100%;
  padding: 16px;
}

/* Responsiveness for contact form and headers */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-col,
  .contact-form-col {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .contact-info-col,
  .contact-form-col {
    padding: 24px;
  }
}

.contact-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.contact-social-icon svg {
  transition: transform var(--transition-fast);
}

.contact-social-icon:hover {
  background: var(--brand-accent);
  color: var(--brand-dark);
  border-color: var(--brand-accent);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
  transform: translateY(-3px);
}

.contact-social-icon:hover svg {
  transform: scale(1.1);
}

/* ==========================================
   FORM TOAST NOTIFICATION
   ========================================== */
.form-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111111;
  color: var(--text-primary);
  border: 1px solid var(--brand-accent);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.25);
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.form-toast.error {
  border-color: #ef4444;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.25);
}

/* ==========================================
   SELECT DROPDOWN STYLING
   ========================================== */
.contact-form select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all var(--transition-fast);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A855F7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.contact-form select:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--brand-accent);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.15);
}

select option {
  background-color: #141414 !important;
  color: #ffffff !important;
}

/* ==========================================
   SUCCESS MODAL & CHECKMARK ANIMATION
   ========================================== */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.success-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-modal-content {
  background: #0e0e0e;
  border: 1px solid var(--border-color);
  box-shadow: var(--purple-glow);
  border-radius: 28px;
  padding: 48px;
  width: 90%;
  max-width: 460px;
  text-align: center;
  transform: scale(0.8) translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-modal-overlay.active .success-modal-content {
  transform: scale(1) translateY(0);
}

.success-modal-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.success-modal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.success-close-btn {
  width: 100%;
  padding: 14px;
}

/* SVG Checkmark animation */
.success-checkmark-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.success-checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #A855F7;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #A855F7;
  animation: checkmark-fill .4s ease-in-out .4s forwards, checkmark-scale .3s ease-in-out .9s alternate both;
}

.success-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #A855F7;
  fill: none;
  animation: checkmark-stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #ffffff;
  animation: checkmark-stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes checkmark-stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes checkmark-fill {
  100% {
    box-shadow: inset 0px 0px 0px 40px #A855F7;
  }
}

@keyframes checkmark-scale {
  0% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    transform: none;
  }
}

/* ==========================================
   CONTENT PROTECTION & ANTI-THEFT CONTROLS
   ========================================== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection in form inputs and textareas so users can type */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none; /* blocks right click, drag, and copy context menus on all images */
}
