html,
body {
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
}

.phone-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.phone-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.email-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.email-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.navbar {
  font-family: "Dosis", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 999;
  background: transparent;
  transition: background-color 0.4s ease, padding 0.3s ease;
  box-sizing: border-box;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ebf5fb;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .nav-links li a:hover {
  color: rgba(229, 229, 229, 0.969);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 12px 8px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
  }
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.97);
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    padding: 11px 0px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.13);
    line-height: 0;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 7px 4px;
  }
  .nav-links {
    gap: 7px;
  }
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0b1120;
  color: #ffffff;
}

.main-contact-container {
  display: flex;
  max-width: 1200px;
  margin: 90px auto 30px auto;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}

.contact-section {
  flex: 1 1 40%;
  background-color: #1e293b;
  padding: 20px;
  border-radius: 8px;
  box-sizing: border-box;
}

.contact-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1rem;
  color: #b0b8c1;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  background-color: #0b1120;
  padding: 15px;
  border-radius: 50%;
  color: #3b82f6;
}

.contact-item span {
  text-align: left;
}

.contact-item span p {
  margin: 0;
  font-size: 0.9rem;
  color: #b0b8c1;
}

.contact-item span .title {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 25px;
}

.social-icons {
  display: flex;
  justify-content: space-evenly;
}

.social-icons a {
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
}

.social-icons a:hover {
  color: #3b82f6;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

button[type="submit"] {
  padding: 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

@media (max-width: 1024px) {
  .main-contact-container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-contact-container {
    max-width: 100vw;
    padding: 6vw 0 2vw 0;
  }
}
@media (max-width: 768px) {
  .main-contact-container {
    flex-direction: column;
    margin: 68px auto 20px auto;
    gap: 12px;
    padding: 4vw 2vw;
  }
  .contact-section,
  .form-section {
    flex: 1 1 100%;
    margin: 0;
  }
  .form-section {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .main-contact-container {
    padding: 1vw 1vw;
  }
  .contact-section,
  .form-section {
    padding: 11px 4vw;
  }
  .form-section iframe {
    height: 420px;
  }
}

.footer {
  width: 100%;
  background: linear-gradient(90deg, #181e26 0%, #28374c 100%);
  color: #f4f6fb;
  padding-top: 3vw;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
  position: relative;
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  padding: 0 2.5vw;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 180px;
  flex: 1;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 1.1em;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 7px;
}
.footer-col h4::after {
  content: "";
  display: block;
  width: 32px;
  height: 2.5px;
  background: #00b4d8;
  border-radius: 2px;
  margin-top: 3px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  display: flex;
  align-items: flex-start;
}
.footer-col ul li i {
  margin-right: 10px;
  font-size: clamp(1rem, 1.8vw, 1.1em);
  color: #00b4d8;
  margin-top: 2px;
}
.footer-col ul li a {
  color: #e3e8f3;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}
.footer-col ul li a:hover,
.footer-col ul li a:focus {
  color: #00b4d8;
  text-decoration: underline;
  outline: none;
}
.footer-divider {
  border: none;
  height: 1px;
  background: #333;
  margin: 0;
  width: 88%;
}
.footer-bottom {
  text-align: center;
  padding: 1em 0 0.6em 0;
  font-size: clamp(0.8rem, 1.2vw, 0.98rem);
  color: #bbb;
  background: #151515;
  letter-spacing: 0.01em;
}

@media (max-width: 1200px) {
  .footer-container {
    max-width: 970px;
    padding-left: 3vw;
    padding-right: 3vw;
    gap: 2vw;
  }
}
@media (max-width: 900px) {
  .footer-container {
    max-width: 700px;
    padding-left: 4vw;
    padding-right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 2vw;
  }
  .footer-col {
    margin-bottom: 1rem;
    width: 100%;
    min-width: 120px;
  }
}
@media (max-width: 700px) {
  .footer-container {
    max-width: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .footer-col {
    margin-bottom: 1rem;
  }
  .footer-divider {
    width: 94%;
  }
}
@media (max-width: 600px) {
  .footer {
    padding-top: 20px;
  }
  .footer-container {
    padding: 0 4.5vw;
  }
  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.7em;
  }
  .footer-col ul li,
  .footer-col ul li a {
    font-size: 0.85rem;
  }
  .footer-bottom {
    padding: 0.9em 0 0.5em 0;
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .custom-form {
    padding: 0 4.5vw;
  }
}

.map-section {
  margin-top: 10px;
  text-align: center;
  background-color: #f9f9f900;
  padding: 14px 20px;
}

.map-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* optional max width */
  padding-bottom: 65%; /* controls the height — lower % = shorter */
  height: 0;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
