* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: #1a1a1a;
  line-height: 1.8;
  overflow-x: hidden;
  background: #fafafa;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
}

.logo {
  font-size: 2rem;
  font-weight: 400;
  color: #2c3e50;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.7rem;
  display: block;
  font-weight: 300;
  margin-top: 0.3rem;
  opacity: 0.7;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 50%;
  background: #c9a961;
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: #c9a961;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  margin-top: 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
  max-width: 900px;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 12px;
  color: #2c3e50;
  text-transform: uppercase;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a961, transparent);
  margin: 2rem auto;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 300;
  letter-spacing: 3px;
}

.hero-description {
  font-size: 1.1rem;
  margin-top: 2rem;
  color: #5a6c7d;
  font-weight: 300;
  line-height: 2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: transparent;
  color: #2c3e50;
  text-decoration: none;
  border: 2px solid #c9a961;
  border-radius: 0;
  font-weight: 300;
  transition: all 0.4s ease;
  margin-top: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c9a961;
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: white;
  border-color: #c9a961;
}

.cta-button-light {
  border-color: white;
  color: white;
}

.cta-button-light::before {
  background: white;
}

.cta-button-light:hover {
  color: #2c3e50;
  border-color: white;
}

/* Features Section */
.features {
  padding: 8rem 2rem;
  background: white;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.feature-card {
  background: #fafafa;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a961;
  transition: width 0.4s ease;
}

.feature-card:hover::before {
  width: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.feature-number {
  font-size: 4rem;
  color: rgba(201, 169, 97, 0.2);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-family: 'Georgia', serif;
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.feature-card p {
  color: #7f8c8d;
  line-height: 2;
  font-size: 1.05rem;
  font-weight: 300;
}

/* Convenzione Section */
.convenzione {
  padding: 8rem 2rem;
  background: #2c3e50;
  color: white;
  position: relative;
  overflow: hidden;
}

.convenzione::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  top: -250px;
  right: -250px;
}

.convenzione-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.convenzione h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.convenzione-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a961, transparent);
  margin: 2rem auto;
}

.convenzione p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 1px;
}

/* Territory Section */
.territory {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, white 0%, #fafafa 100%);
}

.territory-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.territory-text h2 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.territory-text p {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 2.2;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.territory-feature {
  padding-left: 2rem;
  border-left: 2px solid rgba(201, 169, 97, 0.3);
  margin-bottom: 2rem;
}

.territory-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15rem;
  color: rgba(201, 169, 97, 0.1);
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 6px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: #c9a961;
  margin: 2rem auto;
}

.footer-content p {
  margin: 0.8rem 0;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.footer-cf {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* Page Hero */
.page-hero {
  margin-top: 100px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
}

.page-hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: #2c3e50;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.page-hero-content p {
  font-size: 1.2rem;
  color: #5a6c7d;
  letter-spacing: 2px;
}

/* Content Sections */
.content-section {
  padding: 6rem 2rem;
  background: white;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-text h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
}

.content-text p {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.content-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  font-size: 12rem;
  color: rgba(201, 169, 97, 0.15);
}

/* Why Section */
.why-section {
  padding: 6rem 2rem;
  background: #fafafa;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.why-card {
  text-align: center;
  padding: 2rem;
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.why-card p {
  color: #7f8c8d;
  line-height: 1.8;
}

/* Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.leader-card {
  background: #fafafa;
  padding: 2.5rem;
  border-left: 3px solid #c9a961;
  transition: all 0.3s;
}

.leader-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.leader-role {
  font-size: 0.85rem;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.leader-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  font-weight: 400;
}

/* Info Box */
.info-box {
  background: #f8f9fa;
  padding: 2.5rem;
  border-left: 4px solid #c9a961;
  margin-top: 2rem;
}

.info-box p {
  color: #5a6c7d;
  line-height: 2;
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: #2c3e50;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: white;
}

.cta-section p {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  opacity: 0.9;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.service-card p {
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  color: #5a6c7d;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #c9a961;
}

/* Themes Grid */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.theme-item {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.theme-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: #c9a961;
}

.theme-item h4 {
  color: #c9a961;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.theme-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* University Highlight */
.university-highlight {
  text-align: center;
  padding: 2rem;
}

.university-badge {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.university-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.uni-feature {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 10px;
}

.uni-feature h4 {
  color: #c9a961;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.uni-feature p {
  color: rgba(255,255,255,0.9);
}

/* Courses Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.course-card {
  background: #fafafa;
  padding: 2.5rem;
  border-top: 4px solid #c9a961;
  transition: all 0.3s;
}

.course-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.course-level {
  display: inline-block;
  background: #c9a961;
  color: white;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.course-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 400;
}

.course-card p {
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.course-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.course-details span {
  font-size: 0.9rem;
  color: #5a6c7d;
}

/* Modality Grid */
.modality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.modality-card {
  text-align: center;
  padding: 2rem;
}

.modality-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.modality-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 400;
}

.modality-card p {
  color: #7f8c8d;
  line-height: 1.8;
}

/* Regions Grid */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.region-card {
  background: white;
  padding: 2.5rem;
  border-left: 4px solid #c9a961;
}

.region-card h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.region-list {
  list-style: none;
  padding: 0;
}

.region-list li {
  padding: 0.7rem 0;
  color: #5a6c7d;
  border-bottom: 1px solid #f0f0f0;
}

.region-list li:last-child {
  border-bottom: none;
}

.region-list strong {
  color: #2c3e50;
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  background: #fafafa;
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  background: white;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a961;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.3rem;
  width: auto;
}

.checkbox-label span {
  font-size: 0.9rem;
  color: #5a6c7d;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #fafafa;
  padding: 1.5rem;
  border-left: 3px solid #c9a961;
}

.info-card h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.info-card p {
  color: #5a6c7d;
}
/* =========================
   MAPPA INTERATTIVA FULL-WIDTH
   ========================= */
.map-section-wide {
  width: 100%;
  background: #e0e0e0;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.map-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.map-subtitle {
  color: #7f8c8d;
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 1.05rem;
}

#map {
  width: 100%;
  height: 550px;
  border-top: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
}


/* Responsive */
@media (max-width: 768px) {
  .map-container {
    padding: 1.5rem;
  }

  .map-title {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  #map {
    height: 280px;
  }
}



/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 0 2rem;
  }

  .hero h1 {
    font-size: 3rem;
    letter-spacing: 6px;
  }

  .page-hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
  }

  .territory-content {
    grid-template-columns: 1fr;
  }

  .territory-image {
    font-size: 8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .courses-grid,
  .regions-grid {
    grid-template-columns: 1fr;
  }
}

