:root {
  /* Voice Cooking Assistant Color Palette - 5 primary colors */
  --primary-voice-blue: #4A90E2;
  --primary-voice-blue-light: #6BA3F0;
  --primary-voice-blue-dark: #2E5A8A;
  
  --primary-cooking-orange: #FF6B35;
  --primary-cooking-orange-light: #FF8A5B;
  --primary-cooking-orange-dark: #D44D20;
  
  --primary-tech-purple: #7B68EE;
  --primary-tech-purple-light: #9B88FF;
  --primary-tech-purple-dark: #5D4ED4;
  
  --primary-fresh-green: #4CAF50;
  --primary-fresh-green-light: #66BB6A;
  --primary-fresh-green-dark: #2E7D32;
  
  --primary-warm-cream: #FFF8E1;
  --primary-warm-cream-light: #FFFEF7;
  --primary-warm-cream-dark: #F5F5DC;
  
  /* Additional shades and neutrals */
  --text-primary: #2C3E50;
  --text-secondary: #5A6C7D;
  --text-light: #7F8C8D;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E9ECEF;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, var(--primary-voice-blue), var(--primary-tech-purple));
  --gradient-secondary: linear-gradient(135deg, var(--primary-cooking-orange), var(--primary-fresh-green));
  --gradient-accent: linear-gradient(135deg, var(--primary-warm-cream), var(--primary-voice-blue-light));
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Conservative font sizes */
h1 { font-size: 2.25rem; font-weight: 700; }
h2 { font-size: 1.875rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p { font-size: 1rem; margin-bottom: 1rem; }

/* Navbar - conservative brand size */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-voice-blue) !important;
}

.navbar {
  background: var(--bg-white);
  box-shadow: 0 2px 15px var(--shadow-color);
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-voice-blue);
}

/* Hero Section - fullscreen */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--bg-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--primary-warm-cream);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--primary-warm-cream-light);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-decorative {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../YOF_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0.7;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.services-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.services-card h4 {
  color: var(--primary-voice-blue);
  margin-bottom: 1rem;
}

.services-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.services-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-cooking-orange);
  margin-bottom: 1rem;
}

.services-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-features li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.services-features li::before {
  content: "✓";
  color: var(--primary-fresh-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.about-feature {
  background: var(--primary-warm-cream);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-voice-blue);
}

.about-feature h5 {
  color: var(--primary-voice-blue);
  margin-bottom: 0.5rem;
}

.about-feature p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--gradient-secondary);
}

.features-section h2,
.features-section h3,
.features-section p {
  color: var(--bg-white);
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-warm-cream);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.priceplan-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 25px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.priceplan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.priceplan-card.featured {
  border: 2px solid var(--primary-voice-blue);
  background: var(--gradient-accent);
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-cooking-orange);
  margin: 1.5rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.team-member {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-voice-blue);
}

.team-member h5 {
  color: var(--primary-voice-blue);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: var(--gradient-primary);
}

.reviews-section h2,
.reviews-section h3,
.reviews-section p {
  color: var(--bg-white);
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--primary-warm-cream-light);
}

.review-author {
  font-weight: 600;
  color: var(--primary-warm-cream);
}

/* Case Study Section */
.casestudy-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.casestudy-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.casestudy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.casestudy-card h4 {
  color: var(--primary-voice-blue);
  margin-bottom: 1rem;
}

.casestudy-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary-voice-blue);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.process-section .row {
  counter-reset: step-counter;
}

.process-step h4 {
  color: var(--primary-voice-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: var(--gradient-accent);
}

.timeline-item {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px var(--shadow-color);
  border-left: 4px solid var(--primary-voice-blue);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-item h4 {
  color: var(--primary-voice-blue);
  margin-bottom: 1rem;
}

.timeline-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Career Section */
.career-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.career-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.career-card h4 {
  color: var(--primary-voice-blue);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--primary-cooking-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.career-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Core Info Section */
.coreinfo-section {
  padding: 80px 0;
  background: var(--gradient-secondary);
}

.coreinfo-section h2,
.coreinfo-section h3,
.coreinfo-section p {
  color: var(--bg-white);
}

.coreinfo-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.coreinfo-item h4 {
  color: var(--primary-warm-cream);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: var(--primary-warm-cream-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-form {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 25px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.form-control {
  border-radius: 10px;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-voice-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.contact-form-checkbox {
  margin-right: 0.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
  background: var(--primary-warm-cream);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.contact-info h4 {
  color: var(--primary-voice-blue);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--primary-voice-blue);
  margin-right: 0.5rem;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.blog-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card h4 {
  color: var(--primary-voice-blue);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-card a {
  color: var(--primary-cooking-orange);
  text-decoration: none;
  font-weight: 600;
}

.blog-card a:hover {
  color: var(--primary-cooking-orange-dark);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-card {
  background: var(--bg-white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px var(--shadow-color);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  background: var(--primary-warm-cream);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--primary-voice-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-warm-cream-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--primary-voice-blue-light);
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-voice-blue-light);
}

.footer-bottom {
  border-top: 1px solid var(--text-secondary);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--primary-warm-cream);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-desc {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #000000;
    --text-secondary: #333333;
    --bg-white: #FFFFFF;
    --border-color: #000000;
    --shadow-color: rgba(0, 0, 0, 0.3);
  }
}

/* Additional Page Styles */
.feature-card,
.integration-card,
.recipe-card,
.safety-card,
.innovation-card,
.solution-card,
.home-card,
.education-card,
.enterprise-card,
.wellness-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.feature-card:hover,
.integration-card:hover,
.recipe-card:hover,
.safety-card:hover,
.innovation-card:hover,
.solution-card:hover,
.home-card:hover,
.education-card:hover,
.enterprise-card:hover,
.wellness-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h4,
.integration-card h4,
.recipe-card h4,
.safety-card h4,
.innovation-card h4,
.solution-card h4,
.home-card h4,
.education-card h4,
.enterprise-card h4,
.wellness-card h4 {
  color: var(--primary-voice-blue);
  margin-bottom: 1rem;
}

.feature-card p,
.integration-card p,
.recipe-card p,
.safety-card p,
.innovation-card p,
.solution-card p,
.home-card p,
.education-card p,
.enterprise-card p,
.wellness-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Voice Features */
.voice-indicator {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-voice-blue);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-indicator::before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-white);
  animation: pulse 2s infinite;
}

.voice-indicator.listening::before {
  background: var(--primary-cooking-orange);
  animation: pulse 1s infinite;
}

.voice-response {
  background: var(--primary-warm-cream);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.voice-response.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Cooking Timer Styles */
.cooking-timer {
  text-align: center;
  background: var(--primary-voice-blue);
  border-radius: 10px;
  padding: 1rem;
  color: var(--bg-white);
}

#timer-display {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timer-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.timer-controls .btn {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

/* Quick Contact Options */
.quick-option {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.business-hours .hours-item {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.office-locations .office-item {
  background: var(--primary-warm-cream);
  border-radius: 8px;
  padding: 1rem;
}

.office-item strong {
  color: var(--primary-voice-blue);
}

/* Section Styling */
.section {
  padding: 80px 0;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
