* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #070a12;
  color: white;
}

.hero {
  min-height: 100vh;
  padding: 28px 7%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 77, 0, 0.28), transparent 30%),
    linear-gradient(rgba(5, 10, 20, 0.75), rgba(5, 10, 20, 0.9)),
    url("city.jpg");
  background-size: cover;
  background-position: center;
}

.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  height: 78px;
  padding: 0 26px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 8, 18, 0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.nav-logo span {
  display: block;
  font-size: 23px;
  font-weight: 900;
}

.nav-logo small {
  display: block;
  color: #ff4d00;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}

.nav-links a:hover {
  color: #ff4d00;
}

.nav-button,
.main-btn,
.ghost-btn {
  padding: 15px 26px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  font-size: 16px;
}

.nav-button,
.main-btn {
  background: #ff4d00;
  color: white;
  box-shadow: 0 0 30px rgba(255, 77, 0, 0.45);
}

.ghost-btn {
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}

.hero-content {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 110px;
}

.hero-text {
  max-width: 780px;
}

.tag {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffd7c2;
  font-weight: 800;
  letter-spacing: 1px;
}

h1 {
  font-size: 74px;
  line-height: 0.95;
  margin: 26px 0;
  letter-spacing: -3px;
}

.subtitle {
  font-size: 21px;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 36px;
}

.stats {
  display: flex;
  gap: 18px;
  margin-top: 42px;
}

.stats div {
  width: 170px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.stats h3 {
  margin: 0;
  font-size: 28px;
  color: #ff4d00;
}

.stats p {
  margin: 5px 0 0;
  color: #cbd5e1;
  font-size: 14px;
}

.services,
.work,
.cinematic-section,
.about-section,
.contact-info {
  padding: 120px 7%;
  background: #070a12;
}

.services h2,
.section-head h2,
.cinematic-text h2,
.about-content h2,
.contact-info h2 {
  font-size: 52px;
  line-height: 1.05;
  max-width: 850px;
  margin: 20px 0 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255,77,0,0.12);
}

.service-card h3 {
  font-size: 22px;
}

.service-card p,
.section-head p,
.cinematic-text p,
.about-content p,
.contact-info p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.cinematic-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 77, 0, 0.18), transparent 30%),
    #070a12;
}

.cinematic-text {
  max-width: 850px;
  margin-bottom: 55px;
}

.cinematic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 24px;
  align-items: center;
}

.cinematic-grid video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 34px;
  filter: brightness(0.75) contrast(1.08);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.cinematic-grid video:nth-child(2) {
  height: 430px;
  margin-top: 70px;
}

.cinematic-grid video:nth-child(3) {
  height: 480px;
}

.section-head {
  max-width: 800px;
}

.work-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.work-card {
  position: relative;
  overflow: hidden;
  height: 520px;
  border-radius: 34px;
  cursor: pointer;
  background: #111827;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  transition: 0.35s;
}

.work-card:hover {
  transform: translateY(-12px);
}

.work-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  display: block;
}

.work-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}

.work-overlay h3 {
  margin: 0;
  font-size: 28px;
}

.watch-btn {
  margin-top: 10px;
  background: rgba(255, 77, 0, 0.95);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(255, 77, 0, 0.4);
}

.about-content {
  max-width: 950px;
  margin: auto;
  padding: 50px;
  border-radius: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-info {
  text-align: center;
}

.contact-info h2 {
  margin-left: auto;
  margin-right: auto;
}

.contact-info a,
.footer a {
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.contact-info a:hover,
.footer a:hover {
  color: #ff4d00;
}

.work-modal,
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.work-modal-card,
.popup-card {
  position: relative;
  background: rgba(255,255,255,0.97);
  color: #111827;
  padding: 36px;
  border-radius: 30px;
  width: 100%;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.work-modal-card {
  max-width: 620px;
  text-align: center;
}

.work-modal-card video {
  width: 100%;
  max-height: 560px;
  border-radius: 24px;
  margin-top: 18px;
  background: black;
}

.popup-card {
  max-width: 440px;
}

.work-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}

.work-controls button {
  background: #ff4d00;
  color: white;
  border: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

textarea {
  height: 115px;
}

.popup-card button[type="submit"] {
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #ff4d00;
  color: white;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}

.success-message {
  display: none;
  margin-top: 18px;
  color: #16a34a !important;
  font-weight: 900;
  text-align: center;
}

.footer {
  text-align: center;
  padding: 80px 20px;
  background: #05070d;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.footer p {
  color: #9ca3af;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 25px 0;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.social-links a:hover {
  color: #ff4d00;
}

.copyright {
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .service-grid,
  .work-grid,
  .cinematic-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .stats,
  .social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 18px 22px;
    min-height: 100vh;
  }

  .navbar {
    width: 92%;
    height: auto;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .nav-logo img {
    width: 38px;
    height: 38px;
  }

  .nav-logo span {
    font-size: 18px;
  }

  .nav-logo small {
    font-size: 8px;
  }

  .nav-links {
    display: none;
  }

  .nav-button {
    padding: 11px 16px;
    font-size: 12px;
  }

  .hero-content {
    padding-top: 130px;
  }

  h1 {
    font-size: 43px;
    letter-spacing: -1.5px;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .main-btn,
  .ghost-btn {
    width: 100%;
    text-align: center;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stats div {
    width: 100%;
  }

  .services,
  .work,
  .cinematic-section,
  .about-section,
  .contact-info {
    padding: 80px 22px;
  }

  .services h2,
  .section-head h2,
  .cinematic-text h2,
  .about-content h2,
  .contact-info h2 {
    font-size: 36px;
  }

  .cinematic-grid video,
  .cinematic-grid video:nth-child(2),
  .cinematic-grid video:nth-child(3) {
    height: 420px;
    margin-top: 0;
  }

  .work-card {
    height: 520px;
  }

  .work-card video {
    opacity: 1;
    filter: brightness(0.7);
    display: block;
  }

  .watch-btn {
    font-size: 14px;
    padding: 12px 18px;
  }

  .about-content {
    padding: 28px;
  }

  .work-modal-card,
  .popup-card {
    padding: 28px;
  }
}