/* L_main.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
}

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

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(52, 152, 219, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.hidden {
  transform: translateY(-100%);
}

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

.nav-left {
  display: flex;
  align-items: center;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: -0.5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #34495e;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #3498db;
}

.contact-btn {
  background: #3498db;
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
}

.contact-btn:hover {
  background: #2980b9;
  border-color: #2980b9;
  transform: translateY(-1px);
}

.app-link {
  position: relative;
}

.app-link::after {
  content: "New";
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: #2980b9;
  color: white;
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(52, 152, 219, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Dropdown */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(52, 152, 219, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 0;
}

.mobile-menu-links .nav-link {
  padding: 1.2rem 2rem !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(52, 152, 219, 0.15);
  font-size: 1.1rem;
  text-align: center;
  display: block;
  width: 100%;
  color: #34495e;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

.mobile-menu-links .nav-link:hover {
  background: rgba(52, 152, 219, 0.05);
  color: #3498db;
}

.mobile-menu-links .nav-link:last-child {
  border-bottom: none;
}

/* Contact button n Mobile menu */
.mobile-menu-links .contact-btn {
  margin: 1rem 2rem !important;
  padding: 1rem 1.5rem !important;
  border-radius: 8px !important;
  background: #3498db !important;
  color: white !important;
  border: 2px solid #3498db !important;
  border-bottom: 2px solid #3498db !important;
  width: calc(100% - 4rem) !important;
  box-sizing: border-box !important;
}

.mobile-menu-links .contact-btn:hover {
  background: #2980b9 !important;
  border-color: #2980b9 !important;
  color: white !important;
}

.mobile-menu-links .app-link {
  position: relative;
}

.mobile-menu-links .app-link::after {
  content: "New";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: #2980b9;
  color: white;
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  border-radius: 10px;
  font-weight: 700;
}

/* Landing Section */
.landing-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.landing-content {
  color: #2c3e50;
}

.landing-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-subtitle {
  font-size: 1.15rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 90%;
}

.landing-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-primary {
  background: #3498db;
  color: white;
  border: none;
  padding: 1.1rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
  display: inline-block;
  text-decoration: none;
}

.cta-primary:hover {
  background: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
  padding: 1.1rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.cta-secondary:hover {
  background: #3498db;
  color: white;
  transform: translateY(-2px);
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.trust-label {
  font-size: 0.9rem;
  color: #7f8c8d;
  font-weight: 500;
}

.landing-visual {
  position: relative;
  height: 500px;
}

.hero-graphic {
  position: relative;
  width: 100%;
  height: 100%;
}

.medical-card {
  position: absolute;
  background: white;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.1);
  min-width: 160px;
  animation: float 4s ease-in-out infinite;
}

.card-1 {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: 15%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 3s;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.4rem;
}

.card-content p {
  font-size: 0.9rem;
  color: #7f8c8d;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-8px) rotate(1deg);
  }
  66% {
    transform: translateY(4px) rotate(-1deg);
  }
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: white;
}

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #ecf0f1;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
  border: 2px solid #3498db;
  transform: scale(1.02);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3498db;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  font-weight: 600;
  text-align: center;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3498db;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: auto;
}

.service-card p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.4rem 0;
  color: #5a6c7d;
  position: relative;
  padding-left: 1.2rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.service-btn {
  width: 100%;
  background: #ecf0f1;
  color: #34495e;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.service-btn:hover {
  background: #d5dbdb;
}

.service-btn.primary {
  background: #3498db;
  color: white;
}

.service-btn.primary:hover {
  background: #2980b9;
}

/* Locations Section */
.locations-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.section-subtitle {
  text-align: center;
  color: #5a6c7d;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.location-search {
  max-width: 500px;
  margin: 0 auto 3rem;
}

.search-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.zip-input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.zip-input:focus {
  outline: none;
  border-color: #3498db;
}

.search-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 1rem 1.8rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #2980b9;
}

.geo-btn {
  background: #ecf0f1;
  color: #34495e;
  border: 1px solid #dfe6e9;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.geo-btn:hover {
  background: #e5eaec;
  border-color: #cfd6da;
}

.search-result {
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

.search-result.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.search-result.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
}

.service-map {
  width: 100%;
  height: 450px;
  background: url("assets/map.jpg") center/cover no-repeat;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgb(255, 255, 255);
  border: 1px solid #e1e8ed;
}

.map-overlay {
  width: 100%;
  height: 100%;
  background: rgba(243, 242, 242, 0.336);
  position: relative;
  padding: 2rem;
}

.map-overlay h3 {
  text-align: center;
  color: #00000000;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.coverage-areas {
  display: none;
}

.area-group h4 {
  color: #3498db;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.area-group ul {
  list-style: none;
}

.area-group li {
  padding: 0.3rem 0;
  color: #5a6c7d;
}

.map-points {
  display: none;
}

.map-point {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
  pointer-events: all;
}

.map-point:hover {
  transform: scale(1.15);
}

.point-marker {
  width: 20px;
  height: 20px;
  background: #3498db;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.6);
}

.point-label {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  color: #2c3e50;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.point-1 {
  top: 20%;
  left: 60%;
}
.point-2 {
  top: 50%;
  left: 20%;
}
.point-3 {
  top: 30%;
  left: 30%;
}
.point-4 {
  bottom: 25%;
  right: 30%;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-description {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.credential-item h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.credential-item p {
  color: #7f8c8d;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #5a6c7d;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  text-align: center;
}

.contact-section .section-title {
  color: white;
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.large {
  padding: 1.3rem 2.5rem;
  font-size: 1.1rem;
}

.contact-section .cta-primary {
  background: white;
  color: #3498db;
  border: 2px solid white;
  text-decoration: none;
}

.contact-section .cta-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.contact-section .cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  text-decoration: none;
}

.contact-section .cta-secondary:hover {
  background: white;
  color: #3498db;
}

.contact-info {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Footer within contact section */
.contact-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-footer .legal-info {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.contact-footer .company-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-footer .license-info {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-footer .copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .landing-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .landing-title {
    font-size: 2.5rem;
  }

  .trust-indicators {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Center credentials section content on mobile */
  .credentials {
    align-items: center;
    text-align: center;
  }
  .credential-item p,
  .credential-item h4 {
    text-align: center;
  }

  .coverage-areas {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .landing-buttons {
    flex-direction: column;
    align-items: center;
  }

  .landing-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .search-container {
    flex-direction: column;
  }

  .geo-btn {
    width: 100%;
  }

  .landing-visual {
    height: 420px;
  }

  .medical-card {
    min-width: 140px;
    padding: 1.2rem;
    animation: float-sm 4s ease-in-out infinite;
  }

  .card-content h4 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }

  .card-1 {
    top: 8%;
    left: 10%;
    right: auto;
    bottom: auto;
  }

  .card-2 {
    top: 44%;
    right: 10%;
    left: auto;
    bottom: auto;
  }

  .card-3 {
    bottom: 8%;
    left: 14%;
    right: auto;
    top: auto;
  }
}

@keyframes float-sm {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-6px) rotate(1deg);
  }
  66% {
    transform: translateY(3px) rotate(-1deg);
  }
}

@media (max-width: 480px) {
  .landing-visual {
    height: 360px;
  }

  .medical-card {
    min-width: 0;
    padding: 1rem;
    left: 8%;
    right: 8%;
  }

  .card-1 {
    top: 4%;
  }

  .card-2 {
    top: 37%;
  }

  .card-3 {
    bottom: 6%;
  }
}
