/* Base Styles */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #8b5cf6;
  --accent-color: #ec4899;
  --dark-color: #1e293b;
  --light-color: #ffffff;
  --bg-color: #fafafa;
  --gray-color: #64748b;
  --gray-light: #e2e8f0;
  --text-primary: #0f172a;
  --text-secondary: #475569;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--light-color);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 576px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }
}

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

/* Prevent image overflow on mobile */
@media (max-width: 576px) {
  img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
  background-size: 200% 200%;
  animation: buttonGradient 2s ease infinite;
  border-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4),
              0 0 30px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px) scale(1.05);
}

@keyframes buttonGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

.btn.secondary:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  background-size: 200% 200%;
  animation: buttonGradient 2s ease infinite;
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4),
              0 0 30px rgba(139, 92, 246, 0.3);
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: titleGradient 4s ease infinite;
  z-index: 1;
}

@keyframes titleGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  background-size: 200% 100%;
  animation: underlineGradient 3s ease infinite;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes underlineGradient {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.7);
  }
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}

header.scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 2px 20px rgba(99, 102, 241, 0.1),
              0 0 40px rgba(139, 92, 246, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

@media (max-width: 576px) {
  nav {
    padding: 1rem 0;
  }

  .logo a {
    font-size: 1.5rem;
  }
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 30%, var(--accent-color) 60%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: logoGradient 7s ease infinite, logoPulse 5s ease-in-out infinite, logoSlideIn 0.8s ease-out;
  transition: all 0.3s ease;
}

.logo a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  /* animation: logoShimmer 7s ease-in-out infinite; */
  animation-delay: 1.5s;
  pointer-events: none;
}

.logo a::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 8px;
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.6)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
}

.logo a:hover::after {
  opacity: 0.3;
}

@keyframes logoGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes logoPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15);
  }
}

@keyframes logoSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoShimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

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

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 2px solid rgba(99, 102, 241, 0.2);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 6px;
}

.hamburger:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  border-color: rgba(99, 102, 241, 0.3);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hamburger span::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hamburger:hover span::before {
  opacity: 0.5;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  transition: min-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  will-change: min-height;
}

/* Animated gradient background */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Floating particles background */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
  animation: floatParticles 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatParticles {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.8;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.7;
  }
}

/* Decorative animated shapes */
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  top: -250px;
  right: -250px;
  animation: rotateShape 30s linear infinite;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero.scrolled {
  min-height: 75vh;
  padding-bottom: 2rem;
}

.hero.scrolled .hero-content {
  transform: scale(0.98);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero.scrolled .hero-visual {
  transform: scale(0.95);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 2rem;
  transition: padding 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), gap 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: padding;
}

.hero.scrolled .container {
  padding-top: 5rem;
  padding-bottom: 1.5rem;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  overflow: visible;
  max-width: 100%;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-primary);
  transition: font-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: font-size;
}

.hero.scrolled .hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: spanGradient 3s ease infinite;
  display: inline-block;
}

@keyframes spanGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-content h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  transition: font-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: font-size;
}

.hero.scrolled .hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  transition: font-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.scrolled .hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  transition: gap 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.scrolled .cta-buttons {
  margin-top: 1.5rem;
  gap: 0.875rem;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), min-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, min-height;
  overflow: visible;
  max-width: 100%;
}

.hero.scrolled .hero-visual {
  min-height: 300px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  transition: font-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.scrolled .hero-badge {
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1.1rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  transition: gap 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.scrolled .hero-stats {
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.hero-stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: gradientText 3s ease infinite;
  background-size: 200% 200%;
  transition: font-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.scrolled .stat-number {
  font-size: 2.2rem;
}

@keyframes gradientText {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  transition: gap 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-lottie-animation {
  position: absolute;
  top: -300px;
  left: 65%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-lottie-animation dotlottie-wc {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: block;
}

.hero.scrolled .hero-lottie-animation {
  top: -160px;
  width: 350px;
  height: 350px;
}

.hero.scrolled .hero-benefits {
  gap: 1.25rem;
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.hero.scrolled .benefit-card {
  padding: 1.75rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon i {
  font-size: 1.75rem;
  color: white;
  transition: all 0.3s ease;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

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

.benefit-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

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

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

/* Ripple effect for buttons */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}




/* Section Scroll Offset */
section {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 576px) {
  section {
    scroll-margin-top: 70px;
  }
}

/* About Section */
.about {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 50%, #f5f5f7 100%);
  background-size: 100% 300%;
  animation: backgroundFlow 20s ease infinite;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about {
    padding: 5rem 0;
  }
}

@keyframes backgroundFlow {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
}

/* Decorative elements for about section */
.about::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -150px;
  animation: floatSlow 15s ease-in-out infinite;
  pointer-events: none;
}

.about::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  bottom: 10%;
  right: -100px;
  animation: floatSlow 12s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-text {
  width: 100%;
  text-align: left;
}

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

.about-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.about-visual dotlottie-wc {
  width: 100%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
}

.about-gradient-shape {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(236, 72, 153, 0.1) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.about-gradient-shape::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
}

.about-gradient-shape::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  animation: rotateGradient 15s linear infinite reverse;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .about-text {
    text-align: left;
  }
  
  .about-text p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .about {
    padding: 3rem 0;
  }
  
  .about-visual {
    min-height: 200px;
  }
  
  .about-visual dotlottie-wc {
    max-width: 100%;
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .about-gradient-shape {
    height: 200px;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--gray-light);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated grid pattern */
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

  .services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
  }

  @media (max-width: 576px) {
    .services-intro {
      font-size: 1rem;
      margin-bottom: 2rem;
      padding: 0 1rem;
    }

    .services {
      padding: 3rem 0;
    }

    .services-header {
      padding: 0 1rem;
    }
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (max-width: 576px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: #ffffff;
  border: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
  border: none;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(10px);
}

.service-card:hover .service-icon::after {
  opacity: 0.5;
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Skills Section - Business Impact Focused */
.skills {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 50%, #f5f5f7 100%);
  background-size: 100% 300%;
  animation: backgroundFlow 25s ease infinite;
  position: relative;
  overflow: hidden;
}

.skills-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

@media (max-width: 576px) {
  .skills {
    padding: 3rem 0;
  }

  .skills-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
}

/* Animated dots pattern */
.skills::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(99, 102, 241, 0.1) 2px, transparent 2px);
  background-size: 40px 40px;
  animation: dotsFloat 30s linear infinite;
  pointer-events: none;
  opacity: 0.3;
}

@keyframes dotsFloat {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

/* Impact Metrics */
.impact-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .impact-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .impact-metrics {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.metric-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.metric-card:hover::before {
  transform: scaleX(1);
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.metric-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.4s ease;
}

.metric-card:hover .metric-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.metric-icon i {
  font-size: 2rem;
  color: white;
}

.metric-content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 3s ease infinite;
  line-height: 1;
}

.metric-symbol {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.metric-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

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

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .metric-card {
    padding: 2rem 1.5rem;
  }

  .metric-number {
    font-size: 2.5rem;
  }

  .metric-symbol {
    font-size: 1.5rem;
  }

  .metric-card h3 {
    font-size: 1.2rem;
  }

  .metric-card p {
    font-size: 0.9rem;
  }

  .benefit-item {
    padding: 2rem 1.5rem;
  }

  .progress-ring {
    width: 100px;
    height: 100px;
  }

  .progress-value {
    font-size: 1.5rem;
  }

  .benefit-item h3 {
    font-size: 1.3rem;
  }

  .benefit-item p {
    font-size: 0.9rem;
  }
}

.benefit-item {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.benefit-visual {
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.progress-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke-width: 8;
  stroke: rgba(99, 102, 241, 0.1);
}

.progress-circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 2s ease-in-out;
  stroke: url(#progressGradient);
}

.progress-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--accent-color) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(15px);
}

.benefit-item:hover .progress-ring::before {
  opacity: 0.3;
}

.progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.benefit-item:hover h3 {
  color: var(--primary-color);
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}


/* Projects Section */
.projects {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: gradientShift 20s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Animated wave pattern */
.projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(99, 102, 241, 0.02) 10px,
      rgba(99, 102, 241, 0.02) 20px
    );
  animation: waveMove 25s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes waveMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, 20px);
  }
}

.projects-header {
  text-align: center;
  margin-bottom: 4rem;
}

  .projects-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.8;
  }

  @media (max-width: 576px) {
    .projects-subtitle {
      font-size: 1rem;
      padding: 0 1rem;
    }
  }

.projects-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 767px) {
  .projects-carousel-wrapper {
    padding: 0 3rem;
  }
}

.projects-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0;
  background: transparent;
}

.projects-carousel:focus {
  outline: 2px solid transparent;
  outline-offset: 4px;
}

.projects-carousel:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

.projects-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  gap: 2rem;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  min-width: 100%;
}

.projects-track:active {
  cursor: grabbing;
}

.projects-track.dragging {
  cursor: grabbing;
  transition: none;
}

.projects-track.dragging .project-showcase-item {
  pointer-events: none;
  user-select: none;
}

.project-showcase-item {
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
  flex: 0 0 calc(50% - 1rem);
  min-width: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.project-showcase-item.active {
  opacity: 1;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
  pointer-events: auto;
  z-index: 10;
}

.project-showcase-item.prev,
.project-showcase-item.next {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

/* Mobile: Show 1 item */
@media (max-width: 767px) {
  .project-showcase-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .projects-track {
    gap: 1.5rem;
  }
  
  .project-showcase-item.prev,
  .project-showcase-item.next {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 20;
  width: 100%;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: all;
  z-index: 21;
  position: absolute;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
  border-color: var(--primary-color);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-btn:disabled:hover {
  transform: scale(1);
}

.carousel-btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.carousel-btn:hover i {
  transform: translateX(2px);
}

.carousel-prev:hover i {
  transform: translateX(-2px);
}

.carousel-prev {
  left: -2rem;
}

.carousel-next {
  right: -2rem;
}

@media (max-width: 767px) {
  .projects-carousel-wrapper {
    padding: 0 1rem;
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    min-width: 44px;
    min-height: 44px;
  }
  
  .carousel-prev {
    left: 0.5rem;
  }
  
  .carousel-next {
    right: 0.5rem;
  }
}

@media (max-width: 576px) {
  .projects-carousel-wrapper {
    padding: 0 0.5rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    min-width: 40px;
    min-height: 40px;
  }
  
  .carousel-prev {
    left: 0.25rem;
  }
  
  .carousel-next {
    right: 0.25rem;
  }
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
}

.carousel-indicator:hover {
  background: rgba(99, 102, 241, 0.4);
  transform: scale(1.3);
}

.carousel-indicator:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.carousel-indicator.active {
  background: var(--primary-color);
  width: 24px;
  height: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(99, 102, 241, 0.4);
}

.project-showcase-item .project-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.project-showcase-item.active .project-visual {
  transform: translateY(0);
}

.project-visual:hover {
  transform: translateY(-2px);
}

.project-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  position: relative;
}

.project-image-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image-link:hover::after {
  opacity: 1;
}

.project-image-link::before {
  content: "Visit Website";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(10px);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.project-image-link:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.project-view-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-preview {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-live {
  position: relative;
  width: 100%;
  height: 900px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.live-view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.live-view-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.live-view-controls {
  display: flex;
  gap: 0.5rem;
}

.view-control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-control-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.project-iframe-wrapper {
  position: relative;
  width: 100%;
  height: calc(100% - 60px);
  overflow: hidden;
  background: #f5f5f7;
}

.project-iframe {
  width: 100%;
  height: 100%;
  border: none;
  transform: scale(0.5);
  transform-origin: top left;
  width: 200%;
  height: 200%;
  transition: transform 0.3s ease;
}

.view-live-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.project-preview:hover .view-live-btn {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(-10px);
}

.view-live-btn:hover {
  transform: translateX(-50%) translateY(-12px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.view-live-btn i {
  font-size: 1.1rem;
}

.project-visual-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f8f9fa;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.4s ease;
}

.project-image-link:hover .project-image-wrapper {
  transform: scale(1.01);
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
  display: block;
}

.project-image-link:hover .project-image-wrapper img {
  transform: scale(1.08);
}


/* Removed duplicate "Scroll to see more" text */

/* Live View Styles */
.project-view-container {
  position: relative;
  width: 100%;
}

.project-preview {
  position: relative;
  width: 100%;
}

.project-live {
  position: relative;
  width: 100%;
  height: 900px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.live-view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.live-view-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.live-view-controls {
  display: flex;
  gap: 0.5rem;
}

.view-control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-control-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.project-iframe-wrapper {
  position: relative;
  width: 100%;
  height: calc(100% - 60px);
  overflow: auto;
  background: #f5f5f7;
  -webkit-overflow-scrolling: touch;
}

.project-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.view-live-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
}

.project-preview:hover .view-live-btn {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.view-live-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.view-live-btn i {
  font-size: 1.1rem;
}

.project-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(139, 92, 246, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 5;
  pointer-events: none;
}

/* Hide overlay text when hovering to avoid duplication with button */
.project-preview:hover .project-visual-overlay {
  opacity: 0;
  pointer-events: none;
}

.overlay-content {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.project-preview:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 1.3rem;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.project-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.project-placeholder p {
  font-size: 0.9rem;
  margin: 0;
}

.project-content {
  padding: 2rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.project-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.project-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.project-description-wrapper {
  position: relative;
  margin-bottom: 0;
  min-height: 80px;
  display: flex;
  flex-direction: column;
}

.project-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: -webkit-line-clamp 0.3s ease;
}

.project-description-wrapper.expanded .project-description {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
}

.view-more-btn:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.view-more-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.project-description-wrapper.expanded .view-more-btn i {
  transform: rotate(180deg);
}

.project-highlights {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #f5f5f7;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.project-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
}

.project-tech-tags span {
  padding: 0.4rem 0.875rem;
  background-color: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-tech-tags span:hover {
  border-color: var(--primary-color);
  background-color: rgba(99, 102, 241, 0.05);
  color: var(--primary-color);
}

.project-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  transition: all 0.3s ease;
  margin-top: auto;
}

.project-cta-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.project-cta-btn:hover::before {
  width: 200px;
  height: 200px;
}

.project-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.project-cta-btn i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.project-cta-btn span {
  position: relative;
  z-index: 1;
}

.project-cta-btn:hover i {
  transform: translateX(4px);
}

.project-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.project-link-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.project-link-btn:hover i {
  transform: translateX(3px);
}

.project-link-btn.github {
  background: var(--light-color);
  color: var(--text-primary);
  border: 2px solid var(--gray-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-link-btn.github:hover {
  background: var(--gray-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: gradientShift 20s ease infinite;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  animation: floatParticles 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 1rem auto 2rem;
  line-height: 1.8;
}

.pricing-disclaimer {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.pricing-disclaimer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.6;
}

.pricing-disclaimer i {
  color: var(--primary-color);
  font-size: 1rem;
}

.compare-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.compare-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.compare-toggle-btn.active {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.pricing-grid.compare-view .pricing-card {
  height: auto;
}

.pricing-grid.compare-view .pricing-features-list {
  max-height: none;
  overflow: visible;
}

.pricing-grid.compare-view .pricing-features-list li.feature-hidden {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 1rem;
  transform: translateY(0);
}

.pricing-grid.compare-view .pricing-toggle-btn {
  display: none;
}

@media (max-width: 576px) {
  .pricing-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .compare-toggle-btn {
    width: 100%;
    max-width: 300px;
    margin-top: 1.5rem;
  }
  
  .pricing-grid.compare-view .pricing-card {
    margin-bottom: 2rem;
  }
}

.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.25);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .pricing-card.featured {
    transform: scale(1);
  }
}

.pricing-card.featured:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.3);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.pricing-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pricing-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  min-height: 60px;
}

.pricing-best-for-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.pricing-best-for {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
}

.best-for-text {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.pricing-best-for.expanded .best-for-text {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.pricing-best-for i {
  color: var(--primary-color);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.best-for-toggle {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 6px;
  color: var(--primary-color);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 0;
}

.best-for-toggle:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.best-for-toggle.expanded {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-color: transparent;
  color: white;
}

.best-for-toggle.expanded i {
  transform: rotate(45deg);
}

.best-for-toggle i {
  transition: transform 0.3s ease;
}

.pricing-price-range {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gray-light) 50%, transparent 100%);
  margin: 2rem 0 1.5rem 0;
}

.pricing-features-list {
  flex: 1;
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-features-list.expanded {
  max-height: 1000px;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-features-list li.feature-hidden {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, margin-bottom 0.3s ease;
}

.pricing-features-list.expanded li.feature-hidden {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 1rem;
  transform: translateY(0);
}

.pricing-features-list li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-item span {
  line-height: 1.6;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.pricing-year-1,
.pricing-year-2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.pricing-year-2 {
  padding-top: 0.75rem;
  border-top: 1px dashed var(--gray-light);
  margin-top: 0.5rem;
}

.pricing-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 0.25rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 3s ease infinite;
  line-height: 1;
}

.period {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.pricing-note-small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.pricing-note-small i {
  color: var(--primary-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-note-small span {
  line-height: 1.4;
}

.pricing-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0 1.5rem;
  background: transparent;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.pricing-toggle-btn:hover {
  background: rgba(99, 102, 241, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.pricing-toggle-btn i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.pricing-toggle-btn.expanded i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .pricing-features-list {
    max-height: 120px;
  }
  
  .pricing-features-list.expanded {
    max-height: 600px;
  }
}

/* Maintenance Section */
.maintenance {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 50%, #f5f5f7 100%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
  position: relative;
  overflow: hidden;
}

.maintenance-header {
  text-align: center;
  margin-bottom: 4rem;
}

.maintenance-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

.care-plan-details {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.care-plan-details h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.care-plan-price-range {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.care-plan-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.care-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.care-plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .care-plan-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.care-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.care-plan-features li i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.care-plan-features li strong {
  color: var(--text-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.care-plan-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

.care-plan-note i {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: gradientShift 20s ease infinite;
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .care-plan-details {
    padding: 2rem 1.5rem;
  }
  
  .care-plan-details h3 {
    font-size: 1.75rem;
  }
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.pricing-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.pricing-btn:hover::before {
  width: 300px;
  height: 300px;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.pricing-btn i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.pricing-btn:hover i {
  transform: translateX(4px);
}

.pricing-btn span {
  position: relative;
  z-index: 1;
}

.pricing-btn.featured-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.pricing-btn.featured-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.pricing-note i {
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

.pricing-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.pricing-note a:hover {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .pricing {
    padding: 4rem 0;
  }

  .pricing-header {
    margin-bottom: 3rem;
  }

  .pricing-card {
    padding: 2.5rem 2rem;
  }

  .pricing-title {
    font-size: 1.75rem;
  }

  .price {
    font-size: 3rem;
  }
  
  .pricing-year-1,
  .pricing-year-2 {
    flex-wrap: wrap;
  }
  
  .pricing-label {
    width: 100%;
    text-align: center;
    margin-bottom: 0.25rem;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .pricing {
    padding: 3rem 0;
  }

  .pricing-header {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .pricing-disclaimer {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
  }

  .pricing-disclaimer p {
    font-size: 0.85rem;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

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

  .pricing-title {
    font-size: 1.5rem;
  }

  .pricing-description {
    font-size: 0.95rem;
    min-height: auto;
  }
  
  .pricing-best-for {
    font-size: 0.85rem;
    padding: 0.625rem 0.875rem;
    padding-right: 2.25rem;
  }

  .best-for-toggle {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    top: 0.625rem;
    right: 0.625rem;
  }
  
  .pricing-price-range {
    font-size: 0.8rem;
  }
  
  .compare-toggle-btn {
    width: 100%;
    max-width: 280px;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    margin-top: 1.25rem;
  }
  
  .pricing-features-list {
    max-height: 80px;
  }
  
  .pricing-features-list.expanded {
    max-height: 400px;
  }
  
  .pricing-grid.compare-view .pricing-features-list {
    max-height: none;
  }
  
  .care-plan-intro {
    font-size: 0.95rem;
    padding: 0.875rem;
  }
  
  .care-plan-price-range {
    font-size: 0.8rem;
  }

  .pricing-features-list li {
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
  }
  
  .care-plan-features li {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .process-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .process-step h3 {
    font-size: 1.3rem;
  }
  
  .process-step p {
    font-size: 0.95rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .currency {
    font-size: 1.25rem;
  }

  .period {
    font-size: 1rem;
  }
  
  .pricing-year-1,
  .pricing-year-2 {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .pricing-label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .pricing-note-small {
    font-size: 0.8rem;
    padding: 0.625rem 0.875rem;
    flex-direction: column;
    gap: 0.375rem;
  }
  
  .pricing-toggle-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
    margin: 0.5rem 0 1.25rem;
  }
  
  .pricing-features-list {
    max-height: 100px;
  }
  
  .pricing-features-list.expanded {
    max-height: 500px;
  }

  .pricing-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .pricing-note {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .pricing-note p {
    font-size: 0.9rem;
  }
}

/* CTA Website Claim Section */
.cta-website-claim {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: gradientShift 20s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
.cta-website-claim::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  animation: floatParticles 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Decorative gradient orb */
.cta-website-claim::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: rotateShape 30s linear infinite;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.cta-website-claim-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-headline {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.cta-headline .highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: titleGradient 4s ease infinite;
  display: inline-block;
}

.cta-subheadline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-subheadline strong {
  color: var(--primary-color);
  font-weight: 600;
}

.cta-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cta-claim-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.cta-claim-btn:hover::before {
  width: 200px;
  height: 200px;
}

.cta-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.cta-claim-btn i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-claim-btn:hover i {
  transform: translateX(4px);
}

.cta-claim-btn span {
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

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

/* Responsive Styles for CTA Section */
@media (max-width: 992px) {
  .cta-website-claim {
    padding: 5rem 0;
  }

  .cta-headline {
    font-size: 2.5rem;
  }

  .cta-subheadline {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .cta-website-claim {
    padding: 4rem 0;
  }

  .cta-headline {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .cta-subheadline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-claim-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-website-claim {
    padding: 3.5rem 0;
  }

  .cta-website-claim-content {
    padding: 0 1rem;
  }

  .cta-headline {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .cta-subheadline {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
  }

  .cta-claim-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    justify-content: center;
    min-height: 52px;
  }

  .cta-claim-btn:hover {
    transform: translateY(-2px);
  }
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 50%, #f5f5f7 100%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Floating orbs */
.contact::before,
.contact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 20s ease-in-out infinite;
}

.contact::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.contact::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  bottom: -175px;
  right: -175px;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

  .contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.8;
  }

  @media (max-width: 576px) {
    .contact-subtitle {
      font-size: 1rem;
      padding: 0 1rem;
    }
  }

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  justify-items: center;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-form-wrapper {
  width: 100%;
  max-width: 700px;
}

.contact-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.contact-visual dotlottie-wc {
  width: 100%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
}

.contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

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

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background: #f9fafb;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-submit-btn i {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
  transform: translateX(4px);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.contact-submit-btn .btn-loader {
  display: none;
}

.contact-submit-btn .btn-text {
  display: inline;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: slideIn 0.3s ease;
}

.form-message.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.form-message.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .contact-visual {
    min-height: 200px;
  }
  
  .contact-visual dotlottie-wc {
    max-width: 100%;
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* Contact CTA Card Styles */
.contact-cta-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.contact-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-cta-card:hover .cta-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scale(1.05) rotate(5deg);
}

.cta-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-cta-card:hover .cta-icon i {
  color: white;
  transform: scale(1.1);
}

.contact-cta-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.contact-cta-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-email-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-email-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-email-cta:hover::before {
  width: 300px;
  height: 300px;
}

.btn-email-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-email-cta:active {
  transform: translateY(-1px);
}

.btn-email-cta i,
.btn-email-cta span {
  position: relative;
  z-index: 1;
}

.btn-email-cta i {
  transition: transform 0.3s ease;
}

.btn-email-cta:hover i {
  transform: translateX(4px) rotate(-15deg);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cta-note i {
  color: var(--primary-color);
  font-size: 0.85rem;
}

/* Contact Info Styles */
.contact-info-wrapper {
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.contact-description {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.2);
}

.detail-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.detail-item:hover .detail-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scale(1.05);
}

.detail-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.detail-item:hover .detail-icon i {
  color: white;
}

.detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.detail-text span,
.detail-text a {
  font-size: 1.1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

.detail-meta {
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
  margin-top: 0.25rem;
}

.contact-social {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.social-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.social-link:hover {
  transform: translateX(4px);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  color: var(--primary-color);
}

.social-link i {
  font-size: 1.4rem;
  width: 28px;
  text-align: center;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.1);
  color: var(--primary-color);
}

.social-link span {
  flex: 1;
}

/* Connect Section */
.connect {
  padding: 5rem 0;
  background-color: #ffffff;
  position: relative;
}

.connect-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.connect-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.connect-content {
  max-width: 800px;
  margin: 0 auto;
}

.connect-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.connect-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background-color: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.connect-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
  transition: left 0.5s ease;
}

.connect-link:hover::before {
  left: 100%;
}

.connect-link:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.connect-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.connect-link:hover .connect-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scale(1.05);
}

.connect-icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.connect-link:hover .connect-icon i {
  color: white;
  transform: scale(1.1);
}

.connect-info {
  flex: 1;
  text-align: left;
}

.connect-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.connect-link:hover .connect-info h3 {
  color: var(--primary-color);
}

.connect-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.connect-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.connect-link:hover .connect-arrow {
  background-color: var(--primary-color);
  transform: translateX(4px);
}

.connect-arrow i {
  font-size: 1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.connect-link:hover .connect-arrow i {
  color: white;
  transform: translateX(2px);
}

/* Footer */
footer {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border-top: 1px solid #e5e5e7;
  color: var(--text-primary);
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle animated pattern in footer */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  animation: footerFloat 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes footerFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: logoGradient 4s ease infinite, logoPulse 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.footer-logo a:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.6)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
}

.footer-logo a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: logoShimmer 3s ease-in-out infinite;
  animation-delay: 2s;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gray-light);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-light);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-visual {
    min-height: 300px;
    margin-top: 2rem;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 100%;
  }

  .hero-lottie-animation {
    top: -190px;
    left: 85%;
    width: 350px;
    height: 350px;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .benefit-icon i {
    font-size: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .about-content {
    flex-direction: column;
  }

  @media (max-width: 576px) {
    .about-content {
      padding: 0 1rem;
    }
  }


  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
  }

  .contact-cta-wrapper {
    align-items: flex-start;
  }

  .contact-cta-card {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    transition: left 0.3s ease;
    padding-top: 100px;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
  }

  .hamburger.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  }

  .hero .container {
    padding-top: 6.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero.scrolled {
    min-height: 80vh;
  }

  .hero.scrolled .container {
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }

  .hero.scrolled .hero-content {
    transform: scale(1);
  }

  .hero.scrolled .hero-visual {
    transform: scale(1);
    min-height: 250px;
  }

  .hero.scrolled .hero-content h1 {
    font-size: 2rem;
  }

  .hero.scrolled .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero-content h2 {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-lottie-animation {
    display: none;
  }

  .benefit-card {
    padding: 1.25rem;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.75rem;
  }

  .benefit-icon i {
    font-size: 1.25rem;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .projects-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .project-showcase-item {
    gap: 0;
  }

  .project-content {
    padding: 1.5rem;
    gap: 1rem;
  }

  .project-image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .projects {
    padding: 3rem 0;
  }

  .projects-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .projects-subtitle {
    font-size: 1.05rem;
  }

  .projects-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .project-showcase-item {
    gap: 0;
  }

  .project-content {
    padding: 1.25rem;
    gap: 0.875rem;
  }

  .project-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.875rem;
    margin-bottom: 0.75rem;
  }

  .project-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .project-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .view-more-btn {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    min-height: 44px;
  }

  .highlight-item {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    min-height: 44px;
  }

  .project-tech-tags span {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }

  .project-image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .project-title {
    font-size: 1.375rem;
  }

  .project-description {
    font-size: 0.9rem;
  }
  
  .project-cta-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  
  .carousel-indicators {
    margin-top: 2rem;
    gap: 0.5rem;
  }

  .carousel-indicator {
    width: 6px;
    height: 6px;
    min-width: 44px;
    min-height: 6px;
  }

  .carousel-indicator.active {
    width: 20px;
    height: 6px;
  }

  .project-live {
    height: 500px;
  }

  .live-view-header {
    padding: 0.875rem 1.25rem;
  }

  .view-live-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    bottom: 15px;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-description {
    font-size: 0.9rem;
  }

  .project-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .project-cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero.scrolled {
    min-height: 85vh;
  }

  .hero.scrolled .container {
    padding-top: 4.5rem;
    padding-bottom: 1rem;
  }

  .hero.scrolled .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero.scrolled .hero-content h2 {
    font-size: 1.1rem;
  }

  .hero.scrolled .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero.scrolled .hero-visual {
    min-height: 200px;
  }

  .hero .container {
    padding-top: 6rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-visual {
    min-height: 250px;
    width: 100%;
  }

  .hero .container {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
  }

  .hero-lottie-animation {
    display: none;
  }

  .benefit-card {
    padding: 1.25rem;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.75rem;
  }

  .benefit-icon i {
    font-size: 1.25rem;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .tech-label {
    font-size: 0.65rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-content h2 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }

  .service-icon i {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo a {
    font-size: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .footer-links a {
    padding: 0.75rem 1rem;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .footer-links a:hover {
    background-color: rgba(99, 102, 241, 0.05);
  }

  .footer-social {
    justify-content: center;
    gap: 0.75rem;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .contact {
    padding: 4rem 0;
  }

  .contact-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .contact {
    padding: 3rem 0;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .contact-cta-wrapper {
    align-items: flex-start;
  }

  .contact-cta-card {
    padding: 2rem 1.5rem;
  }

  .contact-cta-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.875rem;
  }

  .contact-cta-card p {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
  }

  .btn-email-cta {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .cta-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }

  .cta-icon i {
    font-size: 2rem;
  }

  .social-link i {
    font-size: 1.25rem;
    width: 24px;
  }

  .contact-info h3 {
    font-size: 1.75rem;
  }

  .contact-details {
    gap: 1.25rem;
  }

  .detail-item {
    padding: 1.25rem;
    flex-wrap: wrap;
  }

  .detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .detail-icon i {
    font-size: 1.25rem;
  }

  .detail-text {
    min-width: 0;
    flex: 1 1 auto;
  }

  .detail-text h4 {
    font-size: 0.8rem;
  }

  .detail-text span,
  .detail-text a {
    font-size: 1rem;
  }

  .detail-meta {
    font-size: 0.85rem !important;
  }

  .social-links {
    gap: 0.75rem;
  }

  .connect {
    padding: 4rem 0;
  }

  .connect-header {
    margin-bottom: 2.5rem;
  }

  .connect-subtitle {
    font-size: 1.05rem;
  }

  .connect-link {
    padding: 1.5rem 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .connect-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }

  .connect-icon i {
    font-size: 1.5rem;
  }

  .connect-info {
    flex: 1 1 auto;
    min-width: 0;
  }

  .connect-info h3 {
    font-size: 1.2rem;
  }

  .connect-info p {
    font-size: 0.9rem;
  }

  .connect-arrow {
    width: 40px;
    height: 40px;
    min-width: 44px;
    min-height: 44px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
}

.back-to-top.show {
  display: flex;
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.back-to-top i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.back-to-top:hover {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6),
              0 0 0 8px rgba(99, 102, 241, 0.1),
              0 0 0 16px rgba(139, 92, 246, 0.05);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: scale(0.95) rotate(360deg);
}

.back-to-top:active i {
  transform: translateY(-5px) scale(1.2);
}

/* Ripple Effects */
.back-to-top .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  width: 20px;
  height: 20px;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.clicked .ripple {
  animation: rippleEffect 0.8s ease-out;
}

.back-to-top.clicked .ripple:nth-child(2) {
  animation-delay: 0.1s;
}

.back-to-top.clicked .ripple:nth-child(3) {
  animation-delay: 0.2s;
}

.back-to-top.clicked .ripple:nth-child(4) {
  animation-delay: 0.3s;
}

/* Glow Pulse Effect */
.back-to-top::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0;
  z-index: -1;
  filter: blur(15px);
  transition: opacity 0.4s ease;
  animation: pulseGlow 2s ease-in-out infinite;
}

.back-to-top:hover::before {
  opacity: 0.7;
}

/* Particle Burst on Click */
.back-to-top::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease;
}

.back-to-top.clicked::after {
  opacity: 1;
  transform: scale(2);
  transition: all 0.5s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(8);
    opacity: 0;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 1.5rem;
    right: 1.5rem;
    min-width: 50px;
    min-height: 50px;
  }
}

@media (max-width: 576px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    bottom: 1.25rem;
    right: 1.25rem;
    min-width: 48px;
    min-height: 48px;
  }
}
