* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
   padding-top: 70px; /* за да не се крие под navbar-а */
  background-color: #f4f4f4;
  color: #333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #e63946;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5em;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 8px 10px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e63946;
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
  min-width: 160px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #222;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: #e63946;
}

/* ОПРАВЕНО DROPDOWN МЕНЮ */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* веднага под бутона */
  left: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
  min-width: 160px;
  display: none;
}

/* За да не изчезва, когато курсорът е върху него */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

/* Responsive menu toggle */
.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-links li {
    text-align: center;
  }

  .menu-toggle {
    display: block;
    color: #222;
  }

  .nav-active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: none;
  }
}


.contact-section {
  padding: 3em 1em;
  max-width: 1200px;
  margin: auto;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contact-info {
  flex: 1 1 400px;
 background: linear-gradient(135deg, #00b8d4 0%, #6a11cb 100%);
  color: white;
  padding: 2em;
}


.contact-info h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

.contact-info p {
  margin-bottom: 1.5em;
  font-size: 1em;
}

.info-list {
  list-style: none;
  margin-bottom: 2em;
}

.info-list li {
  margin-bottom: 1em;
  font-size: 1em;
}

.info-list i {
  margin-right: 0.5em;
}

.social-icons a {
  margin-right: 1em;
  font-size: 1.3em;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #222;
}

.contact-form {

  flex: 1 1 400px;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1em;
  padding: 0.9em;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.contact-form button {
   background: linear-gradient(135deg, #00b8d4 0%, #6a11cb 100%);
  color: white;
  padding: 1em;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e5533c;
}

.map-container {
  margin-top: 2em;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

/* Респонсив дизайн */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .map-container iframe {
    height: 300px;
  }
}


#telegram{
  width: 10em;
  height: auto;
  margin-left: 3em;


  
  
}
#whatsapp{
  width:4em;
  height: auto;
  margin-left: 3em;
}
.contacts{
  display: flex;
}