/* =======================================================
   VARIABILI & RESET
======================================================== */
:root {
  --color-primary: #0a4d22;
  --color-primary-light: #157a39;
  --color-text-main: #111827;
  --color-text-muted: #6b7280;
  --color-bg-alt: #fafafa;
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  --shadow-glow: 0 10px 30px rgba(10, 77, 34, 0.25);
}

body {
  background-color: #ffffff;
  color: var(--color-text-main);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* =======================================================
   LOGO (Font Cormorant Garamond)
======================================================== */
.logo-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--color-primary);
}

.custom-navbar {
  padding: 20px 0;
  background-color: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* =======================================================
   HERO SECTION
======================================================== */
.contact-hero {
  padding: 80px 0 50px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
}
.text-gradient {
  color: var(--color-primary);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =======================================================
   FORM CARD (Effetto Rojak)
======================================================== */
.contact-card {
  background: white;
  border-radius: 24px;
  padding: 50px;
  border: 1px solid #f3f4f6;
}
.shadow-lg-custom { box-shadow: var(--shadow-lg); }

.custom-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.custom-input {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 18px;
  background-color: var(--color-bg-alt);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.custom-input:focus {
  box-shadow: none;
  border-color: var(--color-primary);
  background-color: white;
}

/* =======================================================
   BOTTONI & FAB
======================================================== */
.btn-primary-pill {
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary-pill:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  color: white;
}
.shadow-glow { box-shadow: var(--shadow-glow); }

.home-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s;
  text-decoration: none;
  z-index: 1000;
}
.home-fab:hover {
  transform: scale(1.1);
  color: white;
}

/* =======================================================
   ANIMAZIONI
======================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.text-dark-green { color: var(--color-primary); }
.mb-6 { margin-bottom: 100px; }