/* 5-column grid layout */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 500px;
}

/* Common Circular Icon Style */
.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 28px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.twitter {
  background: #1da1f2;
}

.whatsapp {
  background: #25d366;
}



/* --- ROW 2 BRAND BACKGROUNDS --- */
.telegram {
  background: #2aaaee;
}

.whatsapp-biz {
  background: #25d366;
  font-weight: bold;
  font-size: 20px;
}

/* Custom WhatsApp Business "B" Bubble */
.wa-biz-icon {
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

/* --- ROW 3 BRAND BACKGROUNDS --- */
.linkedin {
  background: #0a66c2;
}



/* Responsive scaling for mobile devices */
@media (max-width: 480px) {
  .icon-grid {
margin-bottom: 40px;  
}

  .social-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .wa-biz-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}


.contact-main {
  position: relative;
  display: grid;
  grid-template-columns: 380px 1fr;
  margin: 2rem;
}


.contact-info .eyebrow {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.contact-info .headline {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
  margin-bottom: 30px;
}

.contact-info__divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 30px;
}

.contact-info__grid {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.contact-info__block h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 5px;
}

.contact-info__block p,
.contact-info__block a {
  font-size: 19px;
  color: #4338ca;
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: 21px;
}

.contact-info__social {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}

.contact-info__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

/* Right form column */
.contact-form-panel {
  background: #eceafc;
  padding: 50px 60px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__field label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.contact-form__field .required {
  color: #dc2626;
  font-size: 15px;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #f3f2fb;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
}

.contact-form__field textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #2f27ce;
  background: #ffffff;
}

.contact-form__submit {
  background: #2f27ce;
  color: #ffffff;
  border: none;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.contact-form__submit:hover {
  background: #241db8;
}

.contact-form__success {
  background: #dcfce7;
  color: #166534;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-form__error {
  color: #dc2626;
  font-size: 12.5px;
  margin-top: 6px;
}

.contact-main .scroll-top {
  position: absolute;
  right: 40px;
  bottom: -19px;
  background: #2f27ce;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.contact-main .scroll-top:hover {
  background: #241db8;
}

/* Container - Flexbox centering for all screen sizes */
.address-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Map Card - Centered with flexible max-width */
.map-card {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.map-card a {
  width: 100%;
  display: block;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.map-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.map-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
margin-top: 0.2rem;
}

.map-wrapper:hover .map-image {
  transform: scale(1.03);
}

.map-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a73e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* Responsive Mobile Viewport Adjustments */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background-color: #25d366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
    display: block;
}

/* Optional pulse animation to draw attention */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 900px) {
  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 40px 30px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
.icon-grid {
margin-bottom:1rem;
}

.contact-info {
    padding: 0px;
}

.address-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .address-info h2 {
    font-size: 1.8rem;
  }

  .map-card {
    max-width: 100%;
margin-left: 5rem;
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .address-section {
    margin: -33px -55px;
    padding: 0 16px; /* Prevents edge touching on small mobile screens */
  }

  .map-image {
    height: 240px;   /* Proportionate height for mobile devices */
  }

  .map-badge {
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    padding: 6px 10px;
  }
}
