/* ---------------- GLOBAL STYLES ---------------- */

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

body {
  font-family: 'poppins', sans-serif;
  background: #fff;
  color: #222;
}

/* ---------------- PAGE HEADING ---------------- */

.ak-page-head {
  padding: 90px 60px 10px;
}

.about-ak-xt-title {
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  text-align: right;
}

.about-ak-xt-black {
  color: #111;
}

/* ---------------- CONTACT SECTION ---------------- */

.contact-ak-section {
  max-width: 1300px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
  margin-bottom: 100px;
}

.contact-ak-left {
  flex: 1 1 380px;
  max-width: 520px;
}

.contact-ak-desc {
  color: #8f8f8f;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-ak-image {
  width: 100%;
  min-height: 220px;
  border-radius: 0px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ---------------- RIGHT SIDE ---------------- */

.contact-ak-right {
  flex: 1 1 500px;
}

.contact-ak-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-ak-info-item {
  margin-bottom: 14px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  line-height: 1.5;
  cursor: pointer;
}

.contact-ak-info-label {
  font-weight: 600;
  font-size: 1.15rem;
}

.contact-ak-info-ico {
  min-width: 18px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ---------------- SAVE CONTACT ---------------- */

.contact-ak-save {
  margin-top: 30px;
}

.contact-ak-save-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.contact-ak-qr {
  width: 135px;
  height: 135px;
  border-radius: 10px;
  object-fit: contain;
  background: #eee;
  margin-bottom: 16px;
  cursor: pointer;
}
.home-icon{
  width: 18px;
  height: 18px;
  margin-top: 5px;
 
}

/* ---------------- SOCIAL BUTTON ---------------- */
.contact-ak-socials{
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.ak-btn-contact-Btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
  margin-right: 10px;
}
.ak-btn-contact-svgContainer {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(150,150,150,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.ak-btn-contact-BG {
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 10px;
  z-index: -1;
  transition: 0.3s ease;
}
.ak-btn-contact-Btn:hover .ak-btn-contact-BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}
.ak-btn-contact-Btn:hover .ak-btn-contact-svgContainer {
  background: rgba(240,240,240,0.5);
  backdrop-filter: blur(4px);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .about-ak-xt-title {
    font-size: 4rem;
    text-align: center;
  }

  .contact-ak-section {
    padding: 25px 20px;
  }

  .contact-ak-desc {
    font-size: 16px;
  }

  .contact-ak-qr {
    width: 95px;
    height: 95px;
  }
}

@media (max-width: 600px) {
  .about-ak-xt-title {
    font-size: 4rem;
  }
  .ak-page-head {
    padding: 60px 10px 10px;
  }

  .contact-ak-section {
    padding: 15px 14px;
    gap: 20px;
  }

  .contact-ak-image {
    min-height: 150px;
  }

  .contact-ak-qr {
    width: 80px;
    height: 80px;
  }
}
/* QR Modal Styles */
.qr-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999; /* Above everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}

.qr-modal-content {
  position: relative;
  margin: 10% auto;
  padding: 0;
  width: 300px;
  max-width: 90%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.qr-modal-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  padding: 20px;
}

.qr-modal-close {
  color: #aaa;
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.qr-modal-close:hover {
  color: #222;
}
