:root {
  --navbar-bg: #ffffff;
  --box-shadow: rgba(0, 0, 0, 0.05);
  --notification-badge: red;
  --card-bg: #fff;
  --card-text: #333;
  --hover-bg: linear-gradient(to top right, #c92056, #ff758c);
  --hover-text: #fff;
  --divider-color: #c92056;
  --slogan-color: #333;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: linear-gradient(to right, #f8f9fa, #e0f7fa);
  color: var(--card-text);
}

/* Navbar */
.navbar-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--navbar-bg);
  box-shadow: 0 2px 12px var(--box-shadow);
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-img {
  height: 150px;
  width: auto;
  transition: height 0.3s ease;
}
.navbar-left,
.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-center {
  flex-grow: 1;
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto;
}
.promo-text {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #ff6600;
}
.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.navbar-toggler .bar {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .logo-img { height: 100px; }
  .navbar-center { order: 3; width: 100%; display: none; }
  .navbar-toggler { display: flex; order: 2; }
  .navbar-left { order: 1; }
  .navbar-right { order: 4; }
}
@media (max-width: 480px) {
  .logo-img { height: 50px; }
}
.navbar-center.active { display: block; margin-top: 0.5rem; }

/* Notification badge */
.notification-icon { position: relative; }
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--notification-badge);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 6px;
  border-radius: 50%;
}

/* Hero */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://via.placeholder.com/1500x500/c92056/ffffff?text=Your+Trusted+Home+Care') 
              no-repeat center center/cover;
  color: white;
  padding: 40px 0;  /* Reduced from 80px to 40px */
  text-align: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}


/* About section */
.about-section { padding: 60px 0; }
.about-section h2 {
  color: #c92056;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.about-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #e62a72;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12); }
.card-body { padding: 30px; }
.card-icon {
  font-size: 2.5rem;
  color: #c92056;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

/* List */
.list-group-item {
  border: none;
  padding-left: 0;
  color: #555;
}
.list-group-item i {
  color: #e62a72;
  margin-right: 10px;
}

/* Footer */
footer {
  background-color: #343a40;
  color: white;
  padding: 40px 0;
  font-size: 0.9rem;
  text-align: center;
}
footer a { color: #e62a72; text-decoration: none; }
footer a:hover { text-decoration: underline; }
