* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0b0b0d;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

@media (min-width: 900px) {
  .container img{
    margin-left: -10%;
  }
  .logo{
    margin-left: -10%;
  }
  
}

@media (max-width: 400px) {
  .container img{
    margin-left: -10px;
  }
  .logo{
    margin-left: -10px;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(8, 8, 10, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main,
.logo-accent {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-main {
  color: #ffffff;
  display: inline;
}

.logo-accent {
  color: #d6a354;
  display: inline;
}

.logo small {
  margin-top: 6px;
  font-size: 11px;
  color: #bcbcbc;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav ul {
  display: flex;
  gap: 10px;
}

.desktop-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  color: #d9d9d9;
  font-size: 14px;
  transition: 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: #d6a354;
  color: #101010;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #d6a354;
  color: #111111;
}

.btn-primary:hover {
  background: #e5b56a;
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: rgba(8, 8, 10, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav ul {
  padding: 12px 4%;
}

.mobile-nav li a {
  display: block;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8e8e8;
}

.mobile-nav li:last-child a {
  border-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.35));
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(214, 163, 84, 0.18), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(214, 163, 84, 0.12);
  border: 1px solid rgba(214, 163, 84, 0.28);
  color: #f0c987;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-left h1 {
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-left h1 span {
  display: block;
  color: #d6a354;
}

.hero-left p {
  max-width: 700px;
  margin-top: 24px;
  font-size: 17px;
  color: #efefef;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.glass-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  animation: upDown 4.2s ease-in-out infinite;
}

@keyframes upDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.glass-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  position: relative;
  padding: 15px 16px 15px 34px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  color: #ececec;
  font-size: 14px;
}

.why-item::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6a354;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: bounceDown 1.6s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* Sections */
.section {
  padding: 100px 0;
}

.dark-section {
  background: #0d0d10;
}

.section-head {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #d6a354;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section-head h2,
.about-content h2,
.contact-info h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-head p,
.about-content p,
.contact-info p {
  color: #cfcfcf;
  font-size: 16px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 30px;
  border-radius: 28px;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 163, 84, 0.35);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.service-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(214, 163, 84, 0.12);
  font-size: 30px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: #c9c9c9;
}

/* About */
.about-section {
  background: linear-gradient(180deg, #111116 0%, #0d0d10 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
}

.location-card {
  position: absolute;
  right: 24px;
  bottom: -24px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(10, 10, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-card span {
  display: block;
  font-size: 12px;
  color: #b0b0b0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.location-card strong {
  font-size: 20px;
  color: #fff;
}

.stats-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 24px;
  border-radius: 24px;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card h3 {
  font-size: 42px;
  color: #d6a354;
  margin-bottom: 6px;
}

.stat-card p {
  color: #bcbcbc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 360px;
}

.project-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.2), transparent);
}

.project-overlay span {
  color: #f2c47e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.project-overlay h3 {
  font-size: 28px;
  line-height: 1.2;
}

/* Contact */
.contact-section {
  background: #101015;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.info-box {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 22px;
  background: #0c0c11;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-box h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #ffffff;
}

.info-box p,
.info-box a {
  color: #d0d0d0;
}

.contact-form-wrap {
  border-radius: 30px;
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-radius: 18px;
  padding: 15px 16px;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(214, 163, 84, 0.5);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.form-btn {
  width: 100%;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #09090c;
}

.footer-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #b9b9b9;
  font-size: 14px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content,
  .about-grid,
  .contact-grid,
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    max-width: 520px;
  }

  .about-image img {
    height: 460px;
  }
}

@media (max-width: 768px) {
  .desktop-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .logo-main,
  .logo-accent {
    font-size: 22px;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .hero-left p {
    font-size: 15px;
  }

  .section {
    padding: 80px 0;
  }

  .stats-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .glass-card,
  .service-card,
  .contact-form-wrap {
    padding: 22px;
  }

  .about-image img {
    height: 360px;
  }

  .project-card img {
    height: 300px;
  }

  .project-overlay h3 {
    font-size: 22px;
  }
}