/* ─── GLOBAL ─── */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden; /* if you still need to hide horizontal scroll */
}
main {
  flex: 1;
}

footer {
  width: 100%;
  background: #e0e0e0;
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  box-sizing: border-box;
}
.footer-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Header Bar */
.header-bar {
  width: 100%;
  max-width: 1440px;
  height: 60px;
  background: rgba(235,235,235,0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 10;
}
/* Navbar */
.navbar {
  width: 100vw;
  height: 60px;
  background: rgba(235,235,235,0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 100;
}
.menu-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #000;
  padding: 0;
}
.nav-left, .nav-right {
  font-size: 20px;
}
.nav-right .phone {
  margin-left: 20px;
}

/* Footer */
/* .footer {
  width: 100vw;
  height: 60px;
  background: rgba(235,235,235,0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  margin-top: 60px;
}
.footer-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left, .footer-right {
  font-size: 20px;
}
.footer-right .phone {
  margin-left: 20px;
}
.copyright {
  color: #000;
}
.menu, .contact-socials-header, .phone-header {
  font-size: 20px;
}

.phone-header {
  margin-left: 20px;
} */

/* Main Title */
.contact-title {
  font-size: 3vw;
  font-weight: 400;
  margin: 80px 0 24px 5vw;
  max-width: 900px;
}

/* Email */
.email, .phone-main {
  font-size: 1.5vw;
  margin: 16px 0 0 5vw;
  display: flex;
  align-items: center;
}

.email-icon, .phone-icon {
  width: 38px;
  height: 38px;
  background: #1D1B20;
  border-radius: 50%;
  margin-right: 12px;
}

.phone-icon {
  width: 42px;
  height: 42px;
}

/* Socials Info */
.socials-info {
  font-size: 2vw;
  margin: 40px 0 24px 5vw;
  max-width: 900px;
}

/* Social Images */
.social-img1, .social-img2, .social-img3 {
  display: inline-block;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin: 24px 2vw 0 2vw;
}

.social-img1 {
  width: 120px;
  height: 120px;
  background-image: url('../SRC/images/image5.png');
}

.social-img2 {
  width: 100px;
  height: 100px;
  background-image: url('../SRC/images/image7.png');
}

.social-img3 {
  width: 90px;
  height: 90px;
  background-image: url('../SRC/images/image8.png');
}

/* Decorative Circles */
.ellipse11, .ellipse12, .ellipse5, .ellipse6 {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.ellipse11 {
  width: 30vw;
  height: 30vw;
  left: 72vw;
  top: -3vw;
  background: #964006;
}

.ellipse12 {
  width: 25vw;
  height: 25vw;
  left: 75vw;
  top: 0vw;
  background: #fff;
}

/* .ellipse5 {
  width: 30vw;
  height: 30vw;
  left: -10vw;
  top: 70vw;
  background: #013583;
}

.ellipse6 {
  width: 25vw;
  height: 25vw;
  left: -7vw;
  top: 72vw;
  background: #fff; */


/* Hide dropdown by default */
.dropdown-menu {
  display: none;
  position: fixed;      /* ← make it stick to the viewport */
  top: 60px;            /* same offset below your sticky header */
  left: 40px;           /* adjust as needed to line up under “Menu” */
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-radius: 8px;
  min-width: 200px;
  z-index: 999;
  flex-direction: column;
}

/* Show dropdown when .show class is added */
.dropdown-menu.show {
  display: flex;
}

/* Style dropdown links */
.dropdown-menu a {
  display: block;
  padding: 16px 24px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid #eee;
  background: none;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .contact-title {
    font-size: 28px;
    margin: 60px 0 16px 6vw;
  }

  .email, .phone-main {
    font-size: 16px;
    margin-left: 6vw;
  }

  .socials-info {
    font-size: 16px;
    margin-left: 6vw;
  }

  .social-img1, .social-img2, .social-img3 {
    width: 60px;
    height: 60px;
  }
}

.phone-btn {
  /* display: inline-block;
  padding: 12px 28px;
  background: #964006; */
  color: #263cca;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  margin: 16px 0 16px 16px;
}
.phone-btn:hover {
  background: #d3d6db;
}

.social-links {
  display: flex;
  gap: 24px;
  margin: 24px 0 0 5vw;
}

.social-btn {
  display: flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  background: #ededed;
  color: #013583;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.social-btn .social-icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.social-btn.facebook:hover {
  background: #013583;
  color: #fff;
}
.social-btn.instagram:hover {
  background: #964006;
  color: #fff;
}
/* 
.footer {
  width: 100vw;
  background: #e0e0e0;
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
  margin-top: 700px;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 16px;
}

.footer-left, .footer-right {
  font-size: 18px;
}

.footer-right .phone {
  margin-left: 20px;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-left, .footer-right {
    font-size: 16px;
  }
} */