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

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(28, 29, 29, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 15px 50px;
  background: rgba(28, 29, 29, 0.95);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #eb6301 0%, #ff8534 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #eb6301 0%, #eb6301 100%);
  transition: width 0.3s;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.hero-logo {
  width: 50%;
  max-width: 800px;
}

.hero-logo object {
  width: 100%;
  height: auto;
}

.hero-strong {
  color: #eb6301;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

.hero-text {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

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

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #eb6301 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 24px;
  color: #aaaaaa;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #eb6301 0%, #ff8534 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  animation: fadeInUp 1s ease-out 0.4s both;
  box-shadow: 0 10px 30px rgba(235, 99, 1, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(235, 99, 1, 0.5);
}

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

/* Section Styles */
section {
  padding: 100px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #eb6301 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.portfolio-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  box-shadow: 0 0 0 2px #eb6301, 0 0 20px rgba(235, 99, 1, 0.3);
}

.portfolio-item:hover .portfolio-video iframe {
  transform: scale(1.05);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.portfolio-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-info p {
  font-size: 14px;
  color: #e0e0e0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(235, 99, 1, 0.5);
  transform: translateY(-5px);
}

.service-icon {
  width: 48px;
  height: 48px;
  font-size: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon object {
  width: 100%;
  height: 100%;
  display: block;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.service-card p {
  color: #aaaaaa;
  line-height: 1.6;
}

/* Contact */
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  font-size: 18px;
  color: #aaaaaa;
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.contact-item {
  font-size: 18px;
  color: #ffffff;
}

.contact-item a {
  color: #eb6301;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Footer */
footer {
  padding: 40px 50px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 18px;
  }

  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 36px;
  }

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