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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 2rem;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-name {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -3px;
}

.hero-tagline {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: #cccccc;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.btn-primary {
  background: #ffffff;
  color: #000000;
  padding: 1.2rem 3rem;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #cccccc;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 1.2rem 3rem;
  border: 2px solid #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
}

.hero-image {
  position: relative;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(1.2);
  transition: all 0.3s ease;
}

.hero-image:hover img {
  filter: grayscale(0%) contrast(1);
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background: #111111;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

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

.service-card {
  background: #000000;
  padding: 4rem 3rem;
  border: 1px solid #333333;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  background: #222222;
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-desc {
  font-size: 1rem;
  color: #aaaaaa;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-btn {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  border: 2px solid #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: #000000;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.3s ease;
}

.about-image:hover img {
  filter: grayscale(0%) contrast(1);
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background: #111111;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.contact-tagline {
  font-size: 1.5rem;
  color: #aaaaaa;
  margin-bottom: 4rem;
  font-weight: 300;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-item {
  padding: 2rem;
  border: 1px solid #333333;
  background: #000000;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #222222;
  transform: translateY(-5px);
}

.contact-label {
  font-size: 0.8rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-detail {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
}

.final-cta {
  background: #ffffff;
  color: #000000;
  padding: 1.5rem 4rem;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.final-cta:hover {
  background: #cccccc;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: #000000;
  color: #666666;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #333333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
  }

  .hero-name {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    line-height: 0.95;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
  }

  .hero-tagline {
    font-size: clamp(0.7rem, 2vw, 1rem);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }

  .hero {
    padding: 0 1rem;
  }

  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .contact-info {
    grid-template-columns: 1fr;
  }
}
/* Smooth Animations */
html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

.contact-info .contact-item a {
  color: #ffffff;
  text-decoration: none;
}

.contact-info .contact-item a:hover {
  color: #cccccc;
}