/* CSS Variables */
:root {
  --background: #f2f2f2;
  --foreground: #000000;
  --card: #eae4d5;
  --card-foreground: #000000;
  --primary: #b6b09f;
  --primary-foreground: #000000;
  --secondary: #eae4d5;
  --muted: #eae4d5;
  --muted-foreground: #666666;
  --border: #b6b09f;
  --radius: 0.5rem;
}

.dark {
  --background: #1a1a1a;
  --foreground: #f2f2f2;
  --card: #222222;
  --card-foreground: #f2f2f2;
  --primary: #b6b09f;
  --primary-foreground: #000000;
  --secondary: #2a2a2a;
  --muted: #2a2a2a;
  --muted-foreground: #999999;
  --border: #b6b09f;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

/* Utilities */
.hidden {
  display: none !important;
}

.bg-mesh-gradient {
  background-image: radial-gradient(at 0% 0%, rgba(182, 176, 159, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(234, 228, 213, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(182, 176, 159, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(234, 228, 213, 0.12) 0px, transparent 50%);
}

.gradient-blob {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle at 50% 50%, rgba(182, 176, 159, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.gradient-blob-secondary {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle at 50% 50%, rgba(234, 228, 213, 0.3) 0%, transparent 70%);
  pointer-events: none;
  animation-delay: 1s;
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(var(--background-rgb, 242, 242, 242), 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(182, 176, 159, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark .nav-fixed {
  background-color: rgba(26, 26, 26, 0.95);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-link {
  text-decoration: none;
}

.logo {
  position: relative;
  z-index: 10;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, var(--primary), rgba(182, 176, 159, 0.8));
  color: var(--primary-foreground);
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.logo:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-icon {
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 6px rgba(182, 176, 159, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 8px 12px rgba(182, 176, 159, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(182, 176, 159, 0.3);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: rgba(182, 176, 159, 0.05);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: rgba(182, 176, 159, 0.1);
  color: var(--primary);
}

.btn-download {
  width: 100%;
}

@media (min-width: 768px) {
  .btn-download {
    width: auto;
  }
}

.icon {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(182, 176, 159, 0.1);
  border: 1px solid rgba(182, 176, 159, 0.2);
  margin-bottom: 1.5rem;
}

.hero-badge .icon {
  color: var(--primary);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom right, var(--foreground), var(--foreground), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  margin-top: 4rem;
}

.hero-scroll .icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

/* Section */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.title-accent {
  position: relative;
  display: inline-block;
}

.title-accent::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-underline {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, var(--primary), rgba(182, 176, 159, 0.5));
  border-radius: 9999px;
  margin: 0 auto;
  margin-top: 1rem;
}

.section-underline-lg {
  height: 4px;
  width: 96px;
  background: linear-gradient(to right, rgba(182, 176, 159, 0.5), var(--primary), rgba(182, 176, 159, 0.5));
  border-radius: 9999px;
  margin: 0 auto;
}

.subsection-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.subsection-title-center {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}

.title-with-underline {
  position: relative;
  display: inline-block;
}

.title-with-underline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.title-line {
  width: 4px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--primary), rgba(182, 176, 159, 0.5));
  border-radius: 9999px;
}

/* Cards */
.card-premium {
  background-color: var(--card);
  border: 1px solid rgba(182, 176, 159, 0.1);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(182, 176, 159, 0.2);
}

/* Profile Card */
.profile-card {
  max-width: 56rem;
  margin: 0 auto 4rem;
  padding: 2rem;
}

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .profile-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .profile-sidebar {
    align-items: flex-start;
  }
}

.profile-image-wrapper {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 9999px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(182, 176, 159, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.profile-age {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.profile-description {
  flex: 1;
}

.profile-text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.profile-text:last-child {
  margin-bottom: 0;
}

/* Education */
.education-section {
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.education-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.education-item {
  background-color: var(--card);
  border: 1px solid rgba(182, 176, 159, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.education-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(182, 176, 159, 0.15);
}

.education-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.education-info {
  flex: 1;
}

.education-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.education-institution {
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.education-period {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.education-chevron {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s;
}

.education-chevron.expanded {
  transform: rotate(180deg);
}

.education-skills {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(182, 176, 159, 0.1);
}

.education-skills-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-badge {
  padding: 0.375rem 0.75rem;
  background-color: rgba(182, 176, 159, 0.1);
  color: var(--primary);
  border: 1px solid rgba(182, 176, 159, 0.2);
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: background-color 0.3s;
}

.skill-badge:hover {
  background-color: rgba(182, 176, 159, 0.2);
}

/* Experience */
.experience-section {
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-item {
  background-color: var(--card);
  border: 1px solid rgba(182, 176, 159, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.experience-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(182, 176, 159, 0.15);
}

.experience-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.experience-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(to bottom right, rgba(182, 176, 159, 0.2), rgba(182, 176, 159, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(182, 176, 159, 0.2);
}

.experience-dot {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.experience-details {
  flex: 1;
}

.experience-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.experience-period {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.experience-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.experience-description p {
  margin-bottom: 0.5rem;
}

.experience-description p:last-child {
  margin-bottom: 0;
}

/* Personal Projects */
.projects-section {
  max-width: 72rem;
  margin: 0 auto;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-item {
  background-color: var(--card);
  border: 1px solid rgba(182, 176, 159, 0.1);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.project-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(182, 176, 159, 0.2);
}

.project-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .project-content {
    flex-direction: row;
  }
}

.project-image-wrapper {
  width: 128px;
  height: 128px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--card), var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(182, 176, 159, 0.2);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-item:hover .project-image-wrapper {
  transform: rotate(5deg) scale(1.05);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-details {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .project-details {
    text-align: left;
  }
}

.project-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .project-meta {
    justify-content: flex-start;
  }
}

.project-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background-color: rgba(182, 176, 159, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 0 0 1px rgba(182, 176, 159, 0.2);
}

.project-followers {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.project-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-bg-blur {
  position: absolute;
  border-radius: 9999px;
  filter: blur(72px);
  pointer-events: none;
}

.video-bg-blur-1 {
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background-color: rgba(182, 176, 159, 0.05);
}

.video-bg-blur-2 {
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background-color: rgba(182, 176, 159, 0.05);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-phone-mockup {
  position: relative;
  animation-delay: 0.1s;
}

.phone-frame {
  position: relative;
  max-width: 384px;
  margin: 0 auto;
}

.phone-frame > div:first-child {
  position: relative;
  background: linear-gradient(to bottom right, #222222, rgba(34, 34, 34, 0.8));
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.phone-inner {
  background-color: var(--background);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 28px;
  background-color: #222222;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  z-index: 20;
}

.video-container {
  position: relative;
  aspect-ratio: 9 / 16;
  background-color: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(182, 176, 159, 0.2), rgba(182, 176, 159, 0.05));
  border-radius: 48px;
  filter: blur(32px);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}

.video-phone-mockup:hover .phone-glow {
  opacity: 1;
}

.videos-caption {
  text-align: center;
  margin-top: 3rem;
  animation-delay: 0.2s;
}

.videos-caption-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.achievement-item {
  background-color: var(--card);
  border: 1px solid rgba(182, 176, 159, 0.1);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.achievement-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(182, 176, 159, 0.2);
}

.achievement-image-wrapper {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--card), var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(182, 176, 159, 0.2);
  overflow: hidden;
  transition: all 0.3s;
}

.achievement-item:hover .achievement-image-wrapper {
  box-shadow: 0 0 0 4px rgba(182, 176, 159, 0.4);
}

.achievement-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievement-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.achievement-role {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: rgba(182, 176, 159, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 1px rgba(182, 176, 159, 0.2);
}

.achievement-description {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background-color: var(--card);
  border: 1px solid rgba(182, 176, 159, 0.1);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(182, 176, 159, 0.2);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(to bottom right, rgba(182, 176, 159, 0.2), rgba(182, 176, 159, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(182, 176, 159, 0.2);
  transition: all 0.3s;
}

.contact-card:hover .contact-icon {
  box-shadow: 0 0 0 4px rgba(182, 176, 159, 0.3);
}

.contact-icon .icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.contact-label {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.contact-card:hover .contact-value {
  color: var(--primary);
}

/* Footer */
.footer {
  padding: 2rem 0;
  background-color: var(--card);
  border-top: 1px solid rgba(182, 176, 159, 0.2);
}

.footer-text {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .subsection-title {
    font-size: 1.5rem;
  }
}
