* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #000000;
  font-family: 'Inter', sans-serif;
  color: #ededee;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
h1, h2, h3, .logo {
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
  background: rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(2px);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 48px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 2px 12px rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
}
.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo {
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
}
.logo span { color: #ffffff; font-weight: 300; opacity: 0.7; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #dddddd;
  font-weight: 500;
  transition: 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}
.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-content { flex: 1.2; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 2rem;
}
.stat-item p:first-child { font-size: 1.8rem; font-weight: 700; color: white; }
.stat-item p:last-child { font-size: 0.8rem; color: #888; }
.hero-image {
  flex: 1;
  background: #0a0a0a;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
  animation: floatHero 4s ease-in-out infinite;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.hero-image:hover {
  transform: scale(1.01);
  border-color: rgba(255,255,255,0.2);
}
@keyframes floatHero {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.project-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2,0.9,0.4,1.1);
}
.project-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-8px) scale(1.02);
  background: #0f0f0f;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
}
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-info {
  padding: 28px;
}
.project-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: gap 0.2s;
}
.project-link:hover { gap: 12px; border-bottom-color: white; }
.services-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.service-card, .why-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 32px;
  transition: all 0.3s ease;
}
.service-card:hover, .why-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}
.service-icon {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0.8;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s;
}
.step:hover { transform: translateY(-5px); }
.step-number {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.05);
  color: white;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.step:hover .step-number {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info, .contact-form {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 36px;
  transition: transform 0.3s;
}
.contact-info:hover, .contact-form:hover { transform: translateY(-3px); }
input, textarea {
  width: 100%;
  padding: 14px 18px;
  background: #000000;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  margin-bottom: 16px;
  color: white;
  font-family: 'Inter', sans-serif;
  transition: 0.2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
}
.social-icons a {
  font-size: 1.4rem;
  color: #aaaaaa;
  margin-right: 20px;
  transition: 0.2s;
}
.social-icons a:hover { color: white; transform: translateY(-2px); display: inline-block; }
footer {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #666;
  font-size: 0.85rem;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.2s;
  z-index: 99;
}
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }
@media (max-width: 850px) {
  .navbar { padding: 16px 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #000000;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 1.2rem;
    text-align: center;
  }
  .nav-links.active { display: flex; }
  .mobile-menu { display: block; }
  .hero { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .container { padding: 0 24px; }
  section { padding: 70px 0; }
  .projects-grid { grid-template-columns: 1fr; }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2,0.9,0.4,1.1), transform 0.7s cubic-bezier(0.2,0.9,0.4,1.1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
::selection {
  background: white;
  color: black;
}
