* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #0c1d3c;
  color: #fff;
}

header {
  background-color: #0c1d3c;
  padding: 1rem;
  text-align: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  width: 60px;
}

.logo h1 {
  color: #3ac78b;
}

.logo span {
  color: #fff;
  font-weight: 400;
}

.hero {
  text-align: center;
  background-color: #3ac78b;
  padding: 1rem;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-buttons {
  margin-top: 1rem;
}

.call-btn, .whatsapp-btn {
  background-color: #0c1d3c;
  color: white;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.services, .details, .office {
  padding: 2rem 1rem;
  background-color: #ffffff;
  color: #000;
}

.services h2, .details h2, .office h2 {
  margin-bottom: 1rem;
}

.services ul {
  list-style: square;
  padding-left: 1.25rem;
}

.details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.details .text {
  flex: 1 1 60%;
  margin-right: 1rem;
}

.details .image {
  flex: 1 1 35%;
}

.details img {
  max-width: 100%;
  border-radius: 8px;
}

.office a {
  color: #0c1d3c;
  text-decoration: underline;
}

footer {
  background-color: #0c1d3c;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.ambulance-marquee {
  background-color: #002147;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  margin: 0;
}

.ambulance-marquee p {
  display: inline-block;
  padding-left: 100%;
  margin: 0;
  animation: scroll-left 25s linear infinite;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.service-locations {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.service-locations h2 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.location-category h3 {
  cursor: pointer;
  background-color: #005f5f;
  color: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  margin: 1rem 0 0.5rem;
}

.location-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}

.location-list li {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #222;
}

@media (max-width: 600px) {
  .location-list {
    columns: 1;
  }
}

/* ===============================
   ✅ FEEDBACK SECTION STYLES – Enhanced
   =============================== */

#happy-options,
#unhappy-options,
#neutral-options,
#improvement-area {
  background-color: white;
  color: #111;
  padding: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Section Headers */
#happy-options p,
#unhappy-options p,
#neutral-options p,
#improvement-area p {
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Label Styles */
#happy-options label,
#unhappy-options label,
#neutral-options label,
#improvement-area label {
  color: #222;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

/* Checkbox Spacing */
#happy-options input[type="checkbox"],
#unhappy-options input[type="checkbox"],
#neutral-options input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Input Areas */
#happy-options textarea,
#unhappy-options textarea,
#neutral-options textarea,
#improvement-area textarea {
  width: 100%;
  margin-top: 0.5rem;
  color: #111;
  background-color: #fafafa;
  border: 1px solid #aaa;
  border-radius: 6px;
  padding: 0.6rem;
  font-size: 0.95rem;
  resize: vertical;
}

/* ✅ Conditional Feedback Messages */
#thankYouMessage,
#neutralMessage,
#unhappyMessage {
  color: #0c1d3c !important;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1rem;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ✅ Placeholder Styling */
input::placeholder,
textarea::placeholder {
  color: #555 !important;
  font-size: 0.9rem;
}

/* ⭐ Emoji Rating Row – Improve Spacing & Layout */
.rating-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.rating-row label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Highlight selected emoji/star */
.rating-row input[type="radio"]:checked + span {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}
