/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Italian Flag Colors */
:root {
  --italy-green: #009246;
  --italy-red: #ce2b37;
  --italy-white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --purple-500: #8b5cf6;
  --purple-600: #7c3aed;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-top: 2rem;
}

.text-content {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-green {
  color: var(--italy-green);
}
.text-red {
  color: var(--italy-red);
}
.text-blue {
  color: var(--blue-600);
}
.text-yellow {
  color: var(--yellow-600);
}
.text-purple {
  color: var(--purple-600);
}
.text-muted {
  color: var(--gray-500);
}

.bg-white {
  background-color: white;
}
.bg-gray {
  background-color: var(--gray-50);
}
.bg-green {
  background-color: var(--italy-green);
}
.bg-red {
  background-color: var(--italy-red);
}
.bg-blue {
  background-color: var(--blue-600);
}
.bg-yellow {
  background-color: var(--yellow-600);
}
.bg-purple {
  background-color: var(--purple-600);
}

.max-width-4xl {
  max-width: 56rem;
  margin: 0 auto;
}

.desktop-only {
  display: block;
}

/* Sections */
.section {
  padding: 4rem 0;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.logo-icon {
  background: var(--italy-green);
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gray-900);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--italy-green);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--italy-green);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--italy-green);
  color: white;
}

.btn-primary:hover {
  background: #007a3d;
}

.btn-secondary {
  background: white;
  color: var(--italy-green);
  border: 1px solid var(--italy-green);
}

.btn-secondary:hover {
  background: var(--italy-green);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--italy-green);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-green {
  background: var(--italy-green);
  color: white;
}
.btn-green:hover {
  background: #007a3d;
}

.btn-blue {
  background: var(--blue-600);
  color: white;
}
.btn-blue:hover {
  background: var(--blue-500);
}

.btn-red {
  background: var(--italy-red);
  color: white;
}
.btn-red:hover {
  background: #b91c1c;
}

.btn-yellow {
  background: var(--yellow-600);
  color: white;
}
.btn-yellow:hover {
  background: var(--yellow-500);
}

.btn-purple {
  background: var(--purple-600);
  color: white;
}
.btn-purple:hover {
  background: var(--purple-500);
}

/* Hero Section */
.hero {
  position: relative;
  height: 37.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 64rem;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Page Hero */
.page-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  color: white;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.feature-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Partners */
.partners-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.6;
}

.partner-logo {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.placeholder-logo {
  width: 6rem;
  height: 3rem;
  background: var(--gray-200);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid;
}

.border-green {
  border-left-color: var(--italy-green);
}
.border-red {
  border-left-color: var(--italy-red);
}
.border-blue {
  border-left-color: var(--blue-600);
}
.border-yellow {
  border-left-color: var(--yellow-600);
}
.border-purple {
  border-left-color: var(--purple-600);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-text {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--italy-green) 0%, #007a3d 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Two Column Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column-layout.reverse {
  direction: rtl;
}

.two-column-layout.reverse > * {
  direction: ltr;
}

.content-column {
  padding: 1rem 0;
}

.image-column {
  display: flex;
  justify-content: center;
}

.placeholder-image {
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: var(--gray-200);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 3rem;
}

.placeholder-image p {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.badge i {
  color: var(--italy-green);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  border-top: 4px solid;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.value-text {
  color: var(--gray-700);
  line-height: 1.6;
}

/* Fleet Features */
.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fleet-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fleet-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.fleet-title {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.fleet-text {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 8rem;
  height: 8rem;
  background: var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 3rem;
  color: var(--gray-500);
}

.team-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.team-role {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.team-description {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.service-content {
  padding: 0 1.5rem 1.5rem;
}

.service-description {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Insurance Section */
.insurance-section {
  max-width: 64rem;
  margin: 0 auto;
}

.insurance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.insurance-text {
  padding: 1rem 0;
}

.insurance-image {
  display: flex;
  justify-content: center;
}

/* Forms */
.quote-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}

.form-card,
.info-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  padding: 1.5rem 1.5rem 0;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--gray-600);
}

.quote-form,
.contact-form {
  padding: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--italy-green);
  box-shadow: 0 0 0 3px rgba(0, 146, 70, 0.1);
}

.form-note {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 1rem;
}

/* Sidebar */
.quote-sidebar,
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-title,
.info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.sidebar-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sidebar-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.sidebar-feature-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.sidebar-feature-text {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.sidebar-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  font-size: 0.875rem;
}

.contact-detail strong {
  color: var(--gray-900);
}

/* Guarantee Card */
.guarantee-card {
  background: rgba(0, 146, 70, 0.05) !important;
  border: 1px solid rgba(0, 146, 70, 0.2);
}

.guarantee-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(0, 146, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--italy-green);
  font-size: 1.5rem;
}

.guarantee-title {
  font-weight: 600;
  color: #065f46;
  margin-bottom: 0.5rem;
}

.guarantee-text {
  font-size: 0.875rem;
  color: #047857;
}

/* Contact Info */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.opening-hours p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

/* Emergency Card */
.emergency-card {
  background: rgba(206, 43, 55, 0.05) !important;
  border: 1px solid rgba(206, 43, 55, 0.2);
}

.emergency-title {
  color: #991b1b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.emergency-text {
  color: #b91c1c;
  margin-bottom: 0.75rem;
}

.emergency-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.emergency-contact i {
  color: var(--italy-red);
}

.emergency-number {
  font-weight: 600;
  color: #991b1b;
}

/* Map Section */
.map-section {
  margin-top: 3rem;
}

.map-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.map-title {
  padding: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-200);
}

.map-placeholder {
  height: 16rem;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
  color: var(--gray-600);
}

.map-content i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.map-address {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0 1rem;
}

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

.company-info {
  max-width: 28rem;
}

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

.footer-logo-title {
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-logo-subtitle {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin: 0;
}

.footer-description {
  color: var(--gray-400);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s;
}

.social-link.facebook {
  background: #1877f2;
}
.social-link.facebook:hover {
  background: #166fe5;
}

.social-link.instagram {
  background: #e4405f;
}
.social-link.instagram:hover {
  background: #d73447;
}

.social-link.linkedin {
  background: #0077b5;
}
.social-link.linkedin:hover {
  background: #006ba1;
}

.footer-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.contact-item i {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-item span {
  color: var(--gray-400);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--gray-400);
  font-size: 0.875rem;
}

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

.footer-link {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-layout.reverse {
    direction: ltr;
  }

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

  .quote-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .insurance-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .partners-grid {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .btn-large {
    padding: 0.875rem 1.5rem;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .placeholder-image {
    height: 250px;
    font-size: 2rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--italy-green);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
    background: white !important;
    color: black !important;
  }

  .page-hero {
    background: white !important;
    color: black !important;
  }
}
