@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css);
.contact-page {
  margin: 0 !important;
  padding: 0 !important;
}
.contact-page .content-container {
  padding: 0 !important;
  margin: 0 !important;
}
.contact-page .contact-wrapper {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.contact-page .contact-wrapper * {
  box-sizing: border-box;
}

.main-content {
  padding: 0 !important;
  margin: 0 !important;
}

.contact-container {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 30px;
}
.contact-header h1 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-header p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.contact-item {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}
.contact-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.contact-item a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: #764ba2;
}

.tech-quote {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.tech-quote::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s infinite;
}
.tech-quote blockquote {
  position: relative;
  z-index: 2;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.tech-quote cite {
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 1rem;
}
.tech-quote .quote-icon {
  font-size: 3rem;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .contact-page .contact-wrapper {
    padding: 20px 15px;
    min-height: 100vh;
  }
  .contact-container {
    padding: 30px 20px;
    margin: 0;
  }
  .contact-header h1 {
    font-size: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .contact-page .contact-wrapper {
    padding: 15px 10px;
  }
  .contact-container {
    padding: 25px 15px;
  }
  .contact-header h1 {
    font-size: 1.75rem;
  }
}
