
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 15%);
  --primary: hsl(197, 71%, 37%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(197, 20%, 95%);
  --secondary-foreground: hsl(197, 71%, 37%);
  --accent: hsl(197, 35%, 85%);
  --accent-foreground: hsl(197, 71%, 25%);
  --muted: hsl(197, 20%, 96%);
  --muted-foreground: hsl(0, 0%, 45%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 15%);
  --border: hsl(197, 20%, 90%);
  --radius: 0.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: hsl(197, 71%, 30%);
  text-decoration: none;
}

body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important; /* Prevent horizontal scroll */
  background-color: var(--background);
  color: var(--foreground);
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.btn.hero-btn {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.9rem 1.512rem;
  border-radius: 999px; 
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 220px; 
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn.hero-btn:hover {
  background-color: hsl(197, 71%, 30%);
  transform: translateY(-2px);
}



header.navbar {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
  height: 100px;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin-left: 0; 
}


.logo img {
  height: 100px;          
  max-width: 160px;      
  object-fit: contain;   
  display: block;
}

@media (max-width: 768px) {

section.hero {
  padding: 0rem 0rem; /* Adjust padding for smaller screens */
}

html {
  overflow-x: hidden !important; /* Prevent horizontal scroll */
}

  .logo img {
    height: auto;
    max-width: 140px;
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #f3f4f6;
}

.accordion-toggle:hover {
  background-color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #f9fafb;
  padding: 0 1.25rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 1rem 1.25rem;
}

.accordion-content p {
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
}


.crisis-bar {
  background-color: #cc0000;
  color: #fff;
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0;
  font-weight: bold;
  font-size: 1rem;
  position: sticky;
  top: 100px;
  z-index: 25;
}

.crisis-ticker {
  overflow: hidden;
  position: static;
}

.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 7s linear infinite;
}

.ticker-track span {
  padding: 0 2rem;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0% {
    transform: translate3d(0,0,0);
  }
  100% {
    transform: translate3d(-50%,0,0);
  }
}

.accreditation-section {
  background-color: #f8fafc;
  padding: 3rem 1.5rem;
}

.accreditation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.accreditation-container .badge {
  flex: 0 0 150px;
  text-align: center;
}

.accreditation-container .badge img {
  max-width: 100%;
  height: auto;
}

.accreditation-container .accreditation-text {
  flex: 1;
  min-width: 250px;
}

.accreditation-container .accreditation-text h2 {
  font-size: 1.6rem;
  color: var(--primary, #1d4ed8);
  margin-bottom: 1rem;
}

.accreditation-container .accreditation-text p {
  font-size: 1rem;
  color: var(--foreground, #333);
  line-height: 1.6;
}



/* Responsive for mobile */
@media (max-width: 768px) {
  .accreditation-container {
    flex-direction: column;
    text-align: center;
  }

  .accreditation-container .badge {
    margin-bottom: 1rem;
  }

  .accreditation-container .accreditation-text {
    padding: 0 1rem;
  }
}

.clinical-programs-section {
  background-color: #f9fafb;
  padding: 4rem 2rem;
  text-align: center;
}

.clinical-programs-section h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.clinical-programs-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ffffff;
  font-size: 1rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease;
  
}

.card-grid .program-card:nth-child(1) {
  border-radius: 0 40px 40px 40px;
}

.card-grid .program-card:nth-child(2) {
  border-radius: 40px 0 40px 40px;
}

.card-grid .program-card:nth-child(3) {
  border-radius: 40px 40px 40px 0;
}

.card-grid .program-card:nth-child(4) {
  border-radius: 40px 40px 0 40px;
}

.program-card:hover {
  transform: translateY(-6px);
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.program-card p {
  margin-bottom: 1rem;
  color: #374151;
  font-size: 1rem;
  transition: color 0.3s ease;
}


.program-card li {
  margin-bottom: 0.5rem;
}

/* Accordion inside Program Cards */
.program-card .accordion {
margin-top: 1rem;
}

.program-card .accordion-item {
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding: 0rem 0;
}

/* Meet the Team Section */
.team-section {
padding: 4rem 2rem;
text-align: center;
}

.section-title {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--primary);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.team-card {
background: #ffffff;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
text-align: center;
transition: transform 0.3s ease;
}

.team-card:hover {
transform: translateY(-6px);
}

.team-photo {
width: 100%;
height: auto;
border-radius: 0.75rem;
margin-bottom: 1rem;
}

.team-card h3 {
font-size: 1.25rem;
margin-bottom: 0.5rem;
color: #2c3e50;
}

.team-card .title {
color: #888;
font-size: 0.95rem;
margin-bottom: 0.5rem;
}

.team-card blockquote {
font-style: italic;
color: #3c8c6c;
margin-bottom: 1rem;
}

.team-card .bio {
font-size: 0.95rem;
color: #444;
line-height: 1.6;
}

@media (max-width: 768px) {
.team-section {
  padding: 3rem 1rem;
}

.team-card {
  padding: 1.5rem;
}

.team-card h3 {
  font-size: 1.15rem;
}

.team-card .title {
  font-size: 0.9rem;
}

.team-card blockquote {
  font-size: 0.95rem;
}

.team-card .bio {
  font-size: 0.9rem;
}
}



.dropdown {
position: relative;
display: inline-flex;
align-items: center;
}

.dropdown-toggle {
display: inline-flex;
align-items: center;
gap: 0.3rem;
cursor: pointer;
text-decoration: none;
color: inherit;
padding: 0.5rem 1rem;
}

.dropdown-toggle::after {
content: '';
display: inline-block;
margin-left: 0;
border: solid currentColor;
border-width: 0 2px 2px 0;
padding: 2.5px;
transform: rotate(45deg); 
transition: transform 0.3s ease;
vertical-align: 20%;
top: 0.1px;
position: relative;
}

.dropdown-menu {
display: none;
position: absolute;
background-color: white;
min-width: 280px;
top: 100%;
left: 0;
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
z-index: 1000;
border-radius: 8px;
padding: 0.5rem 0;
}

.dropdown-menu a {
display: block;
padding: 0.75rem 1rem;
color: #333;
text-decoration: none;
font-size: 0.95rem;
transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
background-color: #f5f5f5;
}


.dropdown:hover .dropdown-menu {
display: block;
}




.read-more-wrapper {
position: relative;
overflow: hidden;
transition: max-height 0.3s ease;
max-height: 4.5em;
display: block;
}

.read-more-wrapper::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2em;
background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
pointer-events: none;
}

.read-more-content {
max-height: 120px;
overflow: hidden;
transition: max-height 0.3s ease;
}

.read-more-wrapper.expanded .read-more-content {
max-height: 2000px;
}

.read-more-wrapper.expanded {
max-height: 1000px; /* large enough to show full text */
}

.read-more-wrapper.expanded::after {
display: none;
}

.read-more-toggle {
background: none;
border: none;
color: #b3dabe;
font-weight: 600;
cursor: pointer;
padding: 0.5rem 0 0;
}


.program-card .accordion-toggle::after {
content: '➕';
position: absolute;
right: 0;
font-size: 0.9rem;
transition: transform 0.3s ease;
}

.program-card .accordion-item.active .accordion-toggle::after {
content: '➖';
}


.program-card .accordion-content {
max-height: 0;
overflow: hidden;
opacity: 0;
transition: max-height 0.4s ease, opacity 0.4s ease;
font-size: 0.95rem;
padding-left: 1rem;
}


.program-card .accordion-item.active .accordion-content {
max-height: 200px;
opacity: 1;
padding-top: 0.5rem;

}




/* Tablet view (2 cards per row) */
@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile view (1 card per row) */
@media (max-width: 600px) {
  .clinical-programs-section {
    padding: 3rem 1rem;
  }

  .clinical-programs-section h2 {
    font-size: 1.75rem;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-card {
    padding: 2rem 1.25rem;
  }

  .program-card h3 {
    font-size: 1.25rem;
  }

  .program-card p,
  .program-card ul {
    font-size: 0.95rem;
  }
}





#hamburger {
  display: none;
  color: var(--foreground);
}

nav#nav-links {
  display: flex;
  gap: 1rem;
}

nav#nav-links a {
  position: relative;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius); 
  transition: background-color 0.3s ease, color 0.3s ease;
}


nav#nav-links a.active,
nav#nav-links a:hover {
  background-color: transparent;
  color: var(--primary); 
}



section.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary-foreground);
  padding: 6rem 2rem;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
}

section.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 0;
}

section.hero h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 800px;
}

section.hero p {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}


section.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

section.content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

section.content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

section.content ul {
  margin: 1rem 0 2rem;
  padding-left: 1.25rem;
}

section.content li {
  margin-bottom: 0.5rem;
}


.full-width-bg{
  background-color: var(--secondary);
  width: 100%;
}

.intro-highlight-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.intro-text {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0;     
  padding-top: 0;    
}


.intro-text h2 {
  font-size: 2rem;
  color: var(--foreground);
  margin-top: 0;
  margin-bottom: 1rem;
}


.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.highlight-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.highlight-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--foreground);
}

.highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.intro-image {
  flex: 1;
  min-width: 300px;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}



.statement-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.statement-section .text {
  flex: 1;
  min-width: 300px;
}

.statement-section .text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.statement-section .text p,
.statement-section .text li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.statement-section .text ul {
  padding-left: 1.25rem;
}


.statement-section .text ul {
  padding-left: 0;
  list-style: none;
}

.statement-section .text li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.statement-section .text li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.5rem;
  font-size: 1.2rem;
}


.statement-section .image {
  flex: 1;
  min-width: 300px;
}

.statement-section .image img {
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.statement-section.reverse {
  flex-direction: row-reverse;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;

}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: left;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
}

.card img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}


.horizontal-card {
  display: flex;
  height: 350px; 
  max-width: 100%;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  background: var(--card);
  
}

.card-grid .horizontal-card:nth-child(1) {
border-radius: 0 40px 40px 40px;
}

.card-grid .horizontal-card:nth-child(2) {
border-radius: 40px 0 40px 40px;
}

.card-grid .horizontal-card:nth-child(3) {
border-radius: 40px 40px 40px 0;
}

.card-grid .horizontal-card:nth-child(4) {
border-radius: 40px 40px 0 40px;
}

.card-grid .horizontal-card:nth-child(5) {
border-radius: 0 40px 40px 40px;
}

.card-grid .horizontal-card:nth-child(6) {
border-radius: 40px 0 40px 40px;
}

.card-grid .horizontal-card:nth-child(7) {
border-radius: 40px 40px 40px 0;
}

.card-grid .horizontal-card:nth-child(8) {
border-radius: 40px 40px 0 40px;
}

.horizontal-card .card-text,
.horizontal-card .card-image {
  height: 100%;
}

.horizontal-card .card-text {
  flex: 1;
  padding: 1.5rem; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.horizontal-card .card-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.horizontal-card .card-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.horizontal-card .card-text ul li {
  font-size: 0.9rem;
  line-height: 1.4;
}

.horizontal-card .card-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.horizontal-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
  border-radius: 0;
}


.horizontal-card ul {
  padding-left: 1.2rem;
  list-style-position: inside;
  margin: 0.5rem 0;
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  margin: 1rem 0.5rem 0;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.3s, color 0.3s;
}

.btn.primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
}

.btn.primary:hover {
  background-color: hsl(197, 71%, 30%);
}

.btn.secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--primary);
}

.btn.secondary:hover {
  background-color: hsl(197, 20%, 90%);
}

.custom-footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 2rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-columns .column {
  flex: 1;
  min-width: 200px;
}

.footer-columns h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--primary-foreground);
}

.footer-columns p,
.footer-columns li,
.footer-columns a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--primary-foreground);
  text-decoration: none;
}

.footer-columns a:hover {
  text-decoration: underline;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: var(--muted);
}

.accordion-toggle {
  width: 100%;
  padding: 1rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--accent-foreground);
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-toggle:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: var(--muted);
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-content.open {
  max-height: 300px;
  padding: 1rem;
}

.treatment-approach {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--secondary);
  max-width: none;         
  width: 100%;            
  margin: 0;                
}


.treatment-approach h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.treatment-approach p {
  color: var(--muted-foreground);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.6;
}

.approach-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.approach-card {
  background: none;                    
  border: none;                         
  border-radius: 0;
  padding: 1rem;                        
  width: 300px;
  text-align: center;
  box-shadow: none;                     
  transition: none;                     
}


.approach-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.approach-card h3 {
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.approach-card p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.statement-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.statement-section .text {
  flex: 1;
  min-width: 300px;
}

.statement-section .text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.statement-section .text p,
.statement-section .text li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.statement-section .text ul {
  padding-left: 1.25rem;
}

.statement-section .image {
  flex: 1;
  min-width: 300px;
}

.statement-section .image img {
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}


.statement-section.reverse {
  flex-direction: row-reverse;
}

.location-card-complete {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 2rem 0;
  overflow: hidden;
}

.ceo-card {
  text-align: center;
  margin: 2rem auto;
  max-width: 300px;
}

.ceo-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.ceo-card h3 {
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.ceo-card p {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin: 0;
}


.location-info {
  flex: 0 0 55%;
  padding: 2rem;
}

.location-map {
  flex: 0 0 45%;
  padding: 2rem;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  min-height: 350px;
}

.location-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.location-map h3 {
  margin-bottom: 1rem;
  color: #333;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 0.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.button-group {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px; 
}  

@media (max-width: 768px) {
  .location-card-complete {
    flex-direction: column;
  }

  .location-info, .location-map {
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .two-column-list {
  display: block;
  gap: 0.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}
}




.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.grid-form .full-width {
  grid-column: span 2;
}

.grid-form .align-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.grid-form .form-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.grid-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.grid-form input,
.grid-form select,
.grid-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}


.impact-section {
  padding: 4rem 2rem;
  background-color: #f9fbfc;
}

.impact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.impact-text {
  flex: 1 1 45%;
}

.impact-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.impact-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #333;
}

.impact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.impact-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.impact-buttons .primary {
  background-color: var(--primary);
  color: #fff;
}

.impact-buttons .outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.impact-stats {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-box {
  background-color: var(--primary);
  color: #b3dabe;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-box .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-box .counter {
  font-size: 2.5rem;
  font-weight: bold;
}

.stat-box p {
  margin-top: 0.5rem;
  font-size: 1rem;
  text-align: center;
}


@media (max-width: 768px) {
  .impact-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .impact-buttons {
    justify-content: center;
  }

  .impact-text,
  .impact-stats {
    flex: 1 1 100%;
  }
}


.journey-section {
  background-color: #f0f7f5;
  text-align: center;
  padding: 4rem 2rem;
}

.journey-section h2 {
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.journey-section .subtext {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.journey-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.step {
  max-width: 280px;
  text-align: center;
}

.step .circle {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.step p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.journey-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.journey-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.top-highlight-bar {
  background-color: var(--primary);
  color: var(--primary-foreground);
  height: 60px;              
  display: flex;            
  align-items: center;
  position: static;      
}

.bottom-highlight-bar {
  background-color: var(--primary);
  color: var(--primary-foreground);
  height: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0 20px;
}

.bottom-bar-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}


.contact-bar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%;                   
  padding: 0;                
  font-size: 0.95rem;
  color: var(--primary-foreground);
  max-width: 1200px;
  margin: 0 auto;
  
}

.contact-info span {
  margin-right: 1.5rem;
  
}

.contact-bar a {
  color: var(--primary-foreground); 
  text-decoration: none;
  font-weight: 500;
}

.contact-bar a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 20px;
  align-items: center; 
}

.social-links a {
  font-size: 1.2rem;
  color: var(--primary-foreground); 
  text-decoration: none;
   
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
}

.quick-actions {
  padding: 4rem 1.5rem;
  text-align: center;
  background-color: #f9fafb;
}

.quick-actions h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.quick-actions .subtext {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.quick-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.quick-card .icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.quick-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #111827;
}

.quick-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: #374151;
}


.quick-card .btn {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}


@media (max-width: 768px) {
  nav#nav-links {
    flex-direction: column;
    align-items: flex-start; 
    padding: 1rem;
    gap: 0.75rem;
    background-color: var(--background);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 19;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  nav#nav-links a {
    width: 100%;
  }

  .intro-highlight-section {
      flex-direction: column;
      text-align: center;
  }
  
  .intro-text {
      padding-bottom: 1.5rem;
  }
  
  .highlight-list li::before {
      left: 50%;
      transform: translateX(-150%);
  }


} 
  
@media (max-width: 768px) {
  .statement-section {
    flex-direction: column;
    text-align: center;
  }


  

  .video-hero h1 {
      font-size: 1.75rem;
    }

  .statement-section.reverse {
    flex-direction: column;
  }

  .statement-section .image img {
    border-radius: 20px;
  }

  .video-hero h1 {
      font-size: 1.75rem;
    }
}



@media (max-width: 768px) {
  .highlight-list {
    padding-left: 1.25rem;
    text-align: left;
  }

  .highlight-list li::before {
    left: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .approach-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }


  .btn.hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .contact-info-text {
    display: none;
  }
}

@media (max-width: 768px) {
  nav#nav-links.show {
    display: flex !important;
  }

  .contact-info-text {
    display: none;
  }
}

@media (max-width: 768px) {
  nav#nav-links {
    flex-direction: column;
    display: none;
    font-size: 1rem;
  }



  #hamburger {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }

  body.services-page section.hero {
    background-position: top center;
  }

  .horizontal-card {
    flex-direction: column;
    height: auto;
  }

  .horizontal-card .card-image {
    max-width: 100%;
    min-height: 250px;
  }

  .horizontal-card .card-image img {
    height: 100%;
  }
}
.location-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.location-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.location-info h3 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.location-info p {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}



