* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Barlow', sans-serif;
  background-color: #111;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  background: #00bfff;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s ease;
  margin-top: 20px;
}

.btn:hover {
  background: #009acd;
}

.hero {
  background: #000;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 90%;
}

.logo.hero-logo {
  width: 600px;
  max-width: 95%;
  height: auto;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: -5px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .logo.hero-logo {
    width: 350px;
  }
  .tagline {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo.hero-logo {
    width: 280px;
  }
}

section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00bfff;
}

/* Services */
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 200px;
  background-color: #111;
}

@media (max-width: 480px) {
  .service-card img {
    max-height: 160px;
  }
}

.service-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.service-info h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.service-info .price {
  color: #00bfff;
  font-weight: bold;
  margin-bottom: 12px;
}

.service-info ul {
  list-style: disc;
  padding-left: 20px;
  color: #ccc;
  text-align: left;
}

.service-info li {
  margin-bottom: 8px;
}

/* About */
.about {
  background: #121212;
  max-width: 800px;
  margin: auto;
}

.about p {
  font-size: 1.1rem;
  color: #ddd;
}

/* Contact */
.contact {
  background: #1c1c1c;
}

.contact form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #333;
  color: #fff;
  font-size: 1rem;
}

.contact textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
