/* Base Styles */
:root {
  --primary: #e83e8c;
  --primary-dark: #d81b7a;
  --primary-light: #f06ca6;
  --secondary: #1370B5;
  --secondary-dark: #0052a3;
  --secondary-light: #4d94ff;
  --dark: #333333;
  --light: #ffffff;
  --gray: #f8f9fa;
  --gray-dark: #e9ecef;
  --gray-text: #6c757d;
  --font-family: 'Arial', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.text-primary {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.text-link {
  color: var(--primary);
  text-decoration: underline;
  font-size: 0.9rem;
}

.text-link:hover {
  color: var(--primary-dark);
}

.small-text {
  font-size: 0.85rem;
  color: var(--gray-text);
}
/* Video Section */
.video-section {
    padding: 4rem 0;
    background-color: var(--light);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    display: block;
}
/* About Us Hero Background */
.about-hero {
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--light);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    color: var(--light);
}

.about-hero p {
    color: var(--light);
    max-width: 800px;
    margin: 0 auto;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.primary-btn {
  background-color: var(--primary);
  color: var(--light);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
}

.secondary-btn {
  background-color: var(--secondary);
  color: var(--light);
}

.secondary-btn:hover {
  background-color: var(--secondary-dark);
}

.outline-btn {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.outline-btn:hover {
  background-color: var(--primary);
  color: var(--light);
}

.outline-btn.light {
  border-color: var(--light);
  color: var(--light);
}

.outline-btn.light:hover {
  background-color: var(--light);
  color: var(--primary);
}

.full-width {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--light);
  border-bottom: 1px solid var(--gray-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo i {
  color: var(--primary);
}

.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  gap: 1.5rem;
}

.desktop-nav a {
  color: var(--dark);
  transition: color 0.3s ease;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--primary);
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--dark);
}

.mobile-nav {
  display: none;
  padding: 1rem 0 1.5rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.desktop-only {
  display: none;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

.hero-image {
  width: 100%;
  max-width: 500px;
}

.hero-image img {
  border-radius: 0.5rem;
  object-fit: cover;
}

/* Page Hero */
.page-hero {
  background-color: var(--gray);
  padding: 4rem 0;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.125rem;
  color: var(--gray-text);
  max-width: 800px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--gray);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-text);
  max-width: 800px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Cards */
.card {
  background-color: var(--light);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.card-header i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-content {
  padding: 0.5rem 1.5rem 1.5rem;
}

.card-content p {
  color: var(--gray-text);
}

/* Services Preview */
.services-preview {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 350px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--light);
}

.service-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-overlay p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.service-overlay .link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background-color: var(--gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
}

/* CTA Section */
.cta {
  padding: 4rem 0;
  background-color: var(--primary);
  color: var(--light);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Simple CTA */
.simple-cta {
  padding: 4rem 0;
}

.simple-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.simple-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.simple-cta-content p {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.column h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.column p {
  color: var(--gray-text);
  margin-bottom: 1rem;
}

/* Our Mission */
.our-mission {
  padding: 4rem 0;
  background-color: var(--gray);
}

.mission-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mission-statement {
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.values-grid .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.values-grid .card-content i {
  font-size: 1.25rem;
}

/* Our Facility */
.our-facility {
  padding: 4rem 0;
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.facility-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.facility-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.facility-info {
  padding: 1.5rem;
}

.facility-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.facility-info p {
  color: var(--gray-text);
}

/* Community */
.community {
  padding: 4rem 0;
  background-color: var(--gray);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-container .card-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-container .card-header p {
  color: var(--gray-text);
}

.form-success {
  background-color: rgba(232, 62, 140, 0.1);
  color: var(--primary);
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  display: none;
}

.form-success.active {
  display: block;
}

.success-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--gray-dark);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 2rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-item i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.info-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--gray-text);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  color: var(--gray-text);
}

.emergency-box {
  background-color: var(--gray);
  border: 1px solid var(--gray-dark);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.emergency-content {
  display: flex;
  gap: 1rem;
}

.emergency-content i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.emergency-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.emergency-content p {
  color: var(--gray-text);
  margin-bottom: 1rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background-color: var(--gray);
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--gray-dark);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid .card-header h3 {
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background-color: var(--gray);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--gray-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-col p,
.footer-col a {
  color: var(--gray-text);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-list i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-dark);
}

.footer-bottom p {
  color: var(--gray-text);
  font-size: 0.875rem;
}

/* Media Queries */
@media (min-width: 576px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .page-hero-content h1 {
    font-size: 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .btn-group {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }
  
  .desktop-only {
    display: inline-block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
  }
  
  .hero-text {
    text-align: left;
    flex: 1;
  }
  
  .hero-image {
    flex: 1;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .two-column {
    grid-template-columns: 1fr 1fr;
  }
  
  .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
	
}

@media (min-width: 992px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}
