
/* ==========================================
BASE FOOTER WRAPPER
========================================== */
.dr1060footer {
  position: relative;
  color: #e8eef6;
  background: #070b14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* ==========================================
BACKGROUND IMAGE
========================================== */
.dr1060footerBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.dr1060footerBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: brightness(1.35) contrast(1.2) saturate(1.25);
  transform: scale(1.05);
}

/* ==========================================
MAIN WRAP
========================================== */
.dr1060footerWrap {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin: auto;
  padding: 70px 0 40px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 35px;
}

/* ==========================================
BRAND SECTION
========================================== */
.dr1060footerBrand h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 10px 0;
  letter-spacing: 0.2px;
}

.dr1060footerTag {
  color: #7cc7ff;
  font-weight: 500;
  font-size: 0.95rem;
}

.dr1060footerSummary {
  margin-top: 12px;
  line-height: 1.7;
  color: #b7c3d6;
  font-size: 0.95rem;
}

/* ==========================================
🔥 BIG PREMIUM LOGO (UPDATED)
========================================== */
.dr1060footerLogo {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 18px;
}

/* MAIN LOGO */
.dr1060footerLogo img {
  width: 170px;              /* 🔥 BIG LOGO */
  max-width: 100%;
  height: auto;

  border-radius: 18px;
  padding: 10px;

  background: rgba(255, 255, 255, 0.06);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  transition: all 0.35s ease;
}

/* HOVER */
.dr1060footerLogo img:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(124, 199, 255, 0.25),
    inset 0 0 0 1px rgba(124, 199, 255, 0.3);
}

/* OUTER FRAME GLOW */
.dr1060footerLogo::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  border: 1px solid rgba(124, 199, 255, 0.18);
  opacity: 0;
  transition: 0.3s ease;
}

.dr1060footerLogo:hover::after {
  opacity: 1;
}

/* ==========================================
SECTION TITLES
========================================== */
.dr1060footerSection h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

/* ==========================================
LISTS
========================================== */
.dr1060footerSection ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dr1060footerSection li {
  margin-bottom: 10px;
}

.dr1060footerSection a {
  color: #aab6c5;
  text-decoration: none;
  font-size: 0.92rem;
  transition: 0.2s ease;
  position: relative;
}

.dr1060footerSection a:hover {
  color: #7cc7ff;
}

.dr1060footerSection a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #7cc7ff;
  transition: 0.25s ease;
}

.dr1060footerSection a:hover::after {
  width: 100%;
}

/* ==========================================
TEXT
========================================== */
.dr1060footerSection p {
  margin: 0 0 10px;
  color: #b7c3d6;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================
QR SECTION
========================================== */
.dr1060footerQR {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dr1060footerQR img {
  width: 100px;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.dr1060footerQR span {
  font-size: 0.85rem;
  color: #9fb0c7;
}

/* ==========================================
BOTTOM BAR
========================================== */
.dr1060footerBottom {
  position: relative;
  z-index: 2;
  padding: 18px 10px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050810;
}

.dr1060footerBottom p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: #9fb0c7;
}

.dr1060footerBottom strong {
  color: #7cc7ff;
}

/* ==========================================
POWERED BY
========================================== */
.dr1060footerPoweredBy {
  margin: 0;
  font-size: 0.9rem;
  color: #9fb0c7;
}

.dr1060footerPoweredBy a {
  text-decoration: none;
  margin-left: 6px;
  position: relative;
}

.dr1060footerPoweredBy a strong {
  color: #7cc7ff;
  transition: 0.25s ease;
}

.dr1060footerPoweredBy a:hover strong {
  color: #fff;
  text-shadow: 0 0 12px rgba(124, 199, 255, 0.3);
}

/* underline */
.dr1060footerPoweredBy a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #7cc7ff;
  transition: 0.25s ease;
}

.dr1060footerPoweredBy a:hover::after {
  width: 100%;
}

/* ==========================================
RESPONSIVE
========================================== */
@media (max-width: 1100px) {
  .dr1060footerWrap {
    grid-template-columns: 1fr 1fr;
  }

  .dr1060footerLogo img {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .dr1060footerWrap {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 28px;
  }

  .dr1060footerLogo img {
    width: 130px;
  }
}