.isl-footer {
  background: #050505;
  border-top: 1px solid rgba(255,184,0,0.15);
  padding: 70px 40px 30px;
  font-family: 'Raleway', sans-serif;
  position: relative; overflow: hidden;
}
.isl-footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.isl-footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 50px;
}

.isl-footer-brand p {
  color: rgba(255,255,255,0.45); font-size: 14px;
  line-height: 1.8; margin-top: 15px; max-width: 300px;
}
.isl-footer-name {
  font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
}
.isl-footer-sub {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 4px;
}

.isl-footer-heading {
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,184,0,0.2);
}

.isl-footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.isl-footer-links a {
  color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px;
  letter-spacing: 1px; transition: all 0.3s ease;
  display: flex; align-items: center; gap: 8px;
}
.isl-footer-links a::before {
  content: '→'; color: var(--gold); opacity: 0;
  transform: translateX(-5px); transition: all 0.3s ease; font-size: 11px;
}
.isl-footer-links a:hover { color: var(--gold); padding-left: 5px; }
.isl-footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.isl-social-row { display: flex; gap: 12px; margin-top: 20px; }
.isl-social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,184,0,0.25);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 14px; transition: all 0.3s ease; background: rgba(255,184,0,0.03);
}
.isl-social-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(255,184,0,0.1); box-shadow: 0 0 15px rgba(255,184,0,0.2);
}

.isl-footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
}
.isl-footer-copy { color: rgba(255,255,255,0.25); font-size: 12px; letter-spacing: 1px; }
.isl-footer-copy span { color: var(--gold); }
.isl-footer-tagline {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 3px; color: rgba(255,255,255,0.2); text-transform: uppercase;
}

@media (max-width: 768px) {
  .isl-footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .isl-footer { padding: 50px 20px 25px; }
  .isl-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
