/* CSS Variables */
:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);
  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: #030213;
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --ring: oklch(0.708 0 0);
  --radius: 0.625rem;
}

.dark {
  --background: oklch(0.094 0 0);
  --foreground: oklch(0.979 0 0);
  --card: oklch(0.125 0 0);
  --card-foreground: oklch(0.979 0 0);
  --popover: oklch(0.125 0 0);
  --popover-foreground: oklch(0.979 0 0);
  --primary: oklch(0.979 0 0);
  --primary-foreground: oklch(0.094 0 0);
  --secondary: oklch(0.188 0 0);
  --secondary-foreground: oklch(0.979 0 0);
  --muted: oklch(0.156 0 0);
  --muted-foreground: oklch(0.652 0 0);
  --accent: oklch(0.188 0 0);
  --accent-foreground: oklch(0.979 0 0);
  --destructive: oklch(0.531 0.211 25.331);
  --destructive-foreground: oklch(0.979 0 0);
  --border: oklch(0.219 0 0);
  --input: oklch(0.219 0 0);
  --input-background: oklch(0.125 0 0);
  --ring: oklch(0.531 0 0);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  font-weight: var(--font-weight-normal);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* Typography */
h1 {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
}

h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

h4 {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

p {
  font-size: 1rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.5;
}

/* Container Utilities */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-small {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden-mobile {
  display: block;
}

@media (max-width: 640px) {
  .hidden-mobile {
    display: none;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 50%, #7c3aed 100%);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
}

/* Card Styles */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-content {
  padding: 1.5rem;
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  transition: transform 0.2s ease;
}

.badge:hover {
  transform: scale(1.05);
}

.badge-blue {
  background: #dbeafe;
  color: #1e40af;
}

.badge-purple {
  background: #e9d5ff;
  color: #7c2d12;
}

.badge-cyan {
  background: #cffafe;
  color: #0e7490;
}

.badge-green {
  background: #dcfce7;
  color: #166534;
}

.badge-indigo {
  background: #e0e7ff;
  color: #3730a3;
}

/* Availability Banner */
.availability-banner {
  background: #10b981;
  color: white;
  padding: 0.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  animation: slideDown 0.5s ease-out;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.banner-icon {
  animation: spin 2s linear infinite;
}

.banner-icon svg {
  width: 1rem;
  height: 1rem;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  margin-top: 2.5rem; /* Account for banner */
}

.header-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(5deg);
}

.header-text h4 {
  font-size: 1.125rem;
  color: var(--primary);
}

.header-text p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: -0.25rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.desktop-cta {
  display: none;
}

@media (min-width: 768px) {
  .desktop-cta {
    display: block;
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
  animation: slideIn 0.2s ease-out;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  text-align: left;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

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

.mobile-cta {
  margin-top: 0.5rem;
}

@keyframes slideIn {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: auto;
  }
}

/* Hero Section */
.hero-section {
  padding: 8rem 1.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 6rem; /* Account for fixed header */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%, rgba(124, 58, 237, 0.05) 100%);
}

.hero-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-logo {
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.logo-xl {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.logo-xl:hover {
  transform: scale(1.05) rotate(5deg);
}

.hero-greeting {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.hero-content {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-name {
  position: relative;
  margin-bottom: 1.5rem;
}

.hero-title {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 50%, #7c3aed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.hero-glow {
  position: absolute;
  inset: -0.5rem;
  background: linear-gradient(135deg, rgba(3, 2, 19, 0.1) 0%, rgba(37, 99, 235, 0.1) 50%, rgba(124, 58, 237, 0.1) 100%);
  border-radius: var(--radius);
  filter: blur(20px);
  opacity: 0.3;
  animation: glow 1s ease-out 0.6s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.5s ease-out 0.5s both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease-out 0.7s both;
}

.hero-description {
  margin-bottom: 2.5rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.6;
  animation: fadeInUp 0.5s ease-out 0.9s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.5s ease-out 1.1s both;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.scroll-indicator {
  margin-top: 4rem;
  animation: fadeInUp 0.5s ease-out 1.5s both;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(113, 113, 130, 0.3);
  border-radius: 1.25rem;
  margin: 0 auto;
  position: relative;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 0.125rem;
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}

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

@keyframes scroll {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

.highlight-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.highlight-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(3, 2, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.highlight-card h4 {
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h3 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: flex;
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-number.green {
  color: #10b981;
}

.stat-number.purple {
  color: #7c3aed;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-capabilities .card {
  height: 100%;
}

.about-capabilities h4 {
  margin-bottom: 1rem;
}

.capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.capability-item svg {
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.capability-item span {
  font-size: 0.875rem;
}

/* Skills Section */
.skills-section {
  padding: 5rem 1.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.skill-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  height: 100%;
}

.skill-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px) scale(1.05);
}

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
  transform: scale(1.1);
}

.skill-card h4 {
  margin-bottom: 0.75rem;
}

.skill-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.skill-tag {
  padding: 0.25rem 0.5rem;
  background: rgba(3, 2, 19, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  border-radius: calc(var(--radius) - 4px);
}

.additional-skills {
  margin-top: 4rem;
  text-align: center;
}

.additional-skills h3 {
  margin-bottom: 1.5rem;
}

.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 64rem;
  margin: 0 auto;
}

.tech-tag {
  padding: 0.5rem 0.75rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  cursor: default;
}

.tech-tag:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.05);
}

/* Portfolio Section */
.portfolio-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.portfolio-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.portfolio-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.portfolio-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.portfolio-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.platform-badge {
  padding: 0.125rem 0.375rem;
  font-size: 0.75rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border);
}

.platform-ios {
  background: #dbeafe;
  color: #1e40af;
}

.platform-swift {
  background: #fed7aa;
  color: #c2410c;
}

.platform-swiftui {
  background: #e9d5ff;
  color: #7c2d12;
}

.platform-flutter {
  background: #cffafe;
  color: #0e7490;
}

.platform-flutterflow {
  background: #e0e7ff;
  color: #3730a3;
}

.platform-react-native {
  background: #dcfce7;
  color: #166534;
}

.portfolio-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex: 1;
}

.portfolio-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.portfolio-actions {
  text-align: center;
  margin-top: 2rem;
}

/* Start Project Section */
.start-project-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(3, 2, 19, 0.05) 0%, rgba(3, 2, 19, 0.1) 100%);
}

.project-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-row:has(.form-group:nth-child(3)) {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .form-row:has(.form-group:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--input-background);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

/* Social Section */
.social-section {
  padding: 5rem 1.5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  padding: 0.5rem;
  background: rgba(3, 2, 19, 0.1);
  border-radius: var(--radius);
  color: var(--primary);
}

.contact-card h4 {
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.social-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.social-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.social-card .social-icon {
  padding: 0.5rem;
  background: rgba(3, 2, 19, 0.1);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-block;
}

.social-content h4 {
  margin-bottom: 0.5rem;
}

.social-content p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--muted-foreground);
  margin-right: 0.75rem;
}

.theme-toggle-btn:hover {
  background: var(--accent);
  color: var(--foreground);
}

/* Footer */
.footer {
  padding: 3rem 1.5rem;
  background: var(--card);
  border-top: 1px solid var(--border);
  color: var(--foreground);
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--muted) 30%, rgba(3, 2, 19, 0.05) 100%);
}

.footer-content {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 2rem;
  height: 2rem;
  opacity: 0.9;
}

.footer-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.apple-emoji {
  font-size: 1.5rem;
}

.footer-text p {
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  color: var(--foreground);
}

.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-location svg {
  color: var(--muted-foreground);
}

.footer-location span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-divider {
  width: 6rem;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.5rem;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--foreground);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-branding {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-branding p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
  max-width: 20rem;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: #10b981;
  background: #ecfdf5;
  color: #065f46;
}

.toast.error {
  border-color: #ef4444;
  background: #fef2f2;
  color: #991b1b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1.5rem;
  }

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

  .hero-actions {
    gap: 0.75rem;
  }

  .btn-lg {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }

  .about-section,
  .skills-section,
  .portfolio-section,
  .start-project-section,
  .social-section {
    padding: 3rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .highlights-grid,
  .skills-grid,
  .portfolio-grid,
  .social-grid {
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}