* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.site-footer {
  background-color: #0f172a;
  padding: 30px 20px;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-socials a {
  color: #94a3b8;
  font-size: 24px;
  text-decoration: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Base Hover Effect */
.footer-socials a:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Brand Color Hover Effects */
.footer-socials a[aria-label="Instagram"]:hover {
  color: #e1306c;
}

.footer-socials a[aria-label="LinkedIn"]:hover {
  color: #0a66c2;
}

.footer-socials a[aria-label="X"]:hover {
  color: #ffffff;
}

.contact-herol {
  display: grid;
  grid-template-columns: 30% 70%; /* adjust ratio as you like */
  align-items: center;
  width: 100%;
  gap: 20px;
}

.contact-herol__image img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  display: block;
}


.contact-hero__content {
  padding: 10px;
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 268px) {
  .contact-hero {
    /* Stack vertically on small screens so text remains legible */
    grid-template-columns: 1fr; 
  }
}

.contact-hero {
  position: relative;
  min-height: 57rem;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(rgba(15, 15, 30, 0.6), rgba(15, 15, 30, 0.6)),
              url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.contact-hero__content {
  padding: 0 70px 40px;
  max-width: 700px;
  margin-top: 7rem;
}

.contact-hero .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e5e7eb;
  margin-bottom: 14px;
}

.contact-hero .headline {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

@media (max-width: 900px) {
  .contact-hero {
    min-height: 240px;
  }

  .contact-hero__content {
    padding: 0 2px 30px;
  }

  .contact-hero .headline {
    font-size: 27px;
  }
}
.contact-hero__image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
}

.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 {
    gap: 12px;
    padding: 20px;
  }
  .social-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .wa-biz-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}
