body {
  overflow-x: hidden;
}
.contact-section {
  padding: 40px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  column-gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-block {
  margin-bottom: 15px;
  border: #0d1576 1px solid;
  padding: 18px 16px;
  border-radius: 16px;
}

.contact-block h3 {
  margin-bottom: 8px;
  color: var(--blue-primary);
}

.contact-block p {
  line-height: 1.6;
  color: #333;
}

.contact-link {
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: 500;
}

/*BUTTONs*/
.contact-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 8px;
}

.contact-btn.primary {
  background: var(--blue-primary);
  color: #fff;
}

.contact-btn.secondary {
  border: 1px solid var(--blue-primary);
  color: #ffffff;
  background: var(--blue-primary);
}

/*Phone ainmatoin*/

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--blue-primary);
  font-weight: 500;
}

.phone-icon {
  position: relative;
  font-size: 20px;
  animation: phoneFloat 3.5s ease-in-out infinite;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-separator {
  color: #0d1576;
  font-weight: 500;
}

@keyframes phoneFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  6% {
    transform: translateY(-6px) rotate(-10deg);
  }
  12% {
    transform: translateY(-6px) rotate(10deg);
  }
  18% {
    transform: translateY(-6px) rotate(-7deg);
  }
  24% {
    transform: translateY(-6px) rotate(7deg);
  }
  30% {
    transform: translateY(-6px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
/*center map work*/
.contact-map {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 16px;
}

/*right*/

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-timings {
  border: #0d1576 1.33px solid;
  border-radius: 25px;
  padding: 20px 24px;
  background: #ffffff;
  max-width: 100%;
}

.contact-timings h3 {
  margin-bottom: 14px;
  color: var(--blue-primary);
}

.timing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.day {
  font-weight: 600;
  color: #111;
  min-width: 130px;
}

.time {
  color: #374151;
  text-align: right;
  flex: 1;
}
.time.stacked {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Social Cards*/

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 12px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: unset;
  max-width: 100%;
  padding: 14px 22px;
  border-radius: 14px;
  box-sizing: border-box;
  background: #ffffff;
  text-decoration: none;
  color: #111;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (hover: hover) {
  .social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.social-icon.instagram-icon {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  color: #ffffff;
}

.social-card.youtube .social-icon {
  background: #ff0000;
}

.social-username {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  padding-right: 4px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 24px 16px;
  }
  .contact-social {
    margin-top: 32px;
    align-items: center;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .social-card {
    min-width: 100%;
    width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-right {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}

/*@media (min-width: 481px) and (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .contact-info {
    gap: 22px;
  }

  .contact-info h3 {
    font-size: 1.2rem;
  }

  .contact-info p,
  .contact-info a {
    font-size: 0.95rem;
  }
  .whatsapp-btn {
    padding: 12px 26px;
    font-size: 0.95rem;
  }
  .contact-social {
    align-items: flex-start;
    padding-right: 0;
  }
}*/
/* WhatsApp floating button */
.contact-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;

  width: 65px;
  height: 65px;

  background-color: #25d366; /* WhatsApp green */
  color: #ffffff;

  border-radius: 50%;
  font-size: 26px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.25);
  z-index: 2000;
}

.contact-whatsapp-float svg {
  width: 26px;
  height: 26px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(44, 104, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(24, 37, 58, 0);
  }
}

.contact-whatsapp-float {
  animation: whatsappPulse 1.4s ease-in-out infinite;
}
