/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* HSL Color Palette */
  --bg-color: hsl(220, 24%, 7%);
  --bg-card: hsla(220, 24%, 12%, 0.4);
  --bg-card-hover: hsla(220, 24%, 16%, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.2);
  
  --primary-accent: hsl(235, 90%, 62%);     /* Electric Indigo */
  --primary-glow: hsla(235, 90%, 62%, 0.5);
  --secondary-accent: hsl(280, 85%, 65%);   /* Neon Violet */
  --secondary-glow: hsla(280, 85%, 65%, 0.4);
  --cyan-accent: hsl(190, 95%, 50%);         /* Neon Cyan */
  --cyan-glow: hsla(190, 95%, 50%, 0.4);
  
  --text-primary: hsl(0, 0%, 96%);
  --text-secondary: hsl(220, 12%, 70%);
  --text-muted: hsl(220, 10%, 50%);
  
  /* Fonts */
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-accent);
}

/* ==========================================================================
   GRADIENT TEXT & SHAPES
   ========================================================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--cyan-accent) 70%, var(--primary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: linear-gradient(135deg, var(--cyan-accent) 0%, var(--primary-accent) 50%, var(--secondary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Background Glowing Blobs */
.blob-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: float 25s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-accent);
  top: -10%;
  right: -5%;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--secondary-accent);
  bottom: -15%;
  left: -10%;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--cyan-accent);
  top: 40%;
  right: 25%;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, 80px) scale(1.1);
  }
  100% {
    transform: translate(-50px, -50px) scale(0.9);
  }
}

/* Grid overlay for futuristic vibe */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ==========================================================================
   GLASSMORPHISM STYLING
   ========================================================================== */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: border-color var(--transition-normal), background var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-panel:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar-custom {
  background: rgba(7, 10, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: padding var(--transition-fast), background var(--transition-fast);
  padding: 12px 0;
}

.navbar-custom.scrolled {
  padding: 8px 0;
  background: rgba(7, 10, 16, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar-brand-img {
  height: 44px;
  width: auto;
  transition: height var(--transition-fast);
}

.navbar-custom.scrolled .navbar-brand-img {
  height: 36px;
}

.nav-link-custom {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 8px;
  position: relative;
}

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

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-accent), var(--primary-accent));
  transition: width var(--transition-fast) ease;
  transform: translateX(-50%);
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-glow {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: var(--text-primary);
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--primary-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cyan-accent), var(--primary-accent));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--cyan-glow);
  color: var(--text-primary);
}

.btn-glow:hover::before {
  opacity: 1;
}

.btn-outline-custom {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.btn-outline-custom:hover {
  border-color: var(--cyan-accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(100, 220, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Floating wireframe earth or background hero */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Floating overlay badges for expertise */
.floating-badge {
  position: absolute;
  background: rgba(13, 17, 28, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
}

.floating-badge i {
  font-size: 14px;
}

.badge-1 {
  top: 10%;
  left: -2%;
  border-color: rgba(16, 163, 127, 0.4);
  box-shadow: 0 0 15px rgba(16, 163, 127, 0.15);
  animation: float-slow 6s ease-in-out infinite alternate;
}

.badge-2 {
  top: 40%;
  right: -2%;
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
  animation: float-medium 5s ease-in-out infinite alternate-reverse;
}

.badge-3 {
  bottom: 8%;
  left: 2%;
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
  animation: float-fast 4s ease-in-out infinite alternate;
}

.badge-4 {
  bottom: 25%;
  right: 10%;
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.15);
  animation: float-slow 7s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-medium {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-15px) translateX(8px); }
}

@keyframes float-fast {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-1deg); }
}

.hero-mesh {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(100, 100, 255, 0.1);
  animation: slowPan 20s infinite alternate ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes slowPan {
  0% { transform: scale(1.0) rotate(0deg); }
  100% { transform: scale(1.05) rotate(2deg); }
}

.hero-badge {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-accent);
  margin-bottom: 24px;
}

.hero-badge i {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 var(--cyan-glow)); }
  70% { transform: scale(1.1); filter: drop-shadow(0 0 8px var(--cyan-accent)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 var(--cyan-glow)); }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.stat-card {
  padding: 30px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan-accent), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  color: var(--cyan-accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 10px;
}

.service-card {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Hover glow overlay */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 220, 255, 0.2);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--cyan-accent);
  font-size: 24px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--primary-accent);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.service-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   TECH STACK & FILTER
   ========================================================================== */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tech-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.tech-tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.tech-tab-btn.active {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: var(--text-primary);
  box-shadow: 0 5px 15px var(--primary-glow);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 20px;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}

.tech-card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tech-card {
  height: 100%;
  flex: 1 1 auto;
  padding: 24px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.tech-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-normal);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.tech-card i {
  font-size: 28px;
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-card:hover {
  border-color: rgba(100, 220, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(100, 220, 255, 0.1);
}

.tech-card:hover .tech-icon-container {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan-accent);
  box-shadow: 0 0 15px rgba(100, 220, 255, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.tech-card:hover i {
  transform: scale(1.1);
}

.tech-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  aspect-ratio: 1 / 1;
  background: rgba(13, 17, 28, 0.75);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.portfolio-card:hover {
  border-color: rgba(100, 220, 255, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(100, 220, 255, 0.12);
  transform: translateY(-6px);
}

.portfolio-img-container {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  background: rgba(7, 10, 16, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 16px 24px;
}

.mock-window-dots {
  position: absolute;
  top: 14px;
  left: 18px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.mock-window-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.mock-window-dots .red { background: #ff5f56; }
.mock-window-dots .yellow { background: #ffbd2e; }
.mock-window-dots .green { background: #27c93f; }

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.03) translateY(-2px);
}

.portfolio-details {
  padding: 20px 24px 24px 24px;
  background: linear-gradient(to top, rgba(7, 10, 16, 0.95), rgba(13, 17, 28, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-tag {
  color: var(--cyan-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 6px;
}

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

.portfolio-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.portfolio-link {
  font-size: 13px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.portfolio-link i {
  transition: transform 0.2s;
}

.portfolio-card:hover .portfolio-link {
  color: var(--cyan-accent);
}

.portfolio-card:hover .portfolio-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   CAREERS / JOB BOARD
   ========================================================================== */
.job-card {
  padding: 30px;
  margin-bottom: 20px;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.job-title {
  font-size: 20px;
  margin-bottom: 5px;
}

.job-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--text-secondary);
}

.job-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  color: var(--cyan-accent);
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-slider {
  padding: 20px 0 50px 0;
}

.testimonial-card {
  padding: 40px;
  margin: 10px;
}

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

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--cyan-accent);
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cyan-accent);
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

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

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--cyan-accent) !important;
  box-shadow: 0 0 10px var(--cyan-glow);
}

/* ==========================================================================
   CONTACT SECTION & MAP
   ========================================================================== */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 250px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* Form Styles */
.form-group-custom {
  margin-bottom: 20px;
}

.form-label-custom {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 15px;
  width: 100%;
  transition: all var(--transition-fast);
}

.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--cyan-accent);
  box-shadow: 0 0 15px rgba(100, 220, 255, 0.1);
  outline: none;
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-custom {
  background: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.modal-content-custom {
  background: var(--bg-color);
  border: 1px solid var(--border-color-hover);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(100, 100, 255, 0.05);
}

.modal-header-custom {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 30px;
}

.modal-body-custom {
  padding: 30px;
}

.btn-close-custom {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  transition: var(--transition-fast);
}

.btn-close-custom:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-custom {
  background: rgba(7, 10, 16, 0.6);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 10;
}

.footer-logo {
  height: 38px;
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--cyan-accent);
  color: var(--bg-color);
  border-color: var(--cyan-accent);
  box-shadow: 0 0 15px var(--cyan-glow);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  color: var(--text-secondary);
  font-size: 15px;
}

.footer-link-item a:hover {
  color: var(--cyan-accent);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

/* ==========================================================================
   FLOATING INTERACTIVE ACTION BUTTONS
   ========================================================================== */
.action-buttons-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-action-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
}

.btn-scrolltop {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.btn-scrolltop.show {
  opacity: 1;
  visibility: visible;
}

.btn-scrolltop:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--primary-glow);
}
