.map
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;

  margin-bottom: 10%;
}

.map-inner 
{
  position: relative;
  width: 100%;
  max-width: 800px;
}

.map-inner iframe 
{
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
  display: block;
}

.map-overlay 
{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;

  pointer-events: all;
  transition: opacity 0.3s;
}

.map-overlay.hidden 
{
  pointer-events: none;
  opacity: 0;
}

.logo_grid 
{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 40px 20px;
  background-color: rgb(214, 214, 214);
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  overflow-x: auto;

  margin-bottom: 10%;

  margin-left: 5%;
  margin-right: 5%;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.logo_grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo_box 
{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.logo_box img 
{
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.widget
{
  width: 100%;
  margin-bottom: 10%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.price-table {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 20px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;

  margin-bottom: 10%;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.price-table.visible {
  opacity: 1;
  transform: translateY(0);
}


.price-table h2 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: #333;
  border-left: 5px solid #007BFF;
  padding-left: 0.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: white;
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.price-row:hover {
  transform: translateY(-3px);
}

.service {
  flex: 1;
  color: #444;
  font-size: 0.95rem;
}

.price {
  color: #000;
  font-weight: bold;
  min-width: 80px;
  text-align: right;
}

.section-title {
  position: relative;
  text-align: center;
  color: white;

  border-left: 5px solid #007BFF;
  border-right: 5px solid #007BFF;

  width: 20%;

  margin-left: auto;
  margin-right: auto;

  font-size: 1rem;

  margin-top: 10%;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-us {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background-color: #f9f9fb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;

  margin-bottom: 10%;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.why-us.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-us h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
  position: relative;
}

.why-us h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #007bff;
  margin: 12px auto 0;
  border-radius: 4px;
}

.why-us p {
  font-size: 16px;
  margin-bottom: 20px;
}

.why-us ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.why-us ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.why-us ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #28a745;
  font-weight: bold;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.faq-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 5rem;
  text-align: center;
  color: white;

  border-left: 5px solid #007BFF;
  border-right: 5px solid #007BFF;

  padding-left: 2%;
  padding-right: 2%;

}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
  background: #f5f5f5;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #e9e9e9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem;
}

:root{
  --sat: env(safe-area-inset-top, 0px);
  --sar: env(safe-area-inset-right, 0px);
}

@media (max-width: 768px)
{
  .map
  {
    padding-left: 5%;
    padding-right: 5%;
  }

  .map iframe
  {
    height: 200px;
  }

  .widget
  {
    width: 90%;

    margin-left: 5%;
    margin-right: 5%;
  }

  .section-title
  {
    font-size: 0.7rem;
    width: 40%;

    margin-top: 20%;
  }

  .price-table
  {
    margin-left: 5%;
    margin-right: 5%;
  }

  .why-us {
    padding: 20px;

    margin-left: 5%;
    margin-right: 5%;
  }

  .why-us h2 {
    font-size: 22px;
  }

  .why-us p,
  .why-us ul li {
    font-size: 15px;
  }

  .faq-section h2
  {
    font-size: 1.5rem;
  }

  .logo_grid
  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background-color: rgb(214, 214, 214);
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;

    margin-bottom: 10%;

    margin-left: 5%;
    margin-right: 5%;
  }
}

