@charset "UTF-8";
/* ============================================
   THEME VARIABLES & CONFIGURATION
   ============================================ */
:root {
  --bg-color: #ece9e9;
  --surface-color: rgba(255, 255, 255, 0.6);
  --text-color: #111;
  --muted-text: #555;
  --primary-color: #9900ff;
  --border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme=dark] {
  --bg-color: #0b0b10;
  --surface-color: rgba(20, 20, 28, 0.85);
  --text-color: #f1f1f1;
  --muted-text: #a1a1aa;
  --primary-color: #a855f7;
  --border-color: rgba(255, 255, 255, 0.08);
}
html[data-theme=dark] .glass,
html[data-theme=dark] .card,
html[data-theme=dark] .contact-card {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* ============================================
   MIXINS & UTILITIES
   ============================================ */
/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 50px;
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.12), transparent 40%), var(--bg-color);
  color: var(--text-color);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  height: 100vh;
  margin: auto;
}

main {
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
p,
small {
  color: var(--muted-text);
}

h1,
h2,
h3,
h4 {
  color: var(--text-color);
}

/* ============================================
   GLOBAL SECTION SYSTEM
   ============================================ */
.ui-section {
  padding: 6rem 3rem;
}

.ui-section > .ui-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  margin-bottom: 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.glass-navbar {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1200px;
  z-index: 100;
  overflow: visible;
  isolation: isolate;
}

.navbar,
.nav-container {
  background: var(--surface-color) !important;
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: visible;
  position: relative;
  isolation: isolate;
  will-change: backdrop-filter;
  gap: 1.5rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  background: linear-gradient(90deg, var(--primary-color), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary-color);
}
.nav-links a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 110%;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    display: none;
    justify-content: flex-start;
  }
  .nav-links.active {
    display: flex;
  }
}

html[data-theme=dark] .nav-links a {
  opacity: 0.85;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  border: none;
  background: var(--surface-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 0.6rem;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.theme-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(153, 0, 255, 0.2);
  border-color: var(--primary-color);
}
.theme-toggle:active {
  transform: scale(0.95);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.6rem;
  background: var(--surface-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(153, 0, 255, 0.2);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.primary-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 0.6rem;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.primary-btn:hover {
  opacity: 0.9;
}

.secondary-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 0.6rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.secondary-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-modern {
  min-height: 90vh;
  padding: 6rem 3rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}
.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(153, 0, 255, 0.15), transparent 40%);
  z-index: -1;
}
@media (max-width: 900px) {
  .hero-modern {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(153, 0, 255, 0.15);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-content h1 span {
  background: linear-gradient(90deg, #9900ff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 900px) {
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero-visual img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}
@media (max-width: 900px) {
  .hero-visual img {
    margin: auto;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-modern {
  padding: 4rem 3rem;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.about-image {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image img {
  width: 25em;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.2rem;
  transform-origin: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .about-image img {
    width: 220px;
    height: 280px;
  }
}

.about-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(153, 0, 255, 0.15);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.about-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .about-actions {
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .about-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-cards {
  display: grid;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .about-cards {
    margin-top: 2rem;
  }
}

.about-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.about-card:hover {
  transform: translateY(-6px);
}
.about-card h3 {
  margin-bottom: 0.5rem;
}
.about-card p {
  font-size: 0.9rem;
}

/* ============================================
   EDUCATION SECTION
   ============================================ */
.education-modern {
  padding: 3rem;
}

.education-timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 2rem;
}
.education-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(153, 0, 255, 0.3);
}
@media (max-width: 768px) {
  .education-timeline {
    padding-left: 1.5rem;
  }
}

.edu-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.edu-dot {
  position: absolute;
  left: -2px;
  top: 1.2rem;
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 50%;
}

.edu-card {
  margin-left: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.edu-card:hover {
  transform: translateX(6px);
}
.edu-card h3 {
  margin: 0.4rem 0;
}
.edu-card p {
  font-weight: 500;
}
.edu-card small {
  color: var(--muted-text);
}
@media (max-width: 768px) {
  .edu-card {
    margin-left: 1.5rem;
  }
}

.edu-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* ============================================
   SKILLS SECTION
   ============================================ */
.skills-modern {
  padding: 3rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.skill-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.skill-card:hover {
  transform: translateY(-6px);
}
.skill-card h3 {
  margin-bottom: 0.5rem;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-modern {
  padding: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.project-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-8px);
}
.project-card img {
  width: 100%;
  height: 10em;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #333;
}
.project-card.featured {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .project-card.featured {
    grid-column: span 1;
  }
}

.project-content {
  padding: 1.2rem;
}
.project-content h3 {
  margin-bottom: 0.4rem;
}
.project-content p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tech-stack span {
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  border-radius: 999px;
  background: rgba(153, 0, 255, 0.15);
  color: var(--primary-color);
  font-weight: 600;
}

.project-links {
  display: flex;
  gap: 1rem;
}
.project-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.project-links a:hover {
  border-color: var(--primary-color);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-modern {
  padding: 4rem 3rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(153, 0, 255, 0.15);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.contact-info p {
  max-width: 480px;
  margin-bottom: 1.5rem;
  color: var(--muted-text);
}
@media (max-width: 900px) {
  .contact-info {
    text-align: center;
  }
}

.contact-details p {
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .contact-details {
    margin-bottom: 2rem;
  }
}

.contact-card {
  padding: 2rem;
  border-radius: 1.2rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-color);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: var(--muted-text);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-text);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-status {
  margin-top: 0.8rem;
  font-size: 0.85rem;
}

.contact-card .primary-btn,
.contact-card button[type=submit] {
  width: 100%;
  padding: 0.9rem 2rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--primary-color), #3b82f6);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(153, 0, 255, 0.3);
  margin-top: 0.5rem;
}
.contact-card .primary-btn::before,
.contact-card button[type=submit]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.contact-card .primary-btn::after,
.contact-card button[type=submit]::after {
  content: "→";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.contact-card .primary-btn span,
.contact-card button[type=submit] span {
  position: relative;
  z-index: 1;
}
.contact-card .primary-btn:hover,
.contact-card button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(153, 0, 255, 0.4);
  background: linear-gradient(135deg, #a855f7, #4f9cf9);
}
.contact-card .primary-btn:hover::before,
.contact-card button[type=submit]:hover::before {
  width: 300px;
  height: 300px;
}
.contact-card .primary-btn:hover::after,
.contact-card button[type=submit]:hover::after {
  opacity: 1;
  right: 1.2rem;
}
.contact-card .primary-btn:active,
.contact-card button[type=submit]:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(153, 0, 255, 0.3);
}
.contact-card .primary-btn:focus,
.contact-card button[type=submit]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(153, 0, 255, 0.2);
}
.contact-card .primary-btn.loading,
.contact-card button[type=submit].loading {
  pointer-events: none;
  opacity: 0.7;
}
.contact-card .primary-btn.loading::after,
.contact-card button[type=submit].loading::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 1;
}
.contact-card .primary-btn.success,
.contact-card button[type=submit].success {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.contact-card .primary-btn.success::after,
.contact-card button[type=submit].success::after {
  content: "✓";
  opacity: 1;
  right: 1.2rem;
}
.contact-card .primary-btn.error,
.contact-card button[type=submit].error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}
.contact-card .primary-btn.error::after,
.contact-card button[type=submit].error::after {
  content: "✕";
  opacity: 1;
  right: 1.2rem;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
/* ============================================
   FOOTER
   ============================================ */
.footer-modern {
  margin-top: 4rem;
  padding: 4rem 3rem 2rem;
  background: var(--surface-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.3;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, var(--primary-color), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p {
  color: var(--muted-text);
  line-height: 1.6;
  max-width: 400px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}
.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-column li a {
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.footer-column li a::before {
  content: "→";
  position: absolute;
  left: -1.2rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: var(--primary-color);
}
.footer-column li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}
.footer-column li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-bottom p {
  color: var(--muted-text);
  font-size: 0.85rem;
  margin: 0;
}
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-color);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color), #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer-social a svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(153, 0, 255, 0.3);
  border-color: var(--primary-color);
}
.footer-social a:hover::before {
  opacity: 1;
}
.footer-social a:hover svg {
  transform: scale(1.1);
  color: #fff;
}
.footer-social a:nth-child(1):hover svg {
  color: #0077b5;
}
.footer-social a:nth-child(2):hover svg {
  color: #333;
}
.footer-social a:nth-child(3):hover svg {
  color: #e4405f;
}/*# sourceMappingURL=style.css.map */