/* Modern CSS Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --color-primary: #000000;
  --color-secondary: #111111;
  --color-accent: #333333;
  --color-white: #ffffff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "mono";

  /* Font Sizes */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
  --text-6xl: 3.75rem; /* 60px */
  --text-7xl: 4.5rem; /* 72px */
  --text-8xl: 6rem; /* 96px */

  /* Spacing - Reduced sizes */
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.25rem; /* 20px */
  --space-6: 1.5rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-10: 2.5rem; /* 40px */
  --space-12: 3rem; /* 48px */
  --space-16: 4rem; /* 64px */
  --space-20: 5rem; /* 80px */
  --space-24: 6rem; /* 96px - Reduced from 8rem */

  /* Layout */
  --container-max-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-base: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-white);
  background-color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-6xl);
}
h2 {
  font-size: var(--text-4xl);
}
h3 {
  font-size: var(--text-2xl);
}
h4 {
  font-size: var(--text-xl);
}
h5 {
  font-size: var(--text-lg);
}
h6 {
  font-size: var(--text-base);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-300);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Components */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all var(--transition-base);
}

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

.logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.desktop-nav a {
  font-weight: 500;
  color: var(--color-gray-300);
  position: relative;
  transition: color var(--transition-base);
}

.desktop-nav a:hover {
  color: var(--color-white);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-white);
  transition: width var(--transition-base);
}

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

.contact-btn {
  background: var(--color-white);
  color: var(--color-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-base);
}

.contact-btn:hover {
  background: var(--color-gray-200);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: var(--text-2xl);
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  z-index: 999;
  display: none;
}

.mobile-menu.active {
  transform: translateY(0);
  display: block;
}

.mobile-menu nav {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.mobile-menu a {
  padding: var(--space-4) 0;
  font-weight: 500;
  color: var(--color-gray-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--color-white);
}

/* Button Components */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-white);
  color: var(--color-primary);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-gray-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12); /* Reduced gap */
  align-items: center;
}

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

.hero-badge {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: var(--text-6xl); /* Reduced from 7xl */
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--text-lg); /* Reduced from xl */
  color: var(--color-gray-300);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.floating-dot {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.dot-1 {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.dot-2 {
  width: 15px;
  height: 15px;
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}
.dot-3 {
  width: 25px;
  height: 25px;
  top: 30%;
  right: 20%;
  animation-delay: 2s;
}
.dot-4 {
  width: 18px;
  height: 18px;
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}
.dot-5 {
  width: 12px;
  height: 12px;
  top: 40%;
  left: 50%;
  animation-delay: 1.5s;
}
.dot-6 {
  width: 22px;
  height: 22px;
  bottom: 30%;
  left: 30%;
  animation-delay: 2.5s;
}

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

/* Section Styles - Reduced padding */
section {
  padding: var(--space-16) 0; /* Reduced from 24 */
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12); /* Reduced from 16 */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: var(--text-4xl); /* Reduced from 5xl */
  font-weight: 800;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: var(--text-lg); /* Reduced from xl */
  color: var(--color-gray-400);
  line-height: 1.6;
}

/* Projects Section */
.projects-section {
  background: var(--color-secondary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Reduced min width */
  gap: var(--space-6); /* Reduced from 8 */
}

.project-card {
  background: var(--color-primary);
  border-radius: var(--radius-lg); /* Reduced from xl */
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.2);
}

.project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: var(--text-2xl);
  transition: all var(--transition-base);
}

.project-link:hover {
  transform: scale(1.1);
}

.project-content {
  padding: var(--space-5); /* Reduced from 6 */
}

.project-content h3 {
  font-size: var(--text-xl); /* Reduced from 2xl */
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.project-content p {
  color: var(--color-gray-400);
  margin-bottom: var(--space-4);
  line-height: 1.6;
  font-size: var(--text-sm); /* Reduced size */
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced min width */
  gap: var(--space-6); /* Reduced from 8 */
}

.service-card {
  background: var(--color-secondary);
  padding: var(--space-6); /* Reduced from 8 */
  border-radius: var(--radius-lg); /* Reduced from xl */
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left var(--transition-slow);
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 60px; /* Reduced from 80px */
  height: 60px;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl); /* Reduced from 3xl */
  margin: 0 auto var(--space-5); /* Reduced margin */
  transition: all var(--transition-base);
}

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

.service-card h3 {
  font-size: var(--text-xl); /* Reduced from 2xl */
  margin-bottom: var(--space-3); /* Reduced from 4 */
  color: var(--color-white);
}

.service-card p {
  color: var(--color-gray-400);
  line-height: 1.6;
  font-size: var(--text-sm); /* Reduced size */
}

/* Testimonials Section */
.testimonials-section {
  background: var(--color-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Reduced min width */
  gap: var(--space-6); /* Reduced from 8 */
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-primary);
  padding: var(--space-6); /* Reduced from 8 */
  border-radius: var(--radius-lg); /* Reduced from xl */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-content {
  margin-bottom: var(--space-5); /* Reduced from 6 */
}

.quote-icon {
  width: 40px; /* Reduced from 50px */
  height: 40px;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl); /* Reduced from 2xl */
  margin-bottom: var(--space-4);
}

.testimonial-content p {
  font-size: var(--text-base); /* Reduced from lg */
  line-height: 1.7;
  color: var(--color-gray-300);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-author img {
  width: 50px; /* Reduced from 60px */
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-info h4 {
  font-size: var(--text-base); /* Reduced from lg */
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.author-info span {
  color: var(--color-gray-400);
  font-size: var(--text-xs); /* Reduced from sm */
}

/* Articles Section */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Reduced min width */
  gap: var(--space-6); /* Reduced from 8 */
}

.article-card {
  background: var(--color-secondary);
  border-radius: var(--radius-lg); /* Reduced from xl */
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.2);
}

.article-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: var(--space-5); /* Reduced from 6 */
}

.article-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--text-xs); /* Reduced from sm */
  color: var(--color-gray-500);
}

.article-content h3 {
  font-size: var(--text-xl); /* Reduced from 2xl */
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.article-content p {
  color: var(--color-gray-400);
  margin-bottom: var(--space-4);
  line-height: 1.6;
  font-size: var(--text-sm); /* Reduced size */
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  font-weight: 600;
  transition: all var(--transition-base);
  font-size: var(--text-sm); /* Reduced size */
}

.article-link:hover {
  gap: var(--space-3);
}

/* CTA Section */
.cta-section {
  background: var(--color-secondary);
  text-align: center;
}

.cta-content h2 {
  font-size: var(--text-4xl); /* Reduced from 5xl */
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.cta-content p {
  font-size: var(--text-lg); /* Reduced from xl */
  color: var(--color-gray-400);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-12) 0 var(--space-6); /* Reduced padding */
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12); /* Reduced from 16 */
  margin-bottom: var(--space-8); /* Reduced from 12 */
}

.footer-brand h3 {
  font-size: var(--text-2xl); /* Reduced from 3xl */
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.footer-brand p {
  color: var(--color-gray-400);
  line-height: 1.6;
  font-size: var(--text-sm); /* Reduced size */
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6); /* Reduced from 8 */
}

.footer-column h4 {
  font-size: var(--text-base); /* Reduced from lg */
  margin-bottom: var(--space-3); /* Reduced from 4 */
  color: var(--color-white);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: var(--space-2);
}

.footer-column a {
  color: var(--color-gray-400);
  transition: color var(--transition-base);
  font-size: var(--text-sm); /* Reduced size */
}

.footer-column a:hover {
  color: var(--color-white);
}

.social-links {
  display: flex;
  gap: var(--space-2); /* Reduced from 3 */
  flex-wrap: wrap;
}

.social-links a {
  width: 35px; /* Reduced from 40px */
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base); /* Reduced from lg */
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6); /* Reduced from 8 */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-gray-500);
}

.footer-bottom p {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm); /* Reduced size */
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 3rem; /* Reduced */
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
  }

  .hero-grid {
    gap: var(--space-8); /* Reduced */
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8); /* Reduced */
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-nav,
  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6); /* Reduced */
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-container {
    max-width: 300px; /* Smaller on tablet */
  }

  .hero-title {
    font-size: var(--text-5xl); /* Reduced */
  }

  .hero-actions {
    justify-content: center;
  }

  .projects-grid,
  .services-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-4); /* Reduced */
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: var(--space-12) 0; /* Reduced mobile padding */
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.875rem;
  }

  section {
    padding: var(--space-10) 0; /* Further reduced for mobile */
  }

  .section-header {
    margin-bottom: var(--space-8); /* Reduced */
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .service-card,
  .testimonial-card,
  .project-content {
    padding: var(--space-4); /* Further reduced */
  }

  .hero-image-container {
    max-width: 250px; /* Even smaller on mobile */
  }
}

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

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

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

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

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

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

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .floating-elements,
  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
