:root {
  --bg: #0b1208;
  --text: #fff;
  --accent: #d4af37;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1208, #0f1a0f);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* PARTICLES */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.nav-logo img {
  height: 38px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 1.3rem;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #2ecc71);
  transition: width 0.35s ease;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #d4af37;
  transition: 0.4s;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 6%;
    background: #0b1224;
    flex-direction: column;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 198, 255, 0.3);
    transform: scale(0);
    transform-origin: top right;
    transition: transform 0.4s ease;
  }

  .nav-links.active {
    transform: scale(1);
  }

  .hamburger {
    display: flex;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 5%;
  z-index: 1;
  position: relative;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: transform 0.3s;
}
.hero-image img:hover {
  transform: scale(1.05);
}
.hero-text h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}
.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* BUTTON */
.btn,
.btn-hero {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  background: linear-gradient(90deg, #d4af37, #2ecc71);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 198, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn:hover,
.btn-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 198, 255, 0.6);
}

/* Optional: Animated gradient hover */
.btn::before,
.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  border-radius: 25px;
}

.btn:hover::before,
.btn-hero:hover::before {
  transform: translateX(100%);
}

/* SERVICES */
.service-detail {
  padding: 60px 5%;
  max-width: 1000px;
  margin: auto;
  z-index: 1;
  position: relative;
}
.service-detail h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  text-align: center;
}
.service-detail p,
.service-detail ul {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.service-detail ul {
  padding-left: 20px;
}

/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
  padding: 120px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #0b1208, #0f1a0f);
}

/* Center container */
.coming-soon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glass Card */
.coming-soon-card {
  max-width: 520px;
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 198, 255, 0.25);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Hover animation */
.coming-soon-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 45px 120px rgba(0, 198, 255, 0.45);
}

/* Heading */
.coming-soon-card h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #cddbdf, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.coming-soon-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #d4af37, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Icon */
.coming-soon-card h2 i {
  font-size: 2.2rem;
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.6));
  transition: transform 0.4s ease;
}

/* Icon hover animation */
.coming-soon-card:hover h2 i {
  transform: rotate(15deg) scale(1.15);
}


/* Text */
.coming-soon-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Glow ring on hover */
.coming-soon-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(90deg, #d4af37, #2ecc71);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.coming-soon-card:hover::after {
  opacity: 0.6;
}


/* BUTTON */
.btn {
  padding: 10px 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, #d4af37, #2ecc71);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px 5%;
  font-size: 0.9rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    right: 5%;
    top: 65px;
    padding: 20px;
    border-radius: 10px;
  }
  .nav-links.active {
    display: flex;
  }
  .burger {
    display: flex;
  }
}


.contact-section {
  padding: 100px 6%;
  background: radial-gradient(circle at top, #0b1208, #0f1a0f);
  color: #fff;
  text-align: center;
  position: relative;
}

/* Heading */
.contact-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* Wrapper Flex */
.contact-wrapper {
  display: flex;
  gap: 160px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT: Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  padding: 45px 35px;
  border-radius: 25px;
  width: 400px;
  box-shadow: 0 18px 50px rgba(0, 198, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0, 198, 255, 0.25);
}

/* Floating labels */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
  resize: none;
  transition: all 0.3s ease;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 0.8rem;
  color: #d4af37;
}

/* Button */
.contact-btn {
  width: 100%;
  padding: 15px 0;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #d4af37, #2ecc71);
  box-shadow: 0 5px 25px rgba(0, 198, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 35px rgba(0, 198, 255, 0.35);
  background: linear-gradient(90deg, #2ecc71, #d4af37);
}

/* RIGHT: Contact Info + Socials */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 3rem;
  text-align: left;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.info-item i {
  font-size: 1.5rem;
  color: #d4af37;
  transition: all 0.3s ease;
}

.info-item:hover i {
  transform: scale(1.2);
}

/* Social Icons */
.contact-socials {
  display: flex;
  margin-top: 2rem;
  gap: 15px;
  justify-content: flex-start;
}

.social-link {
  font-size: 1.6rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #d4af37;
  transform: translateY(-3px) scale(1.1);
  background: rgba(0, 198, 255, 0.12);
}

/* Responsive */
@media (max-width: 950px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .contact-form {
    width: 77%;
  }

  .contact-info-wrapper {
    align-items: center;
    text-align: center;
  }

  .contact-socials {
    justify-content: center;
  }
}

