/* ===== CUSTOM CSS VARIABLES ===== */
:root {
  /* Brand Foundations - VIBRANT */
  --color-primary: #1B92D0;      /* Ocean Blue - Vibrant & Fresh */
  --color-secondary: #1A6B4A;    /* Forest Deep - Slightly Brighter */
  --color-accent: #FCA11B;       /* Sun Orange - Vibrant & Energetic */
  
  /* Neutrals & Backgrounds */
  --color-bg-body: #FBFAF5;      /* Cream */
  --color-bg-surface: #FFFFFF;   /* White */
  --color-bg-subtle: #A8D5DC;    /* Mist Blue - Brighter */
  
  /* Text */
  --color-text-main: #1A3A2F;    /* Dark Forest - Deeper */
  --color-text-muted: #3E4A52;   /* Dark Slate */
  --muted-text: var(--color-text-muted);
  --muted: var(--color-text-muted);
  
  /* Functional - MORE VIBRANT */
  --color-link: #1B92D0;         /* Ocean Blue */
  --color-success: #52A934;      /* Brighter Leaf Green */
  --color-warning: #FCA11B;      /* Sun Orange */
  --color-highlight: #FEE153;    /* Morning Yellow - Bright */
  --color-border: #7F8082;       /* Stone Gray */

  /* Bootstrap 5 Overrides to Ensure System-Wide Consistency */
  --bs-primary: var(--color-primary);
  --bs-secondary: var(--color-secondary);
  --bs-success: var(--color-success);
  --bs-info: var(--color-bg-subtle);
  --bs-warning: var(--color-warning);
  --bs-danger: var(--color-warning);
  --bs-body-bg: var(--color-bg-body);
  --bs-body-color: var(--color-text-main);
  --bs-link-color: var(--color-link);
  --bs-link-hover-color: var(--color-primary);

  /* Legacy Mappings to Maintain Layout Structure */
  --beacon-blue: var(--color-primary);
  --radiant-white: var(--color-bg-body);
  --horizon-aqua: var(--color-bg-subtle);
  --harbor-gray: var(--color-text-muted);
  --sunrise-coral: var(--color-warning);
  --golden-beam: var(--color-accent);
  --beacon-red: var(--color-warning);
  --harbor-rose: var(--color-highlight);
  
  /* Text & Utility Aliases */
  --text-color: var(--color-text-main);
  --dark-text: var(--color-text-main);
  --muted: var(--color-text-muted);
  --muted-text: var(--color-text-muted);
  
  --radius: 12px;
  --container-max: 1180px;
  --shadow-soft: 0 12px 36px rgba(32, 91, 61, 0.08); /* Adjusted shadow to forest green tint */
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.3;
}

h2 {
  font-size: 2.75rem !important; /* Slightly increased font size for h2 */
}

.muted {
  color: #3E4A52 !important; /* Dark slate for readable secondary text */
}

.container-narrow {
  max-width: 1200px;
}

.section {
  padding: 4rem 0;
}

.section {
  background-color: var(--radiant-white) !important;
}

/* ===== ANIMATIONS ===== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== NAVIGATION ===== */
.navbar.nav-plain {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  text-decoration: none;
  color: var(--dark-text) !important;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--beacon-blue), var(--horizon-aqua));
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.brand-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted-text);
  line-height: 1.2;
}

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--beacon-blue) !important;
}

/* ===== BUTTONS ===== */
.btn-cta, .btn-primary-cta {
  background: var(--color-accent);
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(252, 161, 27, 0.3);
}

.btn-cta:hover, .btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(252, 161, 27, 0.5);
  background: #FF9500;
  color: white;
}

.btn-outline-cta, .btn-outline-primary-cta {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-cta:hover, .btn-outline-primary-cta:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(27, 146, 208, 0.3);
}

.btn-secondary-cta {
  background: var(--muted-text);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-cta:hover {
  background: var(--dark-text);
  color: white;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 12rem 0 6rem;
  overflow: hidden;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: -1;
}

.hero-section .content {
  position: relative;
  z-index: 2;
}

/* Call button in hero: white for contrast on banner images */
.hero-section .btn-outline-primary-cta {
  background: white;
  color: var(--text-color);
  border-color: white;
}

.hero-section .btn-outline-primary-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-color);
  border-color: white;
}

.eyebrow {
  background: linear-gradient(135deg, var(--beacon-red));
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-heading .accent {
  color: var(--golden-beam);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--muted-text);
  margin-bottom: 2rem;
}

.badge-pill {
  background: white;
  color: var(--dark-text);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #e9ecef;
  display: inline-block;
}

.hero-badges .badge-pill {
  margin: 0.25rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f3f4;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.icon-square {
  width: 48px;
  height: 48px;
  background: var(--beacon-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Alternating icon background colors */
.col-md-4:nth-child(1) .service-card .icon-square { background: var(--beacon-blue); }
.col-md-4:nth-child(2) .service-card .icon-square { background: var(--horizon-aqua); }
.col-md-4:nth-child(3) .service-card .icon-square { background: var(--sunrise-coral); }
.col-md-4:nth-child(4) .service-card .icon-square { background: var(--golden-beam); }
.col-md-4:nth-child(5) .service-card .icon-square { background: var(--beacon-red); }
.col-md-4:nth-child(6) .service-card .icon-square { background: var(--harbor-rose); }

/* ASAM section specific icon colors */
.icon-square.icon-green  { background: #52A934 !important; }
.icon-square.icon-blue   { background: #1B92D0 !important; }
.icon-square.icon-orange { background: #FCA11B !important; }

/* Styling for Bootstrap icons */
.icon-square i {
  font-size: 24px;
  color: #fff;
}

.service-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-text);
}

/* ===== WHY CARDS ===== */
.why-card {
  text-align: center;
  padding: 2rem 1rem;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  font-size: 24px;
  color: white;
}

.why-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  background: linear-gradient(135deg, var(--beacon-blue), var(--horizon-aqua));
  color: white;
  padding: 8rem 1.2rem !important; /* Increased padding to make the section taller */
}

.cta-section h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-final {
  background: var(--soft-gray);
  border-top: 3px solid var(--beacon-blue);
}


/* ===== WHO WE ARE ===== */
#who {
    background-color: var(--beacon-blue) !important; /* Replace with your desired color */
    color: var(--radiant-white); /* Apply radiant white color to all text inside the #who section */
}


.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: var(--radiant-white);
    border-radius: 50%;
    margin-right: 8px;
}

.icon-circle i {
    color: var(--beacon-red);
    font-size: 16px;
}

/* ===== GALLERY CARD ===== */
.gallery-card {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-card .card-body {
  padding: 2rem;
}

/* ===== LIST STYLES ===== */
.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.list-check li::before {
  content: "✓";
  color: var(--beacon-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.badges-list .badge-pill {
  background: var(--beacon-blue);
  color: white;
  border: none;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f3f4;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-quote::before {
  content: "\201C";
  font-size: 2rem;
  color: var(--beacon-blue);
  margin-right: 0.5rem;
}

.testimonial-quote::after {
  content: "\201D";
  font-size: 2rem;
  color: var(--beacon-blue);
  margin-left: 0.5rem;
}

/* ===== FOUNDER SECTION ===== */
.founder-photo {
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ===== CONTACT CARD ===== */
.contact-card {
  background: white;
  border: 2px solid var(--beacon-blue);
}

.contact-card h5 {
  color: var(--beacon-blue);
  font-weight: 600;
}

/* ===== ACCORDION ===== */
.accordion-button {
  background-color: white;
  color: var(--dark-text);
  font-weight: 600;
  border: none;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--beacon-blue);
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--beacon-blue);
}

.accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #f8f9fa;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-color);
  color: var(--radiant-white);
  padding: 3rem 0;
}

.site-footer h5,
.site-footer h6,
.site-footer p,
.site-footer a,
.site-footer .small {
  color: var(--radiant-white) !important;
  text-align: left;
}

.site-footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--horizon-aqua) !important;
  text-decoration: underline;
}

.site-footer .footer-links {
  margin-top: 1rem;
}

/* ===== ENHANCED FOOTER STYLES ===== */
.footer-heading {
  color: var(--radiant-white) !important;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
  text-align: left !important;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--horizon-aqua);
}

.footer-links {
  list-style: none;
  padding: 0;
  text-align: left !important;
}

.footer-links li {
  margin-bottom: 0.5rem;
  text-align: left !important;
}

.footer-links a {
  color: var(--radiant-white) !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-align: left !important;
}

.footer-links a:hover {
  color: var(--horizon-aqua) !important;
  text-decoration: underline;
}

.contact-info .small {
  margin-bottom: 0.25rem;
  color: var(--radiant-white) !important;
  text-align: left !important;
}

.concern-links {
  text-align: left !important;
}

.concern-links ul {
  text-align: left !important;
}

.concern-links a {
  color: var(--radiant-white) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.concern-links a:hover {
  color: var(--horizon-aqua) !important;
  text-decoration: underline;
}

.legal-links {
  text-align: left !important;
}

.legal-links a {
  color: var(--radiant-white) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--horizon-aqua) !important;
  text-decoration: underline;
}

.site-footer .footer-links a {
  margin: 0 0.5rem;
  font-size: 0.875rem;
}

.badges-inline .badge-pill {
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
  background: var(--beacon-blue);
  color: white;
  border: none;
  font-size: 12px;
}

/* ===== MODAL STYLES ===== */
.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modal-header {
  border-bottom: 2px solid #f1f3f4;
  padding: 2rem 2rem 1rem;
}

.modal-body {
  padding: 1rem 2rem;
}

.modal-footer {
  border-top: 2px solid #f1f3f4;
  padding: 1rem 2rem 2rem;
}

/* Booking Modal Specific Styles */
#bookingModal .modal-dialog {
  max-width: 900px;
}

#bookingModal .modal-body {
  padding: 0;
  background-color: #f8f9fa;
}

#bookingModal .modal-header {
  background: linear-gradient(135deg, var(--beacon-blue), var(--horizon-aqua));
  color: white;
  border-bottom: none;
}

#bookingModal .modal-title {
  color: white;
  font-weight: 600;
}

#bookingModal .btn-close {
  filter: brightness(0) invert(1);
}

#bookingIframe {
  border-radius: 0 0 12px 12px;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--beacon-blue);
  box-shadow: 0 0 0 3px rgba(30, 96, 145, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .navbar-brand .brand-title {
    font-size: 16px;
  }
  
  .navbar-brand .brand-sub {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 5rem 0 2rem;
  }
  
  .btn-cta, .btn-primary-cta, .btn-outline-cta, .btn-outline-primary-cta, .btn-secondary-cta {
    padding: 0.625rem 1.25rem;
    font-size: 14px;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .d-flex.gap-3 {
    flex-direction: column;
  }
  
  .founder-photo {
    width: 150px !important;
    height: 150px !important;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .service-card, .why-card {
    padding: 1.5rem;
  }
  
  .modal-header, .modal-body, .modal-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

#story.section {
  padding: 6rem 0; /* Increased top and bottom padding for the Our Story section */
}

#licensing {
  background-color: var(--golden-beam) !important;
}

#licensing .badge-pill {
  background-color: var(--sunrise-coral);
  color: var(--text-color);
}

#licensing .badge-pill i {
  color: var(--text-color);
}

#referral {
  background-color: var(--beacon-blue) !important;
  color: var(--radiant-white);
  padding: 8rem 1.2rem !important; /* Further increased height by adding more padding */
}

#referral h2,
#referral p,
#referral a {
  color: var(--radiant-white);
}

/* ===== MODERN TESTIMONIAL CARDS ===== */
.modern-testimonial-card {
  background: var(--radiant-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(33, 49, 66, 0.06);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modern-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(33, 49, 66, 0.15);
}

.modern-testimonial-card .quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--beacon-blue), var(--horizon-aqua));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.modern-testimonial-card .quote-icon i {
  font-size: 1.5rem;
  color: var(--radiant-white);
}

.modern-testimonial-card .testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 0 2rem 0;
  font-style: italic;
  flex-grow: 1;
  position: relative;
}

.modern-testimonial-card .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.modern-testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modern-testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--golden-beam), var(--sunrise-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modern-testimonial-card .author-avatar i {
  font-size: 1.25rem;
  color: var(--radiant-white);
}

.modern-testimonial-card .author-info {
  display: flex;
  flex-direction: column;
}

.modern-testimonial-card .author-name {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 2px;
}

.modern-testimonial-card .author-role {
  color: var(--muted);
  font-size: 0.875rem;
}

.modern-testimonial-card .rating {
  display: flex;
  gap: 3px;
}

.modern-testimonial-card .rating i {
  color: var(--golden-beam);
  font-size: 1rem;
}

/* ===== NAVBAR DROPDOWN HOVER ===== */
/* Only the direct (top-level) dropdown panel; nested ASAM submenus stay hidden until opened */
.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

.navbar-nav .dropdown-menu {
  margin-top: 0;
  border: none;
  box-shadow: 0 8px 24px rgba(33, 49, 66, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.navbar-nav .dropdown-item {
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
  background-color: var(--beacon-blue);
  color: white;
}

/* Nested Services submenu (ASAM) – Bootstrap 5 dropend */
.navbar-nav .dropdown-menu .dropend .dropdown-menu {
  display: none;
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.navbar-nav .dropdown-menu .dropend.show .dropdown-menu,
.navbar-nav .dropdown-menu .dropend:hover .dropdown-menu {
  display: block;
}

/* Keep parent open when hovering over submenu trigger so submenu doesn’t disappear */
.navbar-nav .dropdown-menu .dropend {
  position: relative;
}

/* Mobile: submenu styling when collapsed */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu .dropend .dropdown-menu {
    position: static;
    margin-left: 1rem;
    margin-top: 0.25rem;
    box-shadow: none;
    border-left: 2px solid var(--beacon-blue);
    padding-left: 0.5rem;
    display: none;
  }
  .navbar-nav .dropdown-menu .dropend.show .dropdown-menu {
    display: block;
  }
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--radiant-white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(110, 124, 145, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(33, 49, 66, 0.12);
}

.service-icon {
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--beacon-blue);
}

.service-card h4 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--harbor-gray);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===== TELEHEALTH PAGE STYLING ===== */
.privacy-content h2 {
  color: var(--text-color);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.privacy-content h3 {
  color: var(--beacon-blue);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.privacy-content h4 {
  color: var(--text-color);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.privacy-content p {
  color: var(--harbor-gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.privacy-content ul li {
  color: var(--harbor-gray);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.privacy-content ol li {
  color: var(--harbor-gray);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.privacy-content .text-primary {
  color: var(--beacon-blue) !important;
}

.privacy-content .alert-warning {
  background-color: rgba(242, 184, 75, 0.1);
  border-color: var(--golden-beam);
  color: var(--text-color);
}

.privacy-content .bg-light {
  background-color: rgba(79, 179, 191, 0.05) !important;
  border: 1px solid rgba(79, 179, 191, 0.1);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(79, 179, 191, 0.05);
}

.table th {
  background-color: var(--beacon-blue);
  color: white;
  border: none;
  font-weight: 600;
}

.table td {
  border-color: rgba(110, 124, 145, 0.2);
  color: var(--harbor-gray);
}

@media (max-width: 991px) {
  .modern-testimonial-card {
    padding: 2rem;
  }
  
  .modern-testimonial-card .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ===== ETHICAL PRACTICES PAGE STYLES ===== */
.ethical-practices h2 {
  font-size: 2.25rem !important; /* Smaller h2 for ethical practices page */
}

/* ===== INFECTION PROCEDURES PAGE STYLES ===== */
.infection-procedures h2 {
  font-size: 2.25rem !important; /* Smaller h2 for infection procedures page */
}

/* ===== GHL FORM STYLES ===== */
.ghl-form-container {
  position: relative;
}

.ghl-form-container iframe {
  width: 100% !important;
  border: none !important;
  border-radius: 3px !important;
  display: block;
}

@media (max-width: 768px) {
  .cta-final .row {
    text-align: center !important;
  }
}

/* ===== CTA CONTACT INFO STYLES ===== */
.contact-info-cta h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-cta .contact-item {
  margin-bottom: 0.75rem;
}

.contact-info-cta .contact-item .icon-square {
  flex-shrink: 0;
  margin-bottom: 0;
}

.contact-info-cta .contact-item a:hover {
  text-decoration: underline !important;
}

@media (max-width: 991px) {
  .contact-info-cta {
    margin-top: 2rem;
  }

  .contact-info-cta .contact-item {
    justify-content: center;
    text-align: center;
  }

  .contact-info-cta .contact-item div:last-child {
    text-align: center;
  }

  .contact-info-cta .contact-item .icon-square {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}