/* 
 * Bowen Therapy - Custom Premium Theme Stylesheet
 * Integrates with Bootstrap 5
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --primary-green: #55A630;
  --dark-green: #0D3329;
  --muted-sage: #5F746F;
  --light-sage: #E1F3DB;
  --footer-green: #0C5240;
  --hover-green: #3e8320;
  --text-dark: #1E2D29;
  --text-light: #F8FBF7;
  --body-bg: #FFFFFF;
  --section-bg-light: #F4FAF2;
  --card-shadow: 0 10px 30px rgba(13, 51, 41, 0.05);
  --card-shadow-hover: 0 15px 40px rgba(85, 166, 48, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Raleway', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--body-bg);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--dark-green);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--section-bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

/* Sticky Header & Navbar */
.custom-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(13, 51, 41, 0.04);
  transition: var(--transition-smooth);
  padding: 15px 0;
}
.custom-navbar.scrolled {
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.98);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}
.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--dark-green) !important;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
}
.logo-subtext {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--primary-green);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-green) !important;
  padding: 8px 16px !important;
  transition: var(--transition-smooth);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--primary-green);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-green) !important;
}

/* Premium Buttons */
.btn-premium {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}
.btn-premium-primary {
  background-color: var(--primary-green);
  color: #FFFFFF !important;
}
.btn-premium-primary:hover {
  background-color: var(--dark-green);
  box-shadow: 0 8px 25px rgba(85, 166, 48, 0.3);
  transform: translateY(-2px);
}
.btn-premium-secondary {
  background-color: transparent;
  color: var(--dark-green) !important;
  border: 2px solid var(--dark-green);
}
.btn-premium-secondary:hover {
  background-color: var(--dark-green);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}
.btn-premium-white {
  background-color: #FFFFFF;
  color: var(--dark-green) !important;
}
.btn-premium-white:hover {
  background-color: var(--primary-green);
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #F4FAF2 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 120%;
  background: var(--light-sage);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.6;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-image-wrapper img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(13, 51, 41, 0.1);
  border: 8px solid #FFFFFF;
  object-fit: cover;
  width: 100%;
  max-height: 550px;
}
.hero-image-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(13, 51, 41, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}
.hero-image-badge .badge-icon {
  background-color: var(--light-sage);
  color: var(--primary-green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.hero-image-badge h5 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}
.hero-image-badge p {
  font-size: 0.8rem;
  color: var(--muted-sage);
  margin: 0;
}

/* Sections General */
.section-padding {
  padding: 100px 0;
}
.section-title-wrapper {
  margin-bottom: 60px;
}
.section-subtitle {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  display: inline-block;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.section-title-line {
  width: 80px;
  height: 4px;
  background-color: var(--primary-green);
  border-radius: 2px;
  margin-top: 15px;
}
.section-bg-accent {
  background-color: var(--section-bg-light);
}

/* Info Cards & Features */
.feature-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(85, 166, 48, 0.05);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition-smooth);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(85, 166, 48, 0.15);
}
.feature-card:hover::before {
  transform: scaleY(1);
}
.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background-color: var(--light-sage);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}
.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-green);
  color: #FFFFFF;
  transform: rotate(5deg) scale(1.05);
}
.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.feature-card p {
  color: var(--muted-sage);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* App Cards (Applications Block) */
.app-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(85, 166, 48, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-green);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}
.app-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(85, 166, 48, 0.15);
}
.app-card:hover::before {
  transform: scaleX(1);
}
.app-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-sage);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}
.app-card:hover .app-card-icon {
  background-color: var(--primary-green);
  color: #FFFFFF;
  transform: scale(1.1) rotate(5deg);
}
.app-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.4;
}
.app-card p {
  color: var(--muted-sage);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Therapist Intro Section */
.therapist-section {
  position: relative;
  overflow: hidden;
}
.therapist-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.therapist-image-container img {
  border-radius: 30px;
  width: 100%;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
  border: 10px solid #FFFFFF;
}
.therapist-image-container::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--light-sage);
  border-radius: 30px;
  z-index: 1;
}

/* Pricing Section */
.price-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(13, 51, 41, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.popular {
  border: 2px solid var(--primary-green);
}
.price-card.popular::before {
  content: 'CEL MAI APRECIAT';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-green);
  color: #FFFFFF;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(85, 166, 48, 0.2);
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}
.price-header {
  margin-bottom: 30px;
}
.price-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.price-value-wrapper {
  display: flex;
  align-items: baseline;
  margin-top: 15px;
}
.price-val {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-left: 5px;
}
.price-period {
  font-size: 0.9rem;
  color: var(--muted-sage);
  margin-left: 10px;
}
.price-body {
  flex-grow: 1;
  margin-bottom: 35px;
}
.price-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-features-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(13, 51, 41, 0.05);
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-features-list li:last-child {
  border-bottom: none;
}
.price-features-list li i {
  color: var(--primary-green);
  font-size: 1.1rem;
}

/* Trustindex / Google Reviews Slider Integration Design */
.reviews-section {
  background-color: var(--dark-green);
  color: #FFFFFF !important;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.reviews-section h2, .reviews-section .section-subtitle, .reviews-section p {
  color: #FFFFFF !important;
}
.review-card {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px;
  color: #FFFFFF;
  height: 100%;
  transition: var(--transition-smooth);
}
.review-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--light-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-green);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.reviewer-name {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  color: #FFFFFF;
}
.reviewer-source {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-stars {
  color: #FFC107;
  font-size: 0.95rem;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  font-style: italic;
}
.google-reviews-badge {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.google-logo {
  color: #FFFFFF;
  font-size: 1.3rem;
}

/* Reviews Slider Carousel Controls Alignment */
.reviews-carousel-container {
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.reviews-carousel-container .carousel-control-prev {
  left: 0;
  width: 50px;
  opacity: 0.8;
}
.reviews-carousel-container .carousel-control-next {
  right: 0;
  width: 50px;
  opacity: 0.8;
}
.reviews-carousel-container .carousel-control-prev:hover,
.reviews-carousel-container .carousel-control-next:hover {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .reviews-carousel-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .reviews-carousel-container .carousel-control-prev {
    left: -10px;
    width: 40px;
  }
  .reviews-carousel-container .carousel-control-next {
    right: -10px;
    width: 40px;
  }
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--footer-green) 100%);
  border-radius: 30px;
  padding: 80px 60px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(12, 82, 64, 0.15);
}
.cta-banner h2, .cta-banner p {
  color: #FFFFFF !important;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(30deg);
  pointer-events: none;
}

/* Blog Cards */
.blog-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(13, 51, 41, 0.05);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}
.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}
.blog-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-green);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(85, 166, 48, 0.2);
}
.blog-content {
  padding: 30px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--muted-sage);
  margin-bottom: 15px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 700;
}
.blog-title a {
  color: var(--dark-green);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.blog-title a:hover {
  color: var(--primary-green);
}
.blog-excerpt {
  font-size: 0.9rem;
  color: var(--muted-sage);
  margin-bottom: 20px;
}
.blog-link {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}
.blog-link:hover {
  color: var(--dark-green);
  gap: 12px;
}

/* Article / Post Content Styles (CKEditor output) */
.post-text img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 1.5rem auto;
}
.post-text p {
  margin-bottom: 1.25rem;
}
.post-text h2,
.post-text h3,
.post-text h4 {
  color: var(--dark-green);
  font-family: var(--font-headings);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post-text ul,
.post-text ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-text li {
  margin-bottom: 0.4rem;
}
.post-text blockquote {
  border-left: 4px solid var(--primary-green);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background-color: var(--section-bg-light);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--muted-sage);
}
.post-text a {
  color: var(--primary-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-text a:hover {
  color: var(--dark-green);
}

/* Sidebar Elements (Blog & Pages) */
.sidebar-widget {
  background-color: var(--section-bg-light);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(85, 166, 48, 0.05);
}
.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: 2px;
}
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li {
  margin-bottom: 12px;
}
.category-list li:last-child {
  margin-bottom: 0;
}
.category-list a {
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.category-list a:hover {
  color: var(--primary-green);
  padding-left: 5px;
}
.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.recent-post-item:last-child {
  margin-bottom: 0;
}
.recent-post-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}
.recent-post-info h5 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  line-height: 1.3;
}
.recent-post-info h5 a {
  color: var(--dark-green);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.recent-post-info h5 a:hover {
  color: var(--primary-green);
}
.recent-post-date {
  font-size: 0.75rem;
  color: var(--muted-sage);
}

/* Footer Styles */
.custom-footer {
  background-color: var(--footer-green);
  color: #FFFFFF;
  position: relative;
}
.footer-top {
  padding: 90px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.footer-logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin: 0;
}
.footer-about-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
.footer-social-links {
  display: flex;
  gap: 12px;
}
.footer-social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-social-links a:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
}
.footer-title {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--primary-green);
  transform: translateX(4px);
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}
.footer-contact-list li i {
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-top: 4px;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-contact-list a:hover {
  color: var(--primary-green);
}
.footer-newsletter-form {
  position: relative;
  margin-top: 15px;
}
.footer-newsletter-form input {
  width: 100%;
  padding: 14px 20px;
  padding-right: 60px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter-form input:focus {
  border-color: var(--primary-green);
  background-color: rgba(255, 255, 255, 0.08);
}
.footer-newsletter-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 44px;
  height: 44px;
  background-color: var(--primary-green);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.footer-newsletter-btn:hover {
  background-color: var(--hover-green);
}
.footer-bottom {
  padding: 25px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Accordion Custom Styling */
.custom-accordion .accordion-item {
  border: 1px solid rgba(13, 51, 41, 0.05);
  border-radius: 16px !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background-color: #FFFFFF;
  transition: var(--transition-smooth);
}
.custom-accordion .accordion-item:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(85, 166, 48, 0.15);
}
.custom-accordion .accordion-button {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--dark-green);
  padding: 22px 25px;
  background-color: #FFFFFF;
  box-shadow: none !important;
  border: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-green);
  background-color: var(--section-bg-light);
}
.custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d3329'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2355a630'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.custom-accordion .accordion-body {
  padding: 25px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-sage);
  border-top: 1px solid rgba(13, 51, 41, 0.05);
}

/* Contact Info Box */
.contact-info-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(13, 51, 41, 0.05);
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--light-sage);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.contact-info-item:hover .contact-icon-box {
  background-color: var(--primary-green);
  color: #FFFFFF;
  transform: scale(1.05);
}
.contact-info-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-info-text p {
  color: var(--muted-sage);
  margin: 0;
  font-size: 0.95rem;
}
.contact-info-text a {
  color: var(--muted-sage);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.contact-info-text a:hover {
  color: var(--primary-green);
}

/* Contact Form Box */
.contact-form-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 45px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(13, 51, 41, 0.05);
}
.form-group-custom {
  margin-bottom: 25px;
}
.form-group-custom label {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark-green);
  margin-bottom: 8px;
  display: block;
}
.form-control-custom {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(13, 51, 41, 0.1);
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  background-color: #FDFDFD;
}
.form-control-custom:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(85, 166, 48, 0.08);
  background-color: #FFFFFF;
}
textarea.form-control-custom {
  min-height: 150px;
  resize: vertical;
}

/* Page Header (Inner Pages) */
.inner-page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--footer-green) 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.inner-page-header h1, .inner-page-header .breadcrumb-item a, .inner-page-header .breadcrumb-item {
  color: #FFFFFF !important;
}
.inner-page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(30deg);
}
.breadcrumb-custom {
  background-color: transparent;
  padding: 0;
  margin: 15px 0 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5) !important;
  content: "\f105";
  font-family: 'Font Awesome 7 Pro', 'Font Awesome 6 Pro', 'Font Awesome 6 Free', 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
}
.breadcrumb-item a {
  text-decoration: none;
  transition: var(--transition-smooth);
}
.breadcrumb-item a:hover {
  color: var(--primary-green) !important;
}
.breadcrumb-item.active {
  color: var(--primary-green) !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s forwards ease-out;
}

/* Floating Push Notification Bell Widget */
.push-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.push-widget-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(12, 82, 64, 0.85); /* sage-green transparent */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.push-widget-btn:hover {
  transform: scale(1.1) translateY(-3px);
  background: rgba(85, 166, 48, 0.9); /* primary-green transparent */
  box-shadow: 0 15px 35px rgba(85, 166, 48, 0.4);
}

.push-widget-btn:active {
  transform: scale(0.95);
}

.push-widget-btn.subscribed {
  background: rgba(85, 166, 48, 0.95);
  box-shadow: 0 10px 30px rgba(85, 166, 48, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.push-widget-btn.subscribed i {
  animation: none;
}

.push-widget-btn.disabled {
  background: rgba(100, 116, 139, 0.85);
  cursor: not-allowed;
  opacity: 0.8;
}

.push-widget-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  background-color: #ff5f00;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
}

.push-widget-btn.subscribed .push-widget-badge {
  background-color: #22c55e;
}

@keyframes bellRing {
  0%, 100% { transform: rotate(0); }
  20%, 60% { transform: rotate(15deg); }
  40%, 80% { transform: rotate(-15deg); }
}

.push-widget-btn:not(.subscribed):not(.disabled) i {
  animation: bellRing 3s infinite ease-in-out;
  transform-origin: top center;
}

.push-widget-tooltip {
  position: absolute;
  right: 80px;
  background: rgba(15, 23, 42, 0.9);
  color: #FFFFFF;
  padding: 8px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.push-widget-container:hover .push-widget-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .push-widget-container {
    bottom: 20px;
    right: 20px;
  }
  .push-widget-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .push-widget-tooltip {
    display: none;
  }
}
