@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f2ebd9 0%, #e0d4b8 50%, #d4c9a8 100%);
}

.section h2 {
  color: #667eea;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  margin: 20px auto 0;
  border-radius: 2px;
}
.section .lead {
  font-size: 1.2rem;
  color: #5a6c7d;
  font-weight: 400;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.12);
  transition: all 0.3s ease;
  background: rgba(249, 245, 237, 0.9);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15);
}
.card .card-body {
  padding: 30px;
  min-width: 0;
}
.card .card-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 20px;
}
.card .card-text {
  color: #5a6c7d;
  line-height: 1.7;
}
.card .card-img-top {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.card:hover .card-img-top {
  transform: scale(1.05);
}
.card .carousel-inner {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}
.card .carousel-item {
  height: 100%;
}
.card .carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.badge {
  display: inline-block;
  max-width: 100%;
  min-width: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #f9f5ed;
  border-radius: 20px;
  padding: 8px 16px;
  margin: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  white-space: normal !important;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.form-control {
  border: 2px solid #e8dfc8;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(249, 245, 237, 0.8);
}
.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  background: #f9f5ed;
}

.form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.phone-prefix-select {
  max-width: 160px;
}

.char-counter {
  font-size: 0.72rem;
  color: #5a6c7d;
  text-align: right;
  margin-top: 4px;
  transition: all 0.3s ease;
}
.char-counter.char-counter--warning {
  color: #e67e22;
}
.char-counter.char-counter--limit {
  color: #e74c3c;
  font-weight: 600;
}

.lang-btn {
  height: 35px;
  width: 55px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid rgba(249, 245, 237, 0.3);
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.1);
}
.lang-btn:hover {
  border-color: #f9f5ed;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-top {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #f9f5ed;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
}

.header-bottom {
  background: rgba(249, 245, 237, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header-bottom h2 {
  font-weight: 600;
  color: #2c3e50;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-logo {
  max-height: 50px;
}

@media (max-width: 767.98px) {
  .header-top {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .header-top h1 {
    font-size: 1.3rem;
  }

  .header-bottom {
    padding: 0.75rem 1rem;
  }

  .header-bottom h2 {
    font-size: 1rem;
  }

  .header-logo {
    max-height: 42px;
  }

  .lang-btn {
    width: 46px;
    height: 30px;
  }
}

.footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #f9f5ed;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}
.footer h5 {
  color: #ede4d3;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer p {
  color: #c8bfa8;
  line-height: 1.7;
}
.footer a {
  color: #ede4d3;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #667eea;
}

.section {
  padding: 80px 0;
  background: rgba(249, 245, 237, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.05) 50%, transparent 70%);
  pointer-events: none;
}
.section:nth-child(even) {
  background: rgba(248, 249, 250, 0.8);
}
.section:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(118, 75, 162, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.map-iframe {
  border: 0;
}

.ratio--map {
  --bs-aspect-ratio: 45%;
}

.company-logo {
  height: 60px;
  width: auto;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}
.company-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .lang-btn {
    height: 30px;
    width: 45px;
  }
  .section {
    padding: 60px 0;
  }
  .section h2 {
    font-size: 2rem;
  }
  .card-body {
    padding: 20px;
  }
  .btn-primary {
    padding: 10px 25px;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .section h2 {
    font-size: 1.8rem;
  }
  .lang-btn {
    height: 25px;
    width: 35px;
  }
  .header-bottom h2 {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=main.css.map */