@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/algerian');

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #191c24;
  color: #fff;
}

.company-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 8px 0;
}

.company-name {
  font-family: 'Algerian', serif, Arial;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 3px;
  line-height: 1.08;
}

.slogan {
  font-size: 1.32rem;
  font-weight: 500;
  color: #ffd700;
  font-style: italic;
  margin-bottom: 7px;
  text-align: center;
}

header {
  background: linear-gradient(135deg, #aa076b 0%, #61045f 100%);
  box-shadow: 0 2px 20px #aa076b55;
  padding-bottom: 36px;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px 0 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}

nav a:hover {
  color: #ffd700;
}

.hero {
  text-align: center;
  margin-top: 35px;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #61045fcc;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #e7eaf0;
}

.cta {
  display: inline-block;
  padding: 15px 36px;
  background: #ffd700;
  color: #61045f;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.15rem;
  box-shadow: 0 4px 20px #aa076b33;
  transition: background 0.2s;
}

.cta:hover {
  background: #fff;
  color: #aa076b;
}

.cta.secondary {
  background: #61045f;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.section {
  padding: 60px 40px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px;
}

.card {
  background: #231f26;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 18px #aa076b33;
  transition: transform 0.18s;
}

.card:hover {
  transform: translateY(-8px) scale(1.025);
}

.card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 13px;
  box-shadow: 0 2px 12px #aa076b33;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.card img:hover {
  box-shadow: 0 4px 30px #ffd70055;
}

.card h3 {
  color: #ffd700;
  font-size: 1.15rem;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.card p {
  font-size: 1rem;
  color: #ddd;
  margin: 0;
}

.dark {
  background: linear-gradient(135deg, #61045f, #231f26 85%);
}

.repair-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}

.repair-list h3 {
  color: #ffd700;
  font-size: 1.07rem;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}

footer {
  text-align: center;
  padding: 34px 35px;
  background: #231f26;
  color: #fff;
  font-size: 1.07rem;
}

.footer-contact {
  margin-bottom: 11px;
}

.footer-contact p,
.footer-contact .address-row {
  margin: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact a {
  color: #ffd700;
  text-decoration: none;
  word-break: break-word;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.address-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.map-iframe {
  border-radius: 10px;
  box-shadow: 0 2px 8px #61045f99;
  width: 180px;
  height: 120px;
  border: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(25,28,36,0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 380px;
  width: 90vw;
  border-radius: 14px;
  box-shadow: 0 4px 28px #aa076b77;
}

.close {
  color: #ffd700;
  position: absolute;
  top: 30px;
  right: 45px;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 101;
}

.close:hover,
.close:focus {
  color: #fff;
}

#caption {
  margin: 14px auto 0 auto;
  text-align: center;
  font-size: 1.3rem;
  color: #ffd700;
}

@media (max-width: 600px) {
  .company-header {
    padding: 18px 0 5px 0;
  }

  .company-name {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
  }

  .slogan {
    font-size: 1rem;
  }

  nav ul {
    gap: 18px;
  }

  .section {
    padding: 35px 9px;
  }

  .map-iframe {
    width: 110px;
    height: 80px;
  }
  .modal-content {
    max-width: 95vw;
  }
}
