:root {
  /* PRIMARY BRAND COLOR: #0f766e -> HSL(175, 77%, 26%) */
  --primary: 175 77% 26%;
  --primary-dark: 175 77% 11%; /* -15% lightness */
  --primary-light: 175 77% 41%; /* +15% lightness */
  --primary-glow: 175 67% 56%; /* -10% sat, +30% lightness */
  
  /* ACCENT/SECONDARY: Complementary to primary (175 deg) -> 175+180 = 355 deg (red/pink) */
  --accent: 355 70% 60%;
  --accent-light: 355 70% 80%;
  
  /* NEUTRAL COLORS */
  --background: 0 0% 100%;
  --foreground: 0 0% 10%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  --border: 0 0% 90%;
  
  /* SEMANTIC COLORS */
  --success: 142 76% 36%;
  --success-foreground: 0 0% 100%;
  --warning: 38 92% 50%;
  --warning-foreground: 0 0% 100%;
  --error: 0 84% 60%;
  --info: 199 89% 48%;
  
  /* GRADIENTS */
  --gradient-hero: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  --gradient-accent: linear-gradient(180deg, hsl(var(--accent) / 0.15) 0%, transparent 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(var(--muted)) 0%, hsl(var(--background)) 100%);
  --gradient-glow: radial-gradient(circle at top, hsl(var(--primary-glow) / 0.3) 0%, transparent 70%);
  
  /* SHADOWS */
  --shadow-xs: 0 1px 2px hsl(var(--primary) / 0.05);
  --shadow-sm: 0 2px 8px hsl(var(--primary) / 0.08);
  --shadow-md: 0 4px 16px hsl(var(--primary) / 0.12);
  --shadow-lg: 0 8px 32px hsl(var(--primary) / 0.15);
  --shadow-xl: 0 12px 48px hsl(var(--primary) / 0.2);
  --shadow-glow: 0 0 40px hsl(var(--primary-glow) / 0.4);
  
  /* TRANSITIONS */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-fast: all 0.15s ease;

  /* TYPOGRAPHY */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* SPACING */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* CRITICAL BASE RULES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  position: relative;
  font-family: var(--font-body);
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, p, span, div, a, li, label, input, textarea, button {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 3rem);
  padding-right: clamp(1rem, 5vw, 3rem);
}

section,
header,
footer,
nav,
main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.mt-space-8 {
  margin-top: var(--space-8);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: hsl(var(--foreground));
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}

.gradient-text {
  background: linear-gradient(90deg, hsl(var(--primary-dark)), hsl(var(--primary-light)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 640px) {
  h1 {
    font-size: var(--text-5xl);
  }
  h2 {
    font-size: var(--text-4xl);
  }
  h3 {
    font-size: var(--text-3xl);
  }
  p {
    font-size: var(--text-lg);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-6xl);
  }
  h2 {
    font-size: var(--text-5xl);
  }
  h3 {
    font-size: var(--text-4xl);
  }
}

/* SECTION SPACING */
.section-spacing {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  position: relative;
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  margin-bottom: var(--space-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .section-spacing {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: 0.5rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
  border: none;
  font-size: var(--text-base);
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--background));
  padding: var(--space-4) var(--space-8);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: hsl(var(--primary-dark));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
  padding: var(--space-4) var(--space-8);
}
.btn-secondary:hover {
  background: hsl(var(--primary) / 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
  min-height: 52px;
}

.btn-sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  min-height: 36px;
}

/* CARDS */
.card {
  background: hsl(var(--background));
  border-radius: 1rem;
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* HEADER */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xs);
  padding: var(--space-4) 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-8);
}

.nav-link {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: var(--text-lg);
  position: relative;
  padding: var(--space-2) 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.mobile-menu-toggle {
  font-size: var(--text-2xl);
  cursor: pointer;
  color: hsl(var(--primary));
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(10px);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav-overlay.active {
  transform: translateX(0%);
}

.close-menu-btn {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: none;
  border: none;
  font-size: var(--text-3xl);
  color: hsl(var(--primary));
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  text-align: center;
}

.mobile-nav-link {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-size: var(--text-3xl);
  font-weight: 600;
  transition: var(--transition-smooth);
  padding: var(--space-4);
  display: block;
}

.mobile-nav-link:hover {
  color: hsl(var(--primary));
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-nav-overlay {
    display: none;
  }
}

/* HERO SECTION */
.hero-split {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  color: hsl(var(--background));
  position: relative;
  overflow: hidden;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-size: var(--text-4xl);
  color: hsl(var(--background));
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: hsl(var(--primary-light));
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.hero-cta .btn-primary {
  background: hsl(var(--accent));
  color: hsl(var(--background));
  box-shadow: 0 10px 40px hsl(var(--accent) / 0.3);
}

.hero-cta .btn-primary:hover {
  background: hsl(var(--accent-light));
  box-shadow: 0 15px 50px hsl(var(--accent) / 0.4);
}

.hero-cta .btn-secondary {
  border-color: hsl(var(--background) / 0.5);
  color: hsl(var(--background));
}

.hero-cta .btn-secondary:hover {
  background: hsl(var(--background) / 0.1);
  border-color: hsl(var(--background));
}

.hero-image-container {
  width: 100%;
  max-width: 500px;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--gradient-glow);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  top: -100px;
  right: -100px;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-grid {
    flex-direction: row;
    text-align: left;
    gap: var(--space-16);
  }
  .hero-content {
    flex: 1;
  }
  .hero-image-container {
    flex: 1;
    max-width: 50%;
  }
  .hero-cta {
    flex-direction: row;
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero-split {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }
  .hero-title {
    font-size: var(--text-6xl);
  }
}

/* CONTENT ALTERNATING SECTIONS */
.content-alternating .content-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  align-items: center;
  margin-bottom: var(--space-16);
}

.content-alternating .content-row:last-child {
  margin-bottom: 0;
}

.content-alternating .content-text {
  flex: 1;
  text-align: center;
}

.content-alternating .content-image-wrapper {
  flex: 1;
  max-width: 500px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.content-alternating .content-image {
  transition: var(--transition-smooth);
}

.content-alternating .content-image:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .content-alternating .content-row {
    flex-direction: row;
    text-align: left;
    gap: var(--space-16);
  }
  .content-alternating .content-row-reverse {
    flex-direction: row-reverse;
  }
  .content-alternating .content-text {
    text-align: left;
  }
}

/* ABOUT STATS */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.stat-item {
  text-align: center;
  flex: 1 1 120px;
  padding: var(--space-4);
  border-radius: 0.75rem;
  background: hsl(var(--muted));
  box-shadow: var(--shadow-xs);
}

.stat-item .icon-primary {
  font-size: var(--text-3xl);
  color: hsl(var(--primary));
  margin-bottom: var(--space-2);
}

.stat-number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: hsl(var(--foreground));
}

.stat-label {
  font-size: var(--text-sm);
  color: hsl(var(--muted-foreground));
}

/* PRODUCT CAROUSEL */
.product-carousel-container {
  position: relative;
  margin-top: var(--space-12);
  overflow: hidden;
}

.product-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: var(--space-8);
  padding-bottom: var(--space-4); /* Space for scrollbar */
}

.product-carousel::-webkit-scrollbar {
  height: 8px;
}

.product-carousel::-webkit-scrollbar-track {
  background: hsl(var(--muted-foreground) / 0.2);
  border-radius: 10px;
}

.product-carousel::-webkit-scrollbar-thumb {
  background: hsl(var(--primary) / 0.5);
  border-radius: 10px;
}

.product-carousel::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary));
}

.card-product {
  flex: 0 0 auto;
  width: 100%; /* Default to full width on small screens */
  max-width: 300px; /* Max width for individual cards */
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  background-color: hsl(var(--background));
}

.card-product:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}

.card-product:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: hsl(var(--foreground));
}

.product-price {
  font-size: var(--text-lg);
  font-weight: 600;
  color: hsl(var(--primary-dark));
  margin-bottom: var(--space-2);
}

.product-desc {
  font-size: var(--text-sm);
  color: hsl(var(--muted-foreground));
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.product-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.product-certification-badge {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  padding: var(--space-1) var(--space-2);
  border-radius: 0.25rem;
  font-size: var(--text-xs);
  font-weight: 500;
}

.card-product .btn {
  margin-top: var(--space-4);
  width: 100%;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: hsl(var(--primary) / 0.8);
  color: hsl(var(--background));
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 10;
}

.carousel-button:hover {
  background: hsl(var(--primary));
  box-shadow: var(--shadow-md);
}

.carousel-button.prev {
  left: var(--space-4);
}

.carousel-button.next {
  right: var(--space-4);
}

@media (min-width: 768px) {
  .product-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 2) - var(--space-4)); /* 2 items per view */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-8);
    padding-bottom: var(--space-4);
  }
  .card-product {
    width: auto; /* Let grid handle width */
    max-width: none;
  }
  .carousel-button {
    display: flex; /* Show buttons on larger screens */
  }
}

@media (min-width: 1024px) {
  .product-carousel {
    grid-auto-columns: calc((100% / 3) - (var(--space-8) * 2 / 3)); /* 3 items per view */
  }
}

/* CERTIFICATIONS */
.certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
  justify-content: center;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: var(--space-3) var(--space-5);
  border-radius: 0.75rem;
  font-weight: 600;
  border: 1px solid hsl(var(--primary) / 0.2);
  box-shadow: var(--shadow-xs);
}

.certification-badge i {
  font-size: var(--text-xl);
}

@media (min-width: 768px) {
  .certification-badges {
    justify-content: flex-start;
  }
}

/* GALLERY SECTION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-top: var(--space-12);
}

.contact-info h3, .contact-form-wrapper h3 {
  margin-bottom: var(--space-6);
}

.contact-info p {
  margin-bottom: var(--space-8);
}

.info-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
  color: hsl(var(--foreground));
}

.info-item i {
  font-size: var(--text-xl);
  color: hsl(var(--primary));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: hsl(var(--foreground));
}

.form-group input, .form-group textarea {
  padding: var(--space-4);
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  font-size: var(--text-base);
  min-height: 48px;
  transition: var(--transition-smooth);
  background-color: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2);
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: var(--space-4);
}

.form-status-message {
  margin-top: var(--space-4);
  font-weight: 500;
  font-size: var(--text-sm);
}

.form-status-message.success {
  color: hsl(var(--success));
}

.form-status-message.error {
  color: hsl(var(--error));
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

/* FOOTER */
footer {
  background: hsl(var(--primary-dark));
  color: hsl(var(--background)); /* Changed to white */
  padding-top: var(--space-16);
  font-size: var(--text-sm);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  text-align: center;
  padding-bottom: var(--space-12);
  border-bottom: 1px solid hsl(var(--primary) / 0.5);
}

.footer-brand .logo {
  filter: brightness(0) invert(1);
  margin: 0 auto var(--space-4) auto;
}

.footer-brand p {
  color: hsl(var(--background)); /* Changed to white */
  margin-bottom: var(--space-6);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.social-icons a {
  color: hsl(var(--background)); /* Changed to white */
  font-size: var(--text-xl);
  transition: var(--transition-smooth);
}

.social-icons a:hover {
  color: hsl(var(--primary-light)); /* Hover color remains light primary */
  transform: translateY(-2px);
}

.footer-links h3, .footer-contact h3 {
  color: hsl(var(--background)); /* Changed to white */
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
}

.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: var(--space-3);
}

.footer-links a, .footer-contact span {
  color: hsl(var(--background)); /* Changed to white */
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: hsl(var(--primary-light)); /* Hover color remains light primary */
}

.footer-contact li i {
  margin-right: var(--space-2);
  color: hsl(var(--background)); /* Changed to white */
}

.footer-contact li span {
  display: inline-block; /* To align text with icon */
}

.footer-bottom {
  padding: var(--space-6) 0;
  text-align: center;
  border-top: 1px solid hsl(var(--primary) / 0.3);
  margin-top: var(--space-8);
}

.footer-bottom p {
  color: hsl(var(--background) / 0.8); /* Changed to white with opacity */
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    text-align: left;
  }
  .footer-brand .logo {
    margin-left: 0;
  }
  .social-icons {
    justify-content: flex-start;
  }
}

/* SCROLL ANIMATIONS (Intersection Observer) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* SKELETON LOADER */
.skeleton-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--background));
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding: var(--space-8);
  transition: opacity 0.5s ease-out;
}

.skeleton-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.skeleton-header {
  height: 60px;
  background-color: hsl(var(--muted));
  border-radius: 0.5rem;
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-hero {
  height: 400px;
  background-color: hsl(var(--muted));
  border-radius: 1rem;
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-section {
  height: 200px;
  background-color: hsl(var(--muted));
  border-radius: 1rem;
  margin-top: var(--space-8);
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-footer {
  height: 150px;
  background-color: hsl(var(--muted));
  border-radius: 0.5rem;
  margin-top: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.website-content {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.website-content.active {
  opacity: 1;
}
