/* Email Contact Stripe */
.contact-stripe {
  background: linear-gradient(
    135deg,
    rgba(14, 17, 23, 0.95),
    rgba(14, 17, 23, 0.85)
  );
  backdrop-filter: blur(25px);
  border-top: 1px solid rgba(33, 150, 243, 0.15);
  border-bottom: 1px solid rgba(33, 150, 243, 0.08);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-stripe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(33, 150, 243, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-stripe::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--seed-color) 20%,
    var(--seed-variant) 80%,
    transparent 100%
  );
}

.contact-info {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.contact-info .contact-label {
  color: var(--on-surface-variant);
  font-size: 1rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.contact-email {
  color: var(--seed-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-email::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--seed-color), var(--seed-variant));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-email:hover::after {
  width: 100%;
}

.contact-email:hover {
  color: #00bfff;
  transform: translateY(-1px);
}

.contact-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--seed-color),
    transparent
  );
  opacity: 0.6;
}

.contact-name {
  color: var(--on-surface);
  font-weight: 500;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.copy-btn {
  background: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  color: var(--seed-color);
  padding: 0.8rem 1.5rem;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.copy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.copy-btn:hover::before {
  left: 100%;
}

.copy-btn:hover {
  background: rgba(33, 150, 243, 0.15);
  border-color: rgba(33, 150, 243, 0.3);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

.copy-btn.copied {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
  color: #4caf50;
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    rgba(14, 17, 23, 0.98) 0%,
    rgba(14, 17, 23, 0.95) 100%
  );
  padding: 4rem 2rem 0;
  border-top: 1px solid rgba(33, 150, 243, 0.08);
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.footer-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-section:hover::before {
  opacity: 1;
}

.footer-section:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(33, 150, 243, 0.15);
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--on-surface);
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--seed-color), var(--seed-variant));
  border-radius: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--seed-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -10px;
}

.footer-links a:hover {
  color: var(--seed-color);
  transform: translateX(8px);
}

/* Copyright Section - Moved to bottom with black background */
.footer-bottom {
  background: #000000;
  color: #666666;
  text-align: center;
  padding: 1.5rem 2rem;
  margin: 0 -2rem -4rem -2rem;
  font-size: 0.9rem;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(102, 102, 102, 0.5) 50%,
    transparent 100%
  );
}

.footer-bottom p {
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}
