/* CSS Variables */
:root {
  /* Colors - Dark Theme */
  --background: #0f172a;
  --foreground: #f1f5f9;
  --card: #1e293b;
  --card-foreground: #f1f5f9;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --secondary: #334155;
  --muted: #475569;
  --muted-foreground: #94a3b8;
  --accent: #22d3ee;
  --border: #334155;
  --chart-2: #22c55e;
  --chart-4: #f59e0b;
  
  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 6rem 0;
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.btn:hover:before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--primary-foreground);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

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

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-link:hover:before {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger {
  width: 2rem;
  height: 0.25rem;
  background: var(--foreground);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.hamburger:before,
.hamburger:after {
  content: '';
  width: 2rem;
  height: 0.25rem;
  background: var(--foreground);
  border-radius: 10px;
  position: absolute;
  transition: all 0.3s linear;
}

.hamburger:before {
  transform: translateY(-0.5rem);
}

.hamburger:after {
  transform: translateY(0.5rem);
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.typing-text {
  color: var(--primary);
}

.cursor {
  color: var(--primary);
  animation: pulse 1.5s infinite;
}

.hero-subtitle {
  color: var(--chart-2);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat:nth-child(1) .stat-number { color: var(--primary); }
.stat:nth-child(2) .stat-number { color: var(--chart-2); }
.stat:nth-child(3) .stat-number { color: var(--chart-4); }

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease;
}

.image-container {
  position: relative;
  width: 400px;
  height: 500px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
  border-radius: 1rem;
  padding: 0.25rem;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.75rem;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Expertise Section */
.expertise {
  padding: var(--section-padding);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.expertise-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.expertise-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.8s;
}

.expertise-card:hover:before {
  left: 100%;
}

.expertise-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.card-icon i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.expertise-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(34, 197, 94, 0.3) 100%);
  transform: rotate(15deg) scale(1.15);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.card-list {
  list-style: none;
  text-align: left;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.card-list li:before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Projects Section */
.projects {
  padding: var(--section-padding);
  background: var(--card);
}

.project-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--muted-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.brand-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.brand-name-display {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.project-card:hover .brand-name-display {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111827;
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111827;
}

/* Exit Intent Popup */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: var(--card);
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 2px solid var(--primary);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--muted-foreground);
    cursor: pointer;
}

.exit-popup-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4ade80 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exit-popup-text {
    color: var(--foreground);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.exit-popup-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

.project-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
}

.project-badge {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.project-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

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

.project-tag {
  background: var(--secondary);
  color: var(--foreground);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.project-metrics {
  margin-bottom: 1rem;
}

.project-metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.project-metric:before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--chart-2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Services Section */
.services {
  padding: var(--section-padding);
}

.competitive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
  border-color: var(--primary) !important;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(34, 197, 94, 0.03) 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.original-price {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.pricing-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  font-size: 0.875rem;
}

.pricing-features i {
  color: var(--chart-2);
  width: 1.25rem;
  height: 1.25rem;
}

.consultation-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 3rem 2rem;
}

.consultation-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.consultation-cta p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background: var(--card);
}

.testimonials-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--chart-4);
  font-weight: 500;
  margin-top: 1rem;
}

.testimonials-count i {
  color: var(--chart-4);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.5s ease;
}

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

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: var(--chart-4);
  width: 1rem;
  height: 1rem;
}

.testimonial-content {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info .testimonial-name {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.875rem;
}

.testimonial-info .testimonial-role {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.testimonials-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pagination-btn {
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--foreground);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-dots {
  display: flex;
  gap: 0.5rem;
}

.pagination-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: var(--primary);
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
}

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

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: var(--primary);
}

.contact-label {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--muted-foreground);
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* Notification System */
.live-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

.live-notification.show {
    transform: translateX(0);
}

.notification-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.notification-content {
    font-size: 0.875rem;
    color: var(--foreground);
    line-height: 1.4;
}

.notification-content strong {
    color: var(--primary);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--background);
    animation: bounce 2s infinite;
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 400px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.footer-links h4,
.footer-services h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
}

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

.footer-services li {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright,
.footer-made-with,
.footer-contact {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Project Modal Styles */
.project-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.project-modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeInUp 0.3s ease;
}

.project-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.project-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.project-modal-close {
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.project-modal-close:hover {
  background: var(--muted);
  color: var(--foreground);
}

.project-modal-content {
  padding: 1.5rem;
  space-y: 1.5rem;
}

.project-modal-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.project-modal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.stat-item i {
  color: var(--primary);
  width: 1rem;
  height: 1rem;
}

.project-modal-section {
  margin-bottom: 1.5rem;
}

.project-modal-section h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.project-modal-section p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.project-results {
  list-style: none;
  space-y: 0.5rem;
}

.project-results li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.project-results i {
  color: var(--chart-2);
  width: 1rem;
  height: 1rem;
}

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

.project-modal-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-modal-buttons .btn {
  flex: 1;
  min-width: 150px;
}

/* Pricing Card Enhancements */
.pricing-card {
  cursor: pointer;
}

.pricing-card .collapsible-content {
  background: rgba(59, 130, 246, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
}

.pricing-details {
  background: var(--muted)/30;
  border-radius: 0.75rem;
  padding: 1rem;
  space-y: 0.75rem;
}

.pricing-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pricing-detail-item i {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 768px) {
  .project-modal {
    margin: 1rem;
    max-height: 85vh;
  }
  
  .project-modal-stats {
    grid-template-columns: 1fr;
  }
  
  .project-modal-buttons {
    flex-direction: column;
  }
  
  .project-modal-buttons .btn {
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --section-padding: 3rem 0;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu.show {
    display: block;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .image-container {
    width: 300px;
    height: 400px;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .project-tabs {
    flex-direction: column;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-buttons {
    flex-direction: column;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .chat-widget {
    width: calc(100% - 30px);
    right: 15px;
  }
}

/* Limited Time Offers Section */
.limited-offers {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.visitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  color: var(--chart-2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  animation: pulse 2s infinite;
}

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

.offer-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.offer-flame, .offer-briefcase {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-flame i, .offer-briefcase i {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.offer-header {
  margin-bottom: 1rem;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding-right: 4rem;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.offer-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--chart-2);
}

.offer-current small {
  font-size: 1rem;
  font-weight: 400;
}

.offer-original {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.offer-desc {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.offer-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.offer-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.offer-highlights i {
  width: 1rem;
  height: 1rem;
  color: var(--chart-2);
}

.offer-slots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--chart-4);
}

.offer-slots i {
  width: 1rem;
  height: 1rem;
}

.offer-slots strong {
  color: #ef4444;
  font-size: 1.25rem;
}

.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  border: 1px solid var(--chart-4);
  border-radius: 0.5rem;
  color: var(--chart-4);
  font-weight: 500;
}

.urgency-banner i {
  width: 1.25rem;
  height: 1.25rem;
  animation: pulse 1s infinite;
}

/* Modal Overlays */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: var(--primary);
}

.modal-close-btn i {
  color: var(--foreground);
  width: 1.25rem;
  height: 1.25rem;
}

/* Case Study Modal */
.case-study-modal {
  background: var(--card);
  border-radius: 1rem;
  max-width: 900px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.case-study-media {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.case-study-image, .case-study-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.case-study-details {
  padding: 2rem;
}

.case-study-details h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.case-study-details p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Offer Modal */
.offer-modal {
  background: var(--card);
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  padding: 2rem;
}

.offer-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.offer-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.offer-modal-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.offer-modal-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--chart-2);
}

.offer-modal-original {
  font-size: 1rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.offer-modal-desc {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.offer-modal-section {
  margin-bottom: 2rem;
}

.offer-modal-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.offer-modal-section ul {
  list-style: none;
  padding: 0;
}

.offer-modal-section li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.offer-modal-section li i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--chart-2);
}

.offer-modal-cta {
  text-align: center;
}

.offer-modal-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Live Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 380px;
  max-height: 500px;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.chat-widget.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 1rem 1rem 0 0;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
}

.chat-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chat-minimize {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-minimize:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-minimize i {
  color: white;
  width: 1rem;
  height: 1rem;
}

.chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-height: 400px;
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 300px;
}

.chat-message {
  display: flex;
  gap: 0.75rem;
}

.chat-avatar {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
}

.chat-bubble {
  background: var(--secondary);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  max-width: 85%;
}

.chat-name {
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.chat-time {
  font-weight: 400;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.chat-bubble p {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

.chat-screenshot {
  max-width: 100%;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.chat-input-form {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.chat-input-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--foreground);
  font-size: 0.875rem;
}

.chat-input-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.chat-send-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.chat-send-btn i {
  color: white;
  width: 1rem;
  height: 1rem;
}

/* Chat Toggle Button */
.chat-toggle-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
}

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

.chat-toggle-btn i {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.chat-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: #ef4444;
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Proof Notifications */
.social-proof-notification {
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9997;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.5s ease;
}

.social-proof-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.spn-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.spn-content {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.4;
}

.spn-content strong {
  color: var(--primary);
}

.spn-content span {
  display: block;
  color: var(--muted-foreground);
}

.spn-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--chart-2);
  flex-shrink: 0;
}

/* Project Video Styles */
.project-video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}