/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: #0077cc;
}
a:hover {
  text-decoration: underline;
}

/* Header and Navigation */
header {
  background-color: #000;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
nav ul li {
  margin-left: 20px;
}
nav ul li:first-child {
  margin-left: 0;
}
nav ul li a {
  color: #fff;
  font-weight: bold;
}
nav ul li a.active {
  border-bottom: 2px solid #fff;
}

/* Main content */
main {
  padding: 40px;
  animation: fadeIn 0.7s ease-in;
}
.hero {
  text-align: center;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2em;
  color: #666;
}
.features h2 {
  margin-top: 40px;
  font-size: 1.8em;
}
.features ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}
.features ul li {
  margin-bottom: 10px;
}
.features ul li::before {
  content: "\f111";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
  color: #0077cc;
}

/* Forms */
form {
  max-width: 600px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
form > * {
  margin-bottom: 15px;
}
form input,
form textarea {
  padding: 10px;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
}
form button {
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1em;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #005fa3;
}

/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}

/* Map styling */
.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  margin-top: 20px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
  }

  nav ul.showing {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  main {
    padding: 20px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
  }
}

/* Two-column hero section with image */
.hero.two-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
}
.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero.two-column {
    flex-direction: column;
    text-align: center;
  }
}

.hero-cta {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005fa3;
}

.contact-info {
  font-size: 0.95em;
  color: #555;
}

.contact-info a {
  color: #0077cc;
}

.hero-cta {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005fa3;
}

.contact-info {
  font-size: 0.95em;
  color: #555;
}

.contact-info a {
  color: #0077cc;
}

#find-address {
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 6px 12px;
  font-size: 0.9em;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
}
#find-address:hover {
  background-color: #005fa3;
}
#address-select {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.btn.pulse {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  animation: fadeInPulse 2s ease-in-out infinite;
}

.btn.pulse:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

@keyframes fadeInPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 20px;
}

.contact-form-map {
  flex: 1 1 60%;
  min-width: 300px;
}

.qr-code-side {
  flex: 1 1 30%;
  min-width: 250px;
  text-align: center;
}

.qr-code-side h2 {
  margin-bottom: 20px;
  font-size: 1.2em;
  color: #0077cc;
}

.qr-code-side img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #0077cc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.features-table th {
  background-color: #0077cc;
  color: white;
  text-align: left;
  padding: 12px 16px;
  font-size: 1.05em;
}

.image-highlight {
  text-align: center;
  padding: 20px;
}

.image-highlight {
  text-align: center;
  padding: 30px 20px 0;
}

.image-highlight img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .image-highlight {
    padding: 20px 10px;
  }

  .image-highlight img {
    max-width: 90%;
    margin: 0 auto;
  }
}



