* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #05000d;
  color: #fff;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-flex {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-name {
  color: #ff2bdc;   /* brand pink */
}

.logo-domain {
  color: #00f5ff;   /* accent cyan */
  margin-left: 2px;
}

nav a {
  margin: 0 12px;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,43,220,.2), rgba(0,0,0,.9));
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 80px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 28px;
}

.hero p {
  line-height: 1.7;
  margin-bottom: 36px;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.btn-neon {
  background: linear-gradient(90deg, #ff2bdc, #00f5ff);
  color: #000;
}

.btn-outline {
  border: 2px solid #00f5ff;
  background: transparent;
  color: #00f5ff;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2rem;
}

.section.dark {
  background: #020014;
}

/* GRIDS */
.grid {
  display: grid;
  gap: 34px;
}

.equipment-grid,
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARDS */
.card {
  background: #0c0220;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: .3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.tag {
  margin-top: auto;
  padding: 6px 14px;
  background: #00f5ff;
  color: #000;
  border-radius: 20px;
  font-size: .75rem;
}

/* GALLERY */
.gallery-card {
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}

.gallery-card span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,.75);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .85rem;
}

/* CTA */
.cta {
  text-align: center;
  padding: 120px 20px;
  background: radial-gradient(circle, #160032, #020014);
}

.cta p {
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  opacity: .7;
}

/* MOBILE */
@media (max-width:768px) {
  .hero { text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .card img { height: 180px; }
  .gallery-card img { height: 200px; }
}
