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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a1a37, #3669c0);
  color: white;
}

div, section {
  scroll-margin-top: 80px;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: black;
  color: white;
  display: none;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.6;
  background: #f2f2f2;
}

header {
  text-align: center;
  padding: 40px 20px;
  animation: fadeDown 1s ease;
}

header p, header p a {
  color: #aaa;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card,
.bundle-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1s ease;
  cursor: pointer;
}

.bundle-card {
  grid-column: span 2;
}

/* Hidden details (initial state) */
.details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #ddd;
  font-size: 0.85rem;
}

/* Show on hover */
.card:hover .details,
.bundle-card:hover .details {
  opacity: 1;
  max-height: 200px;
  margin-top: 8px;
}

.details ul {
  list-style: none;
  padding-left: 0px;
}

.details li::before {
  content: "✔ ";
  color: #00ff99;
}

.card:hover,
.bundle-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card img,
.bundle-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card h2,
.bundle-card h2 {
  font-size: 1.3rem;
}

.card p,
.bundle-card p {
  color: #bbb;
  font-size: 0.9rem;
  margin-top: 5px;
}

.price {
  color: #00ff99;
  font-weight: bold;
  margin-top: 10px;
}

.notice {
  color: #ffcc00;
  font-size: 0.85rem;
  margin-top: 5px;
}

.card p.notice,
.bundle-card p.notice {
  color: #ffcc00;
}

.upsell {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #00ccff;
}

.note {
  max-width: 700px;
  margin: 20px auto;
  background: #111;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  color: #ffcc00;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.service-section-note {
  max-width: 700px;
  margin: 20px auto;
  background: #111;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.sub-heading {
  color:#aaa; 
  margin-bottom:15px;
}

.contact {
  max-width: 700px;
  margin: 40px auto;
  background: #111;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.service-area {
  max-width: 1000px;
  margin: 40px auto;
  background: #111;
  padding: 20px;
  border-radius: 16px;
  animation: fadeUp 1s ease;
  text-align: center;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

button {
  background: #00ff99;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: #00cc77;
}

.button-empty {
  background: transparent;
  border: 0px solid transparent;
  color: white;
}

.button-empty:hover {
  background: rgba(255, 255, 255, 0.1);
}

iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
}

footer {
  text-align: center;
  color: #777;
  padding: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }
  
  .bundle-card {
    grid-column: span 1;
  }
  
  .card-content {
    padding: 12px;
  }
  
  .card h2,
  .bundle-card h2 {
    font-size: 1.1rem;
  }
  
  .card p,
  .bundle-card p {
    font-size: 0.85rem;
  }
}

/* Map responsiveness */
.map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.map-item {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.map-item h3 {
  margin-bottom: 10px;
  color: #00ff99;
}

input, select, textarea, button {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #4f46e5;
}

form input, form select, form textarea {
  margin-bottom: 10px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.checkbox-group input {
}

.checkbox-group label {
  font-size: 0.95rem;
  line-height: 1.4;
}

form {
  width: 100%;
}
