@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --background: 220 14% 9%;
  --foreground: 210 11% 96%;
  --card: 220 14% 11%;
  --card-foreground: 210 11% 96%;
  --primary: 220 14% 9%;
  --primary-foreground: 210 11% 96%;
  --secondary: 220 14% 14%;
  --secondary-foreground: 210 11% 96%;
  --muted: 220 14% 14%;
  --muted-foreground: 220 9% 46%;
  --accent: 43 59% 52%;
  --accent-foreground: 220 14% 9%;
  --destructive: 0 84% 60%;
  --border: 220 13% 18%;
  --input: 220 13% 18%;
  --ring: 43 59% 52%;
  --radius: 0.75rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-primary {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-primary:hover {
  background: hsl(var(--accent) / 0.9);
  transform: scale(1.05);
}

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

.btn-outline:hover {
  background: hsl(var(--accent) / 0.1);
  border-color: hsl(var(--accent));
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--accent));
}

.btn-ghost:hover {
  background: hsl(var(--accent) / 0.1);
}

.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transform: translateY(-4px);
  --tw-shadow-color: hsl(var(--accent) / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-gold {
  box-shadow: 0 4px 14px 0 hsl(var(--accent) / 0.25);
}

.shadow-gold-lg {
  box-shadow: 0 10px 15px -3px hsl(var(--accent) / 0.25), 0 4px 6px -4px hsl(var(--accent) / 0.25);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--accent) / 0.3);
  background: hsl(var(--accent) / 0.05);
  transition: all 0.3s ease;
}

.badge:hover {
  background: hsl(var(--accent) / 0.1);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: hsl(var(--muted) / 0.3);
}

.section-gradient {
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--secondary)));
}

.text-gradient {
  color: hsl(var(--accent));
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

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

.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.pt-32 { padding-top: 8rem; }
.pb-20 { padding-bottom: 5rem; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; border-style: solid; }
.border-accent\/20 { border-color: hsl(var(--accent) / 0.2); }
.border-accent\/30 { border-color: hsl(var(--accent) / 0.3); }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }
.border-t { border-top-width: 1px; border-top-style: solid; border-color: hsl(var(--border)); }

.bg-background { background: hsl(var(--background)); }
.bg-card { background: hsl(var(--card)); }
.bg-card\/50 { background: hsl(var(--card) / 0.5); }
.bg-accent\/10 { background: hsl(var(--accent) / 0.1); }
.bg-accent\/5 { background: hsl(var(--accent) / 0.05); }
.bg-primary { background: hsl(var(--primary)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-muted\/30 { background: hsl(var(--muted) / 0.3); }
.bg-white { background: white; }
.bg-\[#009246\] { background: #009246; }
.bg-\[#CE2B37\] { background: #CE2B37; }

.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-white { color: white; }

.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }

.subtitle-single-line {
  white-space: nowrap;
}

.text-justify {
  text-align: justify;
}
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

@media (min-width: 768px) {
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

@media (min-width: 1024px) {
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-serif { font-family: serif; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.w-full { width: 100%; }
.w-1\/3 { width: 33.333333%; }
.h-full { height: 100%; }
.h-1\.5 { height: 0.375rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-20 { height: 5rem; }
.h-48 { height: 12rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[120px\] { min-height: 120px; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[30ch\] { max-width: 30ch; }

.overflow-hidden { overflow: hidden; }
.overflow-hidden { overflow: hidden; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.object-cover { object-fit: cover; }

.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.cursor-pointer { cursor: pointer; }

.opacity-90 { opacity: 0.9; }

.inline-flex { display: inline-flex; }

.transition-all { transition: all 0.3s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:border-accent\/30:hover { border-color: hsl(var(--accent) / 0.3); }
.hover\:bg-accent\/10:hover { background: hsl(var(--accent) / 0.1); }
.hover\:bg-accent\/20:hover { background: hsl(var(--accent) / 0.2); }
.hover\:bg-accent\/90:hover { background: hsl(var(--accent) / 0.9); }
.hover\:bg-background\/90:hover { background: hsl(var(--background) / 0.9); }
.hover\:shadow-gold:hover { box-shadow: 0 4px 14px 0 hsl(var(--accent) / 0.25); }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:text-accent:hover { color: hsl(var(--accent)); }

.focus\:border-accent:focus { border-color: hsl(var(--accent)); }

.group:hover .group-hover\:bg-accent\/20 { background: hsl(var(--accent) / 0.2); }

.resize-none { resize: none; }

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.placeholder\:text-muted-foreground::placeholder { color: hsl(var(--muted-foreground)); }

.text-balance { text-wrap: balance; }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.5);
}

.hero-section .content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 1rem;
}

/* Client Section Background */
.client-section {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.client-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.6);
}

.client-section .content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
}

/* About Page Hero */
.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.7);
}

.page-hero .content {
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Form Styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-input,
.form-textarea,
.form-select {
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all 0.2s ease;
  font-family: inherit;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 2px hsl(var(--accent) / 0.2);
}

.form-error {
  font-size: 0.75rem;
  color: hsl(var(--destructive));
}

/* Service Card Image */
.service-card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--card) / 0.9), transparent);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.header-transparent {
  background: transparent;
}

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

.header-content img {
    margin-top: 20px;
    margin-bottom: -20px;
}

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

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

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-link.active {
  color: hsl(var(--accent));
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(var(--accent));
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

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

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background: hsl(var(--accent) / 0.2);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

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

.mobile-menu {
  display: none;
  padding: 1.5rem 1rem;
  background: hsl(var(--background) / 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid hsl(var(--border));
}

.mobile-menu.open {
  display: block;
}

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

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

.mobile-menu-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-menu-link:hover {
  background: hsl(var(--accent) / 0.05);
}

.mobile-menu-link.active {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  font-weight: 500;
}

/* Footer */
.footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 0;
  overflow-x: hidden;
}

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

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

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

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: hsl(var(--accent));
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-logos img {
  height: 80px;
  width: auto;
  margin-right: 0 !important;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: hsl(var(--accent) / 0.2);
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: hsl(var(--accent));
}

/* Value Card */
.value-card {
  text-align: center;
}

.value-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 1rem;
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.value-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

/* Expertise Item */
.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.expertise-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.expertise-text {
  color: hsl(var(--foreground));
  line-height: 1.625;
}

/* Contact Card */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: hsl(var(--accent) / 0.3);
  box-shadow: 0 4px 14px 0 hsl(var(--accent) / 0.25);
}

.contact-icon {
  display: flex;
  padding: 1rem;
  border-radius: 1rem;
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.contact-value {
  color: hsl(var(--muted-foreground));
}

/* Map Container */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Specialty Badge */
.specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--accent) / 0.3);
  background: hsl(var(--accent) / 0.05);
  transition: all 0.3s ease;
}

.specialty-badge:hover {
  background: hsl(var(--accent) / 0.1);
}

.specialty-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--accent) / 0.3);
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  z-index: 100;
  animation: slideIn 0.3s ease;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

.animate-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Stars */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
  fill: hsl(var(--accent));
  color: hsl(var(--accent));
}

/* Italian Flag Colors */
.italian-flag {
  display: flex;
  width: 100%;
  height: 0.375rem;
  margin-top: 0.25rem;
  border-radius: 9999px;
  overflow: hidden;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.75rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 40;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: scale(1.1);
}

.object-contain { object-fit: contain; }

.filter-brightness-0 { filter: brightness(0); }
.invert { filter: invert(1); }
.brightness-0-invert { filter: brightness(0) invert(1); }

.carousel {
  position: relative;
  width: 100%;
  height: 12rem;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.25rem;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-btn-prev { left: 0.5rem; }
.carousel-btn-next { right: 0.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-container-about {
  height: 100%;
  min-height: 400px;
}

.carousel-container-about .carousel {
  height: 100%;
  min-height: 400px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.dot.active {
  background: hsl(var(--accent));
}
