/* Self-Inventory Lab Design System */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --cream: #FAF8F3;
  --warm-beige: #E8DFD3;
  --soft-coral: #E8A598;
  --terracotta: #C4806B;
  --soft-brown: #A08875;
  --charcoal: #3A3A3A;
  --white: #FFFFFF;
  
  --font-header: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Dancing Script', cursive;
  
  --shadow-soft: 0 4px 20px rgba(196, 128, 107, 0.1);
  --shadow-medium: 0 8px 30px rgba(196, 128, 107, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
}

.accent-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--terracotta);
  font-weight: 500;
}

.large-accent {
  font-size: 2.5rem;
  color: var(--soft-coral);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.section-sm {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(196, 128, 107, 0.1);
}

.navbar.scrolled {
  background: rgba(250, 248, 243, 0.98);
  box-shadow: var(--shadow-soft);
}

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

.logo {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Logo image styles removed - using text only */

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soft-coral);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--soft-coral);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--charcoal);
  margin: 3px 0;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--soft-coral);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--soft-coral);
}

.btn-secondary:hover {
  background: var(--soft-coral);
  color: var(--white);
}

/* Cards */
.card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--warm-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--terracotta);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23E8A598" opacity="0.1"/></svg>');
  opacity: 0.5;
}

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

.hero-text {
  max-width: 600px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero .accent-text {
  margin-bottom: 1rem;
  display: block;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--soft-brown);
}

/* Three Step Framework */
.framework-cards {
  margin-top: 4rem;
}

.framework-card {
  text-align: center;
  position: relative;
}

.framework-card .card-icon {
  background: var(--soft-coral);
  color: var(--white);
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1.5rem;
}

.framework-card h3 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

/* About Preview */
.about-preview {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 4rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.about-preview .accent-text {
  margin-bottom: 2rem;
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--soft-brown);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
  border-left: 4px solid var(--soft-coral);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-header {
  margin-bottom: 2rem;
}

.service-card h3 {
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.service-tagline {
  color: var(--soft-brown);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.5;
}

.service-description {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-description p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features-section {
  margin-bottom: 2rem;
}

.service-features-section h4 {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-size: 1.3rem;
}

.service-features {
  list-style: none;
  margin: 0;
}

.service-features li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--soft-coral);
  font-weight: bold;
  font-size: 1.1rem;
}

.service-cta {
  margin-top: auto;
  padding-top: 1rem;
}

.btn-service {
  width: 100%;
  text-align: center;
  font-weight: 600;
}

/* Service Card Variants */
.service-card-popular {
  border-left-color: var(--terracotta);
  transform: scale(1.02);
}

.service-card-popular .service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-card-featured {
  border-left-color: var(--soft-coral);
}

.service-card-comprehensive {
  border-left-color: var(--soft-brown);
}

.service-price {
  font-family: var(--font-header);
  font-size: 2rem;
  font-weight: 600;
  color: var(--soft-coral);
  margin: 1.5rem 0;
}

/* Values Section */
.values-grid {
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Process Steps */
.process-step {
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -20px;
  left: 3rem;
  background: var(--soft-coral);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.process-container {
  counter-reset: step-counter;
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--warm-beige);
  padding: 4rem 0 2rem;
  text-align: center;
}

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

.footer h3 {
  color: var(--soft-coral);
  margin-bottom: 2rem;
}

.footer p {
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--soft-brown);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--soft-brown);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .card {
    padding: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-card-popular {
    transform: none;
  }
  
  .decision-guide-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .decision-card {
    padding: 2rem;
  }
  
  .decision-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
  }
  
  .faq-answer {
    padding: 1.5rem;
  }
  
  .about-preview {
    padding: 2rem;
  }
  
  .process-step {
    padding: 2rem;
  }
  
  .process-step::before {
    left: 2rem;
  }
}

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .decision-guide-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
  }
  
  .decision-card h3 {
    font-size: 1.2rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .service-features li {
    padding-left: 1.5rem;
  }
  
  .decision-features li {
    padding-left: 1.5rem;
  }
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  background: var(--warm-beige);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(196, 128, 107, 0.1);
}

.faq-question h4 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-answer {
  padding: 2rem;
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: var(--charcoal);
}

/* Decision Guide Section */
.decision-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.decision-card {
  background: var(--warm-beige);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.decision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.decision-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.decision-icon {
  width: 50px;
  height: 50px;
  background: var(--soft-coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.decision-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.4rem;
  line-height: 1.3;
}

.decision-content {
  flex-grow: 1;
}

.decision-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.decision-features li {
  padding: 0.7rem 0;
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.decision-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--soft-coral);
  font-weight: bold;
  font-size: 1.2rem;
}

.decision-card-1 .decision-icon {
  background: var(--soft-coral);
}

.decision-card-2 .decision-icon {
  background: var(--terracotta);
}

.decision-card-3 .decision-icon {
  background: var(--soft-brown);
}

/* Contact Section Enhancements */
.cta-container {
  margin-top: 3rem;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Modern Social Media Integration with Glassmorphism */
.social-media {
  margin: 3rem 0 2rem 0;
  text-align: center;
  position: relative;
  /* Magnetic field area for cursor attraction */
  cursor: none;
}

.social-media-title {
  font-family: var(--font-header);
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.social-media-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--soft-coral), var(--terracotta));
  border-radius: 2px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem;
  /* Gentle initial pulse animation */
  animation: socialPulse 4s ease-in-out 2s infinite;
}

/* Subtle pulse animation that draws attention on page load */
@keyframes socialPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

/* Enhanced initial load animation for social links */
.social-link {
  animation: socialLinkAppear 0.6s ease-out forwards;
  animation-delay: calc(var(--link-index, 0) * 0.1s);
}

@keyframes socialLinkAppear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Glassmorphism Social Buttons */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 6px 24px rgba(196, 128, 107, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  /* Heartbeat proximity effect - activated by JavaScript */
  cursor: pointer;
}

/* Heartbeat animation for proximity hover */
.social-link.heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  75% {
    transform: scale(1.02);
  }
}

/* Sparkle effect container */
.social-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at var(--sparkle-x, 50%) var(--sparkle-y, 50%),
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 20%,
    transparent 50%
  );
  opacity: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Sparkle effect on click */
.social-link.sparkle::after {
  opacity: 1;
  animation: sparkleExpand 0.6s ease-out;
}

@keyframes sparkleExpand {
  0% {
    transform: scale(0.3);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.social-link::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s ease;
}

.social-link:hover::before {
  transform: rotate(45deg) translateY(100%);
}

/* Enhanced magnetic attraction effect */
.social-link.magnetic {
  transform: translateX(var(--magnetic-x, 0)) translateY(var(--magnetic-y, 0)) scale(1.1);
  box-shadow: 
    0 8px 25px rgba(196, 128, 107, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.social-link svg {
  width: 12px;
  height: 12px;
  fill: var(--charcoal);
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
}

/* Optical compensation for visual balance */
.social-link[href*="linkedin"] svg {
  width: 11px;
  height: 11px;
}

.social-link[href*="instagram"] svg {
  width: 12px;
  height: 12px;
}

/* LinkedIn Hover Effect */
.social-link[href*="linkedin"]:hover {
  background: linear-gradient(135deg, #0077B5, #0066A0);
  border-color: rgba(0, 119, 181, 0.3);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 
    0 10px 30px rgba(0, 119, 181, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Enhanced hover with glow */
.social-link[href*="linkedin"]:hover {
  box-shadow: 
    0 10px 30px rgba(0, 119, 181, 0.4),
    0 0 15px rgba(0, 119, 181, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.social-link[href*="linkedin"]:hover svg {
  fill: white;
  transform: rotate(5deg) scale(1.1);
}

/* Instagram Hover Effect */
.social-link[href*="instagram"]:hover {
  background: linear-gradient(135deg, #E4405F, #F77737, #FCAF45);
  border-color: rgba(228, 64, 95, 0.3);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 
    0 10px 30px rgba(228, 64, 95, 0.4),
    0 0 15px rgba(228, 64, 95, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.social-link[href*="instagram"]:hover svg {
  fill: white;
  transform: rotate(-5deg) scale(1.1);
}

/* Tooltip Styles */
.social-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, 
    var(--charcoal) 0%, 
    var(--soft-brown) 100%);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: var(--font-body);
  /* Ensure tooltip stays within viewport */
  max-width: 200px;
  word-wrap: break-word;
}

/* Tooltip arrow */
.social-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--charcoal);
}

/* Show tooltip on hover */
.social-link:hover .social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Ensure tooltip appears above other elements */
.social-link {
  position: relative;
  z-index: 1;
}

.social-link:hover {
  z-index: 10;
}

/* Subtle encouraging messages rotation */
.social-tooltip.linkedin-tip::before {
  content: "Let's connect!";
}

.social-tooltip.instagram-tip::before {
  content: "Follow the journey!";
}

/* Alternative encouraging messages */
.social-tooltip.linkedin-tip.alt::before {
  content: "Connect for insights!";
}

.social-tooltip.instagram-tip.alt::before {
  content: "Join the inspiration!";
}

/* Custom cursor for social media area */
.social-media-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle,
    var(--soft-coral) 0%,
    var(--terracotta) 70%,
    transparent 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  mix-blend-mode: difference;
}

.social-media-cursor.active {
  opacity: 0.8;
  transform: scale(1);
}

.social-media-cursor.attracted {
  opacity: 1;
  transform: scale(1.5);
}

/* About Page Connect Section - Enhanced */
.about-connect {
  margin-top: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg,
    rgba(232, 223, 211, 0.3) 0%,
    rgba(232, 165, 152, 0.1) 100%);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 60px rgba(196, 128, 107, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.about-connect::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(232, 165, 152, 0.2) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.about-connect .social-media-title {
  font-size: 2rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-family: var(--font-header);
}

.about-connect p {
  color: var(--soft-brown);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-connect .social-links {
  gap: 1rem;
  background: none;
  padding: 0;
}

.about-connect .social-link {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.about-connect .social-link svg {
  width: 14px;
  height: 14px;
}

/* Optical compensation for About section */
.about-connect .social-link[href*="linkedin"] svg {
  width: 13px;
  height: 13px;
}

.about-connect .social-link[href*="instagram"] svg {
  width: 14px;
  height: 14px;
}

/* Professional Photo - Enhanced Styling */
.professional-photo {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 
    0 20px 60px rgba(196, 128, 107, 0.2),
    0 10px 20px rgba(196, 128, 107, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 2rem auto;
  display: block;
  position: relative;
}

.professional-photo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(196, 128, 107, 0.25),
    0 15px 30px rgba(196, 128, 107, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 22px;
    height: 22px;
  }
  
  .social-link svg {
    width: 11px;
    height: 11px;
  }
  
  /* Optical compensation for mobile */
  .social-link[href*="linkedin"] svg {
    width: 10px;
    height: 10px;
  }
  
  .social-link[href*="instagram"] svg {
    width: 11px;
    height: 11px;
  }
  
  .about-connect .social-link {
    width: 26px;
    height: 26px;
  }
  
  .professional-photo {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .social-link {
    width: 20px;
    height: 20px;
  }
  
  .social-link svg {
    width: 10px;
    height: 10px;
  }
  
  /* Optical compensation for small mobile */
  .social-link[href*="linkedin"] svg {
    width: 9px;
    height: 9px;
  }
  
  .social-link[href*="instagram"] svg {
    width: 10px;
    height: 10px;
  }
  
  .professional-photo {
    width: 200px;
    height: 200px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .social-link,
  .social-link::before,
  .social-link::after,
  .social-link svg,
  .professional-photo,
  .about-connect::before,
  .social-links,
  .social-media-cursor,
  .social-tooltip {
    animation: none !important;
    transition: opacity 0.3s ease;
  }
  
  .social-link.heartbeat {
    animation: none !important;
  }
  
  .social-link.magnetic {
    transform: none !important;
  }
  
  .social-link {
    animation-duration: 0.3s !important;
  }
  
  .social-media-cursor {
    display: none !important;
  }
}