/* style.css */
:root {
  --primary-color: hsl(280, 70%, 30%);
  /* Deep Purple */
  --primary-hover: hsl(280, 70%, 40%);
  --gold-accent: hsl(45, 100%, 50%);
  --gold-hover: hsl(45, 90%, 45%);
  --background-hero: linear-gradient(135deg, hsl(280, 70%, 30%) 0%, hsl(280, 60%, 35%) 100%);
  --text-primary: #333333;
  --text-muted: #666666;
  /* --bg-secondary: #fdfaff; */
  --bg-secondary: #f3dcff;
  /* very light purple/grey */
  --shadow-elegant: 0 10px 40px -10px rgba(85, 23, 130, 0.2);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
}

/* Navbar */
.navbar-custom {
  background-color: hsla(280, 70%, 30%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  padding: 0.5rem 0.8rem;
  margin: 0 0.2rem;
  position: relative;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #fff;
  background: transparent;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 70%;
}

@media (max-width: 991.98px) {
  .navbar-custom .nav-link::after {
    left: 0.8rem;
    transform: none;
  }

  .navbar-custom .nav-link:hover::after,
  .navbar-custom .nav-link.active::after {
    width: 60px;
  }
}

.navbar-brand img {
  height: 52px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

.header-call-btn {
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4) !important;
}

/* Buttons */
.btn-gold {
  background-color: var(--gold-accent);
  color: hsl(280, 70%, 15%);
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  color: hsl(280, 70%, 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 170, 0, 0.4);
}

p {
  font-size: 1rem;
  letter-spacing: 1.5;
}

li {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: var(--background-hero);
  color: #fff;
  overflow: hidden;
  padding: 5rem 0 8rem 0;
}

.hero-section .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../src/assets/hero-medical.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Benefit Cards */
.benefit-card {
  border: 2px solid #eaeaea;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-elegant);
}

.benefit-icon {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Generic Sections */
.bg-secondary-custom {
  /* background-color: var(--bg-secondary); */
  background-color: #672389;
}

.text-primary-custom {
  color: var(--primary-color);
}

.text-gold {
  color: var(--gold-accent);
}

/* Why Choose Icon Circles */
.icon-circle {
  width: 64px;
  height: 64px;
  /* background: linear-gradient(77deg, hsl(280deg 48.36% 76.92%) 0%, hsl(280, 86%, 58%) 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto 1rem auto; */
  color: #fff;
  font-size: 2rem;
}

/* Stars */
.text-gold-star {
  color: #fbbf24;
}

/* Testimonial Cards */
.testimonial-card {
  border: 2px solid #eaeaea;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-elegant);
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #662289;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

button.accordion-button.collapsed.fw-bold.rounded.bg-secondary-custom {
  color: #ffffff;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #fff;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--gold-accent);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}