:root {
  --primary: #8e62a4;
  --primary-light: #c79adf;
  --primary-dark: #6a457a;
  --secondary: #fdfbfd;
  --text-main: #2d2430;
  --text-muted: #6b5a72;
  --bg-body: #fbf9fc;
  --card-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(142, 98, 164, 0.1), 0 4px 6px -2px rgba(142, 98, 164, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(142, 98, 164, 0.15), 0 10px 10px -5px rgba(142, 98, 164, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(199, 154, 223, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(142, 98, 164, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(199, 154, 223, 0.05) 0%, transparent 60%);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

body::before {
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.4), rgba(142, 98, 164, 0.3));
  top: -200px;
  right: -200px;
  animation-delay: -5s;
}

body::after {
  background: linear-gradient(135deg, rgba(162, 107, 188, 0.3), rgba(199, 154, 223, 0.4));
  bottom: -200px;
  left: -200px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.subtitle {
  font-size: 1.125rem;
  max-width: 700px;
  margin-bottom: 3rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(251, 249, 252, 0.85);
  backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(199, 154, 223, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 20px rgba(142, 98, 164, 0.15);
  border-bottom: 1px solid rgba(199, 154, 223, 0.25);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::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, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #c79adf 0%, #a26bbc 50%, #8e62a4 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(142, 98, 164, 0.4), 0 0 0 0 rgba(199, 154, 223, 0.5);
  animation: pulse-shadow 3s infinite;
}

@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(142, 98, 164, 0.4), 0 0 0 0 rgba(199, 154, 223, 0.5);
  }
  50% {
    box-shadow: 0 6px 30px rgba(142, 98, 164, 0.6), 0 0 20px 5px rgba(199, 154, 223, 0.3);
  }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(142, 98, 164, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--primary-dark);
  border-color: rgba(199, 154, 223, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: rgba(199, 154, 223, 0.15);
  transform: translateY(-3px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(142, 98, 164, 0.2);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.5;
  animation: float 15s ease-in-out infinite;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.4), rgba(162, 107, 188, 0.3));
  animation-delay: 0s;
}

.shape-2 {
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(142, 98, 164, 0.3), rgba(199, 154, 223, 0.4));
  animation-delay: -7s;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(199, 154, 223, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(142, 98, 164, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(199, 154, 223, 0.06) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 100px 100px;
  background-position: 0 0, 20px 20px, 40px 40px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: '\2728';
  position: absolute;
  top: -30px;
  left: -30px;
  font-size: 3rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.2), rgba(162, 107, 188, 0.15));
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(142, 98, 164, 0.2);
  border: 1px solid rgba(199, 154, 223, 0.3);
  animation: eyebrow-glow 3s ease-in-out infinite;
}

@keyframes eyebrow-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(142, 98, 164, 0.2);
  }
  50% {
    box-shadow: 0 4px 20px rgba(142, 98, 164, 0.35), 0 0 20px rgba(199, 154, 223, 0.2);
  }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(142, 98, 164, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  animation: card-glow 4s ease-in-out infinite;
}

@keyframes card-glow {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(142, 98, 164, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  50% {
    box-shadow: 0 20px 60px rgba(142, 98, 164, 0.35), inset 0 1px 0 rgba(255, 255, 255, 1), 0 0 30px rgba(199, 154, 223, 0.3);
  }
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

.hero-list .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(199, 154, 223, 0.2);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.values-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(251, 249, 252, 0.9));
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(199, 154, 223, 0.3);
  position: relative;
  overflow: hidden;
}

.values-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.values-card:hover::before {
  opacity: 0.6;
}

.values-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(142, 98, 164, 0.3);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(199, 154, 223, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.1), transparent);
  transform: rotate(45deg);
  transition: var(--transition);
  opacity: 0;
}

.service-card:hover::before {
  opacity: 1;
  top: -60%;
  right: -60%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(142, 98, 164, 0.25);
  border-color: rgba(199, 154, 223, 0.5);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.2), rgba(162, 107, 188, 0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(142, 98, 164, 0.2);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(142, 98, 164, 0.3);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Brands */
.brands-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.brand-badge {
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #fff, rgba(251, 249, 252, 0.9));
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(199, 154, 223, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.brand-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(199, 154, 223, 0.2), transparent);
  transform: rotate(45deg);
  transition: var(--transition);
}

.brand-badge:hover::before {
  left: 100%;
}

.brand-badge:hover {
  transform: translateY(-5px) scale(1.05);
  color: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(142, 98, 164, 0.25);
  border-color: var(--primary-light);
}

/* Brands Section Background */
.brands-section {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(251, 249, 252, 0.8)),
    repeating-linear-gradient(
      45deg,
      rgba(199, 154, 223, 0.03) 0px,
      rgba(199, 154, 223, 0.03) 10px,
      transparent 10px,
      transparent 20px
    );
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 154, 223, 0.1), transparent);
  animation: slide 10s linear infinite;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.2), transparent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1) rotate(2deg);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(142, 98, 164, 0.3);
  border-color: var(--primary-light);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  background: linear-gradient(135deg, #fff 0%, rgba(251, 249, 252, 0.9) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(199, 154, 223, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
  opacity: 0;
  transition: var(--transition);
}

.price-card:hover::after {
  opacity: 1;
}

.price-card:hover {
  box-shadow: 0 20px 50px rgba(142, 98, 164, 0.25);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-light);
}

.price-header {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.price-list li:hover {
  background: rgba(199, 154, 223, 0.08);
  transform: translateX(5px);
}

.price-list .item-name {
  font-weight: 500;
  color: var(--text-main);
}

.price-list .item-price {
  font-weight: 600;
  color: var(--primary);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(251, 249, 252, 0.9));
  backdrop-filter: blur(10px);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(142, 98, 164, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.08), transparent);
  transform: rotate(15deg);
  pointer-events: none;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.2), rgba(162, 107, 188, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(142, 98, 164, 0.2);
  transition: var(--transition);
  animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(142, 98, 164, 0.2), 0 0 0 0 rgba(199, 154, 223, 0.4);
  }
  50% {
    box-shadow: 0 4px 15px rgba(142, 98, 164, 0.3), 0 0 0 10px rgba(199, 154, 223, 0);
  }
}

.contact-detail:hover .contact-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 20px rgba(142, 98, 164, 0.35);
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
}

.contact-text a {
  color: var(--text-muted);
}

.contact-text a:hover {
  color: var(--primary);
}

/* Footer */
footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(251, 249, 252, 0.9));
  backdrop-filter: blur(10px);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 2px solid rgba(199, 154, 223, 0.2);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), var(--primary), var(--primary-dark), transparent);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-content a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(199, 154, 223, 0.15), rgba(162, 107, 188, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(199, 154, 223, 0.2);
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0;
  transition: var(--transition);
  border-radius: 50%;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(142, 98, 164, 0.3);
  border-color: var(--primary);
}

.social-link:hover i {
  color: white;
  transform: scale(1.2) rotate(10deg);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate]:nth-child(1) { transition-delay: 0.1s; }
[data-animate]:nth-child(2) { transition-delay: 0.2s; }
[data-animate]:nth-child(3) { transition-delay: 0.3s; }
[data-animate]:nth-child(4) { transition-delay: 0.4s; }
[data-animate]:nth-child(5) { transition-delay: 0.5s; }
[data-animate]:nth-child(6) { transition-delay: 0.6s; }

/* Mobile Responsive */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  
  .hero-card {
    padding: 1.5rem;
  }
  
  .contact-wrapper {
    padding: 1.5rem;
  }
}
