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

body {
  font-family: Arial, sans-serif;
  background: #0d1117;
  color: #fff;
  scroll-behavior: smooth;
}

.section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem 2rem;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 2rem;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(88, 166, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #58a6ff, transparent);
  opacity: 0.3;
}

.navbar nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.navbar a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #58a6ff, #238636);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.navbar a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(88, 166, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.navbar a:hover {
  color: #58a6ff;
  transform: translateY(-2px);
}

.navbar a:hover::before {
  width: 100%;
}

.navbar a:hover::after {
  opacity: 1;
}

.hero {
  background: linear-gradient(135deg, #0d1117, #161b22, #21262d);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(35, 134, 54, 0.1) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particles::before,
.particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #58a6ff;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particles::after {
  top: 80%;
  right: 20%;
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #58a6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero .accent {
  background: linear-gradient(45deg, #58a6ff, #238636);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #8b949e;
}

.hero-description {
  font-size: 1.1rem;
  color: #8b949e;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #58a6ff, #238636);
  color: white;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 166, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #58a6ff;
  border: 2px solid #58a6ff;
}

.btn-secondary:hover {
  background: #58a6ff;
  color: white;
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #58a6ff);
  margin: 0 auto;
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #58a6ff;
}

.about, .contact {
  background: #161b22;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #fff, #58a6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #8b949e;
  margin-bottom: 2rem;
}

.about-text b {
  color: #58a6ff;
  font-weight: 600;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.profile-picture {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 250px;
  height: 250px;
  background: linear-gradient(145deg, #21262d, #161b22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  animation: profilePulse 3s ease-in-out infinite;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #58a6ff, #238636, #58a6ff);
  border-radius: 50%;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

.avatar {
  font-size: 4rem;
  animation: avatarFloat 2s ease-in-out infinite alternate;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  animation: avatarFloat 2s ease-in-out infinite alternate;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-item {
  position: absolute;
  font-size: 1.5rem;
  background: rgba(88, 166, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(88, 166, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatAround 6s ease-in-out infinite;
}

.float-item.code {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
  color: #fff;
  font-weight: bold;
}

.float-item.react {
  top: 70%;
  right: 15%;
  animation-delay: 1.5s;
}

.float-item.node {
  top: 80%;
  left: 20%;
  animation-delay: 3s;
}

.float-item.js {
  top: 20%;
  left: 10%;
  animation-delay: 4.5s;
}

@keyframes profilePulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(88, 166, 255, 0.6);
  }
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes avatarFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes floatAround {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(90deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  75% {
    transform: translateY(-10px) rotate(270deg);
  }
}

.skills {
  background: #0d1117;
  text-align: center;
}

.skills h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #58a6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  width: 100%;
}

.skill-category {
  background: linear-gradient(145deg, #161b22, #21262d);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(88, 166, 255, 0.1);
  transition: all 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(88, 166, 255, 0.3);
}

.skill-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #58a6ff;
  position: relative;
}

.skill-category h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(45deg, #58a6ff, #238636);
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(13, 17, 23, 0.5);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(88, 166, 255, 0.05);
  transform: translateX(5px);
}

.skill-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, rgba(88, 166, 255, 0.1), rgba(35, 134, 54, 0.1));
  border-radius: 10px;
  border: 1px solid rgba(88, 166, 255, 0.2);
}

.skill-info {
  flex: 1;
  text-align: left;
}

.skill-name {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.skill-bar {
  width: 100%;
  height: 6px;
  background: rgba(139, 148, 158, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(45deg, #58a6ff, #238636);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: skillShine 2s ease-in-out infinite;
}

.skill-percentage {
  font-size: 0.8rem;
  color: #8b949e;
  font-weight: 500;
}

@keyframes skillShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .skill-category {
    padding: 1.5rem;
  }
  
  .skill-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .skill-info {
    text-align: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-text {
    text-align: center;
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
  
  .image-container {
    width: 250px;
    height: 250px;
  }
  
  .image-placeholder {
    width: 200px;
    height: 200px;
  }
  
  .avatar {
    font-size: 3rem;
  }
  
  .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .navbar nav {
    gap: 1.5rem;
  }
  
  .navbar a {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #58a6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 800px;
  width: 100%;
}

.projects {
  background: #161b22;
}

.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #58a6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #8b949e;
  margin-bottom: 3rem;
}

.projects .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  width: 100%;
}

.card {
  background: linear-gradient(145deg, #0d1117, #161b22);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(88, 166, 255, 0.1);
  position: relative;
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(88, 166, 255, 0.05), rgba(35, 134, 54, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(88, 166, 255, 0.2);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #21262d, #161b22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image {
  font-size: 3rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.card:hover .placeholder-image {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.card:hover .card-overlay {
  opacity: 1;
  pointer-events: auto;
}

.card-link {
  color: #58a6ff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid #58a6ff;
  border-radius: 25px;
  transition: all 0.3s ease;
  z-index: 20;
  position: relative;
  display: inline-block;
}

.card-link:hover {
  background: #58a6ff;
  color: white;
  transform: scale(1.05);
}

.delete-project-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(220, 53, 69, 0.8);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}

.card-overlay:hover .delete-project-btn {
  opacity: 1;
}

.delete-project-btn:hover {
  background: rgba(220, 53, 69, 1);
  transform: scale(1.1);
}

.project-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(88, 166, 255, 0.1);
}

.project-meta small {
  color: #6c757d;
  font-size: 0.75rem;
}

.user-project {
  border: 2px solid rgba(88, 166, 255, 0.3);
  position: relative;
}

.user-project::before {
  content: '✨ New';
  position: absolute;
  top: -10px;
  left: 20px;
  background: linear-gradient(45deg, #58a6ff, #238636);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 10;
}

.card-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-content p {
  color: #8b949e;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(88, 166, 255, 0.1);
  color: #58a6ff;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(88, 166, 255, 0.2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 500px;
  margin: 2rem auto 0;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  border-bottom: 2px solid rgba(139, 148, 158, 0.3);
  transition: all 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  color: #8b949e;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: #58a6ff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #58a6ff;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #58a6ff, #238636);
  transition: width 0.3s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #128C7E) !important;
}

.whatsapp-btn:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

.email-btn {
  background: linear-gradient(45deg, #EA4335, #FBBC05) !important;
}

.email-btn:hover {
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.4) !important;
}

.submit-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg, #58a6ff, #238636);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
  flex: 1;
  min-width: 200px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 166, 255, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  opacity: 0;
  animation: spin 1s linear infinite;
  transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* Responsive Design for Contact Buttons */
@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .submit-btn {
    min-width: 100%;
  }
}

/* Floating Add Project Button */
.floating-add-btn {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 20px;
  height: 20px;
  background: rgba(88, 166, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(88, 166, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0.3;
}

.floating-add-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(88, 166, 255, 0.3);
  opacity: 0.8;
  background: rgba(88, 166, 255, 0.4);
}

.add-icon {
  font-size: 0.7rem;
  font-weight: bold;
  color: #58a6ff;
  transition: transform 0.2s ease;
}

.floating-add-btn:hover .add-icon {
  transform: rotate(45deg);
  color: white;
}

@media (max-width: 768px) {
  .floating-add-btn {
    bottom: 0.3rem;
    right: 0.3rem;
    width: 18px;
    height: 18px;
    opacity: 0.25;
  }
  
  .add-icon {
    font-size: 0.6rem;
  }
}

.footer {
  background: #0d1117;
  color: #8b949e;
  padding: 3rem 2rem 1rem;
  border-top: 1px solid rgba(88, 166, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.footer-info h3 {
  color: #58a6ff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #58a6ff, #238636);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-info p {
  color: #8b949e;
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(145deg, #161b22, #21262d);
  border: 1px solid rgba(88, 166, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #8b949e;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(88, 166, 255, 0.3);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.2);
}

.social-text {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Specific social media colors on hover */
.social-link.instagram:hover {
  border-color: #E4405F;
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.2);
}

.social-link.whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.social-link.email:hover {
  border-color: #EA4335;
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.2);
}

.social-link.linkedin:hover {
  border-color: #0077B5;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.2);
}

.social-link.github:hover {
  border-color: #333;
  box-shadow: 0 8px 25px rgba(51, 51, 51, 0.2);
}

.social-link.phone:hover {
  border-color: #28a745;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(88, 166, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-love {
  color: #58a6ff;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .social-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .social-link {
    padding: 0.5rem 0.75rem;
    justify-content: center;
  }
  
  .footer {
    padding: 2rem 1rem 1rem;
  }
}

/* Animations */
@keyframes gradientShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 5px rgba(88, 166, 255, 0.3); }
  100% { text-shadow: 0 0 20px rgba(88, 166, 255, 0.6); }
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.animate-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-slide {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.animate-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1 !important;
  transform: none !important;
}