* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-blue: #0066cc;
  --light-blue: #e6f3ff;
  --dark-blue: #004d99;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --text-dark: #333333;
  --text-light: #666666;
}

body {
  background-color: var(--light-gray);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
/* header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
} */
header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(230, 243, 255, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  background-color: var(--primary-blue);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary-blue);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-blue);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Legacy Section */
.legacy {
  padding: 80px 0;
  background-color: var(--light-blue);
}

.legacy-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.legacy-image {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 77, 153, 0.15);
}

.legacy-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.legacy-image:hover img {
  transform: scale(1.02);
}

.legacy-story {
  flex: 1.5;
}

.legacy-story h3 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.legacy-story p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.timeline {
  margin: 40px 0;
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-blue);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-dot {
  position: absolute;
  left: -38px;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  border: 3px solid var(--light-blue);
}

.timeline-content h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .legacy-content {
    flex-direction: column;
  }

  .legacy-image,
  .legacy-story {
    min-width: 100%;
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-blue);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-light);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.feature {
  flex: 1;
  min-width: 250px;
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  background-color: var(--light-blue);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--primary-blue);
  font-size: 30px;
}

.feature h3 {
  margin-bottom: 15px;
  color: var(--primary-blue);
}

/* Pharmacies Section */
.pharmacies {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.location-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.location-card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  /* min-height: 200px; */
  box-shadow: 0 10px 30px rgba(0, 77, 153, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 77, 153, 0.15);
}

.location-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.location-details {
  margin-bottom: 20px;
}

.location-details p {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.detail-icon {
  color: var(--primary-blue);
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

.hours {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hours h4 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1rem;
}

.hours p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.location-card .cta-button {
  display: block;
  text-align: center;
  margin-top: 20px;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--light-gray);
  padding: 40px;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--dark-blue);
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 14px;
}

.phone-number {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  /* align-items: flex-start; */
  text-align: left;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background-color: var(--white);
  color: var(--primary-blue);
}

.footer-logo .logo-text {
  color: var(--white);
}

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

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--light-blue);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.quick-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.quick-contact-updated {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .header-content {
    padding: 15px 0;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .feature {
    min-width: 100%;
  }

  .location-card {
    max-width: 100%;
  }

  .contact-form {
    padding: 20px;
  }
}
