:root {
  --primary: #007F74;
  --primary-glow: rgba(22, 224, 189, 0.3);
  --bg-dark: #020817;
  --bg-card: #0d1425;
  --bg-card-hover: #162035;
  --text-main: #FFFFFF;
  --text-secondary: #94a3b8;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(22, 224, 189, 0.03) 1px, transparent 0);
  background-size: 50px 50px;
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

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

a:hover {
  color: var(--primary);
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 6rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-main);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  background-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(2, 8, 23, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 10rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(22, 224, 189, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 1;
  z-index: -1;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}

.hero-content {
  max-width: 800px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.stats-bar {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Cards Animation */
.floating-cards-container {
  position: absolute;
  right: 5%;
  top: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.float-card {
  background: rgba(13, 20, 37, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(2) {
  animation-delay: 1s;
}

.float-card:nth-child(3) {
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Value Props / Services / Projects Cards Grid */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card>*:last-child {
  margin-top: auto;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--primary);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-metric {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  background: rgba(22, 224, 189, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

/* Featured Project Layout */
.featured-project {
  background: linear-gradient(145deg, var(--bg-card), #050a14);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-header {
  margin-bottom: 2rem;
}

.featured-header h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.featured-block h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.featured-block ul {
  list-style: none;
}

.featured-block ul li {
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.5rem;
}

.featured-block ul li::before {
  content: '✓';
  color: var(--primary);
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
}

.skill-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.skill-card ul {
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.skill-card ul li {
  margin-bottom: 0.4rem;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.quote {
  font-style: italic;
  font-size: 1.2rem;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--text-main);
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info a {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-main);
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

select.form-control option {
  background-color: #2E2E2E;
  color: #FFFFFF;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

/* Scroll Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.client-logo,
.client-avatar {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
}

.client-avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
  font-family: serif;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
  background: rgba(22, 224, 189, 0.1);
  color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-package {
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pricing-package:hover {
  transform: translateY(-5px);
}

.pricing-package.dark {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-package.featured {
  background: rgba(22, 224, 189, 0.05);
  color: var(--text-main);
  border: 2px solid var(--primary);
  box-shadow: 0 0 30px var(--primary-glow);
}

.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.pkg-header h3 {
  font-size: 1.8rem;
}

.pkg-icon {
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.05);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.pricing-package.dark .pkg-icon {
  background: rgba(255, 255, 255, 0.1);
}

.pkg-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-package.light .pkg-price {
  border-color: rgba(0, 0, 0, 0.1);
}

.pkg-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.pricing-package.featured .pkg-desc {
  color: var(--text-secondary);
}

.pkg-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pkg-features li {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.8rem;
  font-size: 1.05rem;
}

.pkg-features li::before {
  content: '↗';
  color: var(--primary);
  font-weight: bold;
}

.pkg-btn {
  margin-top: auto;
}

.pricing-package.featured .btn-primary:hover {
  background: #10b981;
}

/* Headshot Container */
.headshot-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
}

.profile-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--primary-glow);
  position: relative;
  z-index: 2;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.headshot-glow {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: var(--primary);
  filter: blur(40px);
  opacity: 0.2;
  z-index: 1;
  border-radius: 20px;
}

/* Project Showcase Carousel */
.project-showcase {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-dark);
  padding: 2rem 0;
}

.showcase-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-heading);
  letter-spacing: -2px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.showcase-slider {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 500px;
  z-index: 1;
}

.showcase-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.95);
  pointer-events: none;
}

.showcase-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.slide-inner img {
  width: 100%;
  height: 80%;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.slide-inner video {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.slide-inner .contain-media {
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.slide-info {
  min-height: 20%;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

.slide-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.slide-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.slide-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.slide-tags .tech-badge {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.showcase-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-btn:hover {
  color: var(--primary);
}

.showcase-dots {
  display: flex;
  gap: 0.8rem;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.showcase-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Unified Services & Skills (How I Can Help) */
.help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.help-header h2 {
  margin-bottom: 0;
  font-size: 2.5rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.help-card {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.help-card:hover {
  background: rgba(30, 30, 30, 0.9);
  transform: translateY(-5px);
}

.help-card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.help-card-title svg {
  color: var(--text-main);
  opacity: 0.8;
}

.help-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.help-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Skills Row Marquee */
.skills-row-container {
  width: 100%;
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.skills-row {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.skills-row:hover {
  animation-play-state: paused;
}

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

  100% {
    transform: translateX(-50%);
  }
}

.skill-pill {
  background: transparent;
  border: 1px solid rgba(22, 224, 189, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--primary);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.skill-pill:hover {
  background: rgba(22, 224, 189, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

.tech-badge {
  display: inline-block;
  background: rgba(22, 224, 189, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-badge {
  display: inline-block;
  background: rgba(22, 224, 189, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

/* WhatsApp Floating Widget */
.wa-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-popup {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 320px;
  margin-bottom: 20px;
  color: #121212;
  overflow: hidden;
  display: none;
  /* Toggled via JS */
  animation: slideUpFade 0.3s ease;
}

.wa-popup.show {
  display: block;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.wa-header {
  background: var(--bg-card);
  padding: 15px;
  display: flex;
  align-items: center;
  position: relative;
  color: #FFFFFF;
}

.wa-avatar {
  background: var(--primary);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 12px;
}

.wa-info strong {
  display: block;
  font-size: 1rem;
}

.wa-info span {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #AAAAAA;
}

.wa-online {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
}

.wa-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  opacity: 0.7;
}

.wa-close:hover {
  opacity: 1;
}

.wa-body {
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555555;
  border-left: 3px solid #25D366;
}

.wa-chat-btn {
  display: block;
  background: #25D366;
  color: #FFFFFF !important;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 15px;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.wa-chat-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.wa-btn {
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.wa-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .floating-cards-container {
    display: none;
  }

  .about-content,
  .featured-content,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .showcase-slider {
    height: 400px;
  }

  .showcase-bg-text {
    font-size: 12vw;
  }

  .slide-info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: var(--bg-card);
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .hero-ctas,
  .stats-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-bar {
    align-items: flex-start;
  }

  .contact-container,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-package {
    padding: 2rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }

  .showcase-slider {
    height: auto;
  }

  .showcase-slide {
    position: relative;
    height: auto;
  }

  .slide-inner {
    height: auto;
  }

  .slide-inner video,
  .slide-inner img {
    height: 220px;
    flex-shrink: 0;
  }

  .slide-inner .contain-media {
    height: 220px;
    flex-shrink: 0;
  }

  .slide-title {
    font-size: 1.1rem;
  }

  .showcase-bg-text {
    font-size: 15vw;
  }

  .slide-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    height: auto;
    min-height: unset;
    gap: 0.6rem;
  }

  .slide-details {
    width: 100%;
  }

  .slide-tags {
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
  }

  .showcase-controls {
    position: relative;
    bottom: unset;
    left: unset;
    transform: none;
    margin-top: 1.5rem;
    justify-content: center;
  }

  .project-showcase {
    min-height: unset;
    padding: 2rem 0 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .help-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  p, 
  .testimonial-text,
  .help-card p {
    font-size: 0.95rem;
  }
}