:root {
  --primary: #00b0ff;
  --accent: #0066ff;
  --background: #08090a;
  --background-light: #ffffff;
  --text-primary: #ffffff;
  --text-dark: #1a1a2e;
  --text-secondary: #a0a0a0;
  --text-secondary-light: #666666;
  --card-bg: #111214;
  --card-bg-light: #f8f9fa;
  --border-color: #222428;
  --border-color-light: #e0e0e0;
  --gradient: linear-gradient(135deg, #00b0ff 0%, #0066ff 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.mt-20 {
  margin-top: 20px;
}

/* Section Themes */
.section-dark {
  background-color: var(--background);
  color: var(--text-primary);
}

.section-light {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.section-light .section-subtitle {
  color: var(--primary);
}

.section-light .section-title {
  color: var(--text-dark);
}

.section-light .section-desc {
  color: var(--text-secondary-light);
}

.section-light .feature-card {
  background: var(--card-bg-light);
  border-color: var(--border-color-light);
}

.section-light .feature-card h3 {
  color: var(--text-dark);
}

.section-light .feature-card p {
  color: var(--text-secondary-light);
}

.section-gradient {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #0096c7 100%);
  color: #ffffff;
}

.section-gradient .cta-text h2 {
  color: #ffffff;
}

.section-gradient .cta-text p {
  color: rgba(255, 255, 255, 0.85);
}

.section-gradient .btn-primary {
  background: #ffffff;
  color: #0077b6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-gradient .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Parallax Effect for Last 3 Sections */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-section .parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.parallax-section .container {
  position: relative;
  z-index: 1;
}
/* Stilul pentru Desktop (peste 768px) */
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centrează elementele pe orizontală */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.approach-item {
  flex: 1; /* Permite elementelor să crească egal */
  min-width: 200px; /* Previne comprimarea excesivă */
  max-width: 280px; /* Limitează lățimea pentru un aspect elegant */
  text-align: center;
}

/* Stilul pentru Mobile (sub 768px) */
@media (max-width: 767px) {
  .approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 coloane egale */
    gap: 15px; /* Spațiu mai mic pe mobil */
    padding: 0 10px;
  }

  .approach-item {
    max-width: none; /* Eliminăm limita de lățime de pe desktop */
    width: 100%;
  }

  .approach-icon {
    font-size: 1.5rem; /* Ajustează mărimea iconiței dacă e necesar */
  }
}
.approach.parallax-section .parallax-bg {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920");
  background-size: cover;
  background-position: center;
}
/* Stilul pentru containerul părinte pe desktop */
.who-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Ajustări pentru Mobile (sub 768px) */
@media (max-width: 767px) {
  .who-content {
    display: flex;
    flex-direction: column; /* Așază elementele unul sub altul */
  }

  .who-text {
    order: 1; /* Forțează textul să fie primul */
  }

  .who-image {
    order: 2; /* Forțează imaginea să fie a doua (jos) */
    margin-top: 30px; /* Adaugă puțin spațiu între text și imagine */
  }
}
.principle.parallax-section .parallax-bg {
  background:
    linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.92)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920");
  background-size: cover;
  background-position: center;
}

.cta-section.parallax-section .parallax-bg {
  background:
    linear-gradient(
      135deg,
      rgba(0, 119, 182, 0.88) 0%,
      rgba(0, 180, 216, 0.88) 50%,
      rgba(0, 150, 199, 0.88) 100%
    ),
    url("https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?w=1920");
  background-size: cover;
  background-position: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 7px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
}

.btn-large {
  padding: 18px 45px;
  font-size: 16px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 176, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 176, 255, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Hero specific buttons */
.hero .btn-primary {
  background: #ffffff;
  color: #0077b6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.hero .btn-outline:hover {
  background: #ffffff;
  color: #0077b6;
}

.btn-small {
  padding: 10px 5px;
  font-size: 12px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(8, 9, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(8, 9, 10, 0.95);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
}

.nav-list a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-list a:not(.btn):hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #0096c7 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  animation: pulse 5s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(48px, 10vw, 100px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-title .word {
  display: inline-block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}

/* Main Content */
.main-content {
  position: relative;
  background: var(--background-light);
}

/* Clients Carousel */
.clients {
  padding: 40px 0;
  background: var(--background-light);
  overflow: hidden;
}

.clients-track {
  display: flex;
  animation: slide 30s linear infinite;
}

.clients-slide {
  display: flex;
  gap: 60px;
  padding: 0 30px;
}

.clients-slide img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%) brightness(0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clients-slide img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Section Styles */
.section-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 50px;
}

/* About Section */
.about {
  padding: 120px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.about-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-image img {
  border-radius: 20px;

  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img {
  transform: scale(1.02);
}

/* What We Do / Features Section */
.what-we-do {
  padding: 120px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(0, 176, 255, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 176, 255, 0.1);
  border-radius: 20px;
  font-size: 28px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  color: white;
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Who For Section */
.who-for {
  padding: 120px 0;
}

.who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-text h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.who-text > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.who-list {
  margin-top: 30px;
}

.who-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.who-icon {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
}

.who-item p {
  font-size: 16px;
  color: var(--text-secondary);
}

.highlight-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 30px;
}

.who-image img {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Light section who-for styles */
.section-light .who-text h2 {
  color: var(--text-dark);
}

.section-light .who-text > p {
  color: var(--text-secondary-light);
}

.section-light .who-item p {
  color: var(--text-secondary-light);
}

.section-light .highlight-text {
  color: var(--accent);
}

/* Light section approach items */
.section-light .approach-item h3 {
  color: var(--text-dark);
}

.section-light .approach-item p {
  color: var(--text-secondary-light);
}

/* Light section principle */
.section-light .principle-content h2 {
  color: var(--text-dark);
}

.section-light .principle-text p {
  color: var(--text-secondary-light);
}

.section-light .principle-text p:last-child {
  color: var(--primary);
}

/* Light section pricing */
.section-light .pricing-text h2 {
  color: var(--text-dark);
}

.section-light .pricing-text > p {
  color: var(--text-secondary-light);
}

.section-light .pricing-factors li {
  color: var(--text-secondary-light);
}

/* Packages Section */
.packages {
  padding: 120px 0;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 176, 255, 0.15);
}

.package-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 20px 0 20px;
}

.package-header {
  background: var(--background);
  color: white;
  padding: 30px;
}

.package-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 10px;
}

.package-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.package-tagline {
  font-size: 14px;
  color: var(--text-secondary);
}

.package-content {
  padding: 30px;
  background: var(--card-bg);
}

.package-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-problems,
.package-features,
.package-outcomes {
  list-style: none;
  margin-bottom: 25px;
}

.package-problems li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.package-features li {
  font-size: 14px;
  color: var(--text-primary);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-features i {
  color: var(--primary);
  margin-top: 3px;
}

.package-outcomes li {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  padding: 5px 0;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pricing-text h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pricing-text .lead {
  font-size: 20px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 25px;
}

.pricing-text > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pricing-factors {
  list-style: none;
  margin: 25px 0;
}

.pricing-factors li {
  font-size: 16px;
  color: var(--text-secondary);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pricing-factors i {
  color: var(--primary);
}

.pricing-image img {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Approach Section */
.approach {
  padding: 120px 0;
  text-align: center;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.approach-item {
  padding: 30px 20px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 176, 255, 0.1);
  border-radius: 50%;
  font-size: 32px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.approach-item:hover .approach-icon {
  background: var(--gradient);
  color: white;
  transform: scale(1.1);
}

.approach-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.approach-item p {
  font-size: 14px;
  color: var(--text-secondary-light);
  line-height: 1.6;
}

/* Principle Section */
.principle {
  padding: 120px 0;
  text-align: center;
}

.principle-content {
  max-width: 800px;
  margin: 0 auto;
}

.principle-content h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.principle-text p {
  font-size: 22px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 300;
}

.principle-text p:last-child {
  color: var(--primary);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.cta-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--card-bg);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer ul a:hover {
  color: var(--primary);
}

.footer-contact p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 176, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeInAnim 1s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpAnim 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}
.delay-2 {
  animation-delay: 0.3s;
}
.delay-3 {
  animation-delay: 0.45s;
}
.delay-4 {
  animation-delay: 0.6s;
}
.delay-5 {
  animation-delay: 0.75s;
}

@keyframes fadeInAnim {
  to {
    opacity: 1;
  }
}

@keyframes slideUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal Animations with Blur */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: blur(10px);
}

.reveal {
  transform: translateY(40px);
}
.reveal-up {
  transform: translateY(60px);
}
.reveal-left {
  transform: translateX(-60px);
}
.reveal-right {
  transform: translateX(60px);
}

.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
  filter: blur(0);
}

/* Staggered delays for reveal animations */
.reveal-up.delay-1 {
  transition-delay: 0.1s;
}
.reveal-up.delay-2 {
  transition-delay: 0.2s;
}
.reveal-up.delay-3 {
  transition-delay: 0.3s;
}
.reveal-up.delay-4 {
  transition-delay: 0.4s;
}
.reveal-up.delay-5 {
  transition-delay: 0.5s;
}

/* Page Hero */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #0096c7 100%);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Page */
.contact-section {
  padding: 80px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--card-bg);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--background);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 176, 255, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: rgba(0, 176, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  transition: all 0.4s ease;
}

.info-item:hover .info-icon {
  background: var(--gradient);
  color: white;
}

.info-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-text p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1200px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .features-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .who-content,
  .pricing-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .hero {
    position: relative;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(17, 18, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 30px;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: clamp(36px, 12vw, 70px);
  }

  .features-grid,
  .packages-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  /* Footer dropdown for mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-links,
  .footer-services,
  .footer-contact {
    border-top: 1px solid var(--border-color);
  }

  .footer-links h4,
  .footer-services h4,
  .footer-contact h4 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 0;
  }

  .footer-links h4::after,
  .footer-services h4::after,
  .footer-contact h4::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
  }

  .footer-links.active h4::after,
  .footer-services.active h4::after,
  .footer-contact.active h4::after {
    transform: rotate(45deg);
  }

  .footer-links ul,
  .footer-services ul,
  .footer-contact p,
  .footer-contact .social-links {
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      padding 0.4s ease;
    padding: 0;
  }

  .footer-links.active ul,
  .footer-services.active ul {
    max-height: 300px;
    padding-bottom: 20px;
  }

  .footer-contact.active p,
  .footer-contact.active .social-links {
    max-height: 200px;
  }

  .footer-contact.active .social-links {
    padding-bottom: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px;
  }

  .clients-slide {
    gap: 30px;
  }

  .container {
    padding: 0 15px;
  }
}
