body {
  background-color: #0f0f12;
  color: #f0f0f5;
  font-family: 'Segoe UI', system-ui, sans-serif;
  margin: 0;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: #18181c;
  border-bottom: 2px solid #ff007f;
}

.logo {
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.logo span {
  color: #00f2fe;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: #e1e1e6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ff007f;
}

.hero {
  text-align: center;
  padding: 5rem 1rem;
  background: linear-gradient(180deg, #18181c 0%, #0f0f12 100%);
}

.hero h1 {
  font-size: 3.5rem;
  margin: 0;
  color: #00f2fe;
  text-transform: uppercase;
}

.tagline {
  font-size: 1.2rem;
  color: #ff007f;
  font-weight: bold;
  letter-spacing: 4px;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #ff007f;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #e0006c;
}

.formats-section, .services-section, .quote-section {
  padding: 4rem 10%;
  text-align: center;
}

.formats-grid, .services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.card, .service-box {
  background: #18181c;
  border: 1px solid #2a2a30;
  padding: 2rem;
  border-radius: 12px;
  width: 280px;
  position: relative;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #00f2fe;
  color: #0f0f12;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 10px;
}

.quote-form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #323238;
  background: #18181c;
  color: white;
  box-sizing: border-box;
}

.quote-form textarea {
  width: 100%;
  height: 120px; 
  resize: none;  
  box-sizing: border-box;
}

.submit-btn {
  padding: 1rem;
  background: #00f2fe;
  color: #0f0f12;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  background: #18181c;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #2a2a30;
  font-size: 0.9rem;
}

.about-section {
  padding: 4rem 10%;
  display: flex;
  justify-content: center;
}

.about-card {
  background: #18181c;
  border: 1px solid #323238;
  border-left: 4px solid #00f2fe; 
  border-radius: 12px;
  padding: 2.5rem 3rem;
  max-width: 800px;
  width: 100%;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-card h2 {
  margin-top: 0;
  color: #00f2fe;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.about-card p {
  color: #e1e1e6;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a30;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #121214;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff007f;
  border: 1px solid #2a2a30;
}