body {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: #0d1b2a;
  font-weight: 700;
}
.text-primary-custom {
  color: #0d1b2a !important;
}
.text-secondary-custom {
  color: #f3722c !important;
}
.bg-primary-custom {
  background-color: #0d1b2a !important;
}
.bg-dark-custom {
  background-color: #1b263b !important;
}
.bg-light-custom {
  background-color: #f8f9fa !important;
}
.btn-primary-custom {
  background-color: #f3722c;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.btn-primary-custom:hover {
  background-color: #df570d;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-custom {
  background-color: transparent;
  color: #0d1b2a;
  border: 2px solid #0d1b2a;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.btn-outline-custom:hover {
  background-color: #0d1b2a;
  color: #fff;
}
.navbar {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.navbar .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #0d1b2a;
}
.navbar .navbar-brand span {
  color: #f3722c;
}
.navbar .nav-link {
  color: #4a5568;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #f3722c;
}
.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}
.hero-section .hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-section .hero-title span {
  color: #f3722c;
  font-style: italic;
}
.hero-section .hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.hero-section .hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.hero-section .hero-image-wrapper img.main-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.hero-section .hero-image-wrapper .floating-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}
.hero-section .hero-image-wrapper .floating-card.card-top {
  top: 20px;
  right: -30px;
}
.hero-section .hero-image-wrapper .floating-card.card-bottom {
  bottom: -30px;
  left: -20px;
  animation-delay: 2s;
}
.hero-section .hero-image-wrapper .floating-card .icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: rgba(243, 114, 44, 0.15);
  color: #f3722c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.hero-section .hero-image-wrapper .floating-card h6 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.hero-section .hero-image-wrapper .floating-card p {
  margin: 0;
  font-size: 0.8rem;
  color: #4a5568;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.stats-section {
  padding: 80px 0;
  color: #fff;
}
.stats-section .section-title {
  color: #fff;
  margin-bottom: 40px;
}
.stats-section .stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}
.stats-section .stat-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #f3722c;
}
.stats-section .stat-card i {
  font-size: 2rem;
  color: #f3722c;
  margin-bottom: 15px;
}
.stats-section .stat-card h3 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 5px;
}
.stats-section .stat-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}
.stats-section .services-list {
  list-style: none;
  padding: 0;
}
.stats-section .services-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stats-section .services-list li i {
  color: #f3722c;
}
.approccio-section {
  padding: 100px 0;
}
.approccio-section .service-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
  background: #fff;
}
.approccio-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.approccio-section .service-card .img-wrapper {
  height: 200px;
  overflow: hidden;
}
.approccio-section .service-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.approccio-section .service-card:hover .img-wrapper img {
  transform: scale(1.05);
}
.approccio-section .service-card .card-body {
  padding: 30px;
}
.approccio-section .service-card .card-body h4 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.approccio-section .service-card .card-body h4 i {
  color: #f3722c;
  font-size: 1.2rem;
}
.approccio-section .service-card .card-body ul {
  list-style: none;
  padding: 0;
}
.approccio-section .service-card .card-body ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.approccio-section .service-card .card-body ul li i {
  color: #0d1b2a;
  margin-top: 5px;
  font-size: 0.8rem;
}
.process-section {
  padding: 100px 0;
}
.process-section .process-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.process-section .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.process-section .process-card .step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(27, 38, 59, 0.05);
  font-family: 'Playfair Display', serif;
}
.process-section .process-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(243, 114, 44, 0.1);
  color: #f3722c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.process-section .process-card h5 {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.process-section .process-card p {
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.testimonials-section {
  padding: 100px 0;
}
.testimonials-section .testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}
.testimonials-section .testimonial-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: rgba(27, 38, 59, 0.05);
}
.testimonials-section .testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 15px;
}
.testimonials-section .testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonials-section .testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials-section .testimonial-card .client-info .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0d1b2a;
}
.testimonials-section .testimonial-card .client-info h6 {
  margin: 0;
}
.testimonials-section .testimonial-card .client-info span {
  font-size: 0.8rem;
  color: #4a5568;
}
.contact-section {
  padding: 100px 0;
}
.contact-section .contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-section .contact-info .info-item .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(243, 114, 44, 0.1);
  color: #f3722c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.contact-section .contact-info .info-item h6 {
  margin: 0;
  color: #0d1b2a;
}
.contact-section .contact-info .info-item p {
  margin: 0;
}
.contact-section .contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.contact-section .contact-form .form-control {
  border: none;
  border-bottom: 2px solid #f8f9fa;
  border-radius: 0;
  padding: 15px 0;
  background: transparent;
}
.contact-section .contact-form .form-control:focus {
  box-shadow: none;
  border-color: #f3722c;
}
.contact-section .contact-form label {
  font-weight: 500;
  color: #0d1b2a;
}
.footer {
  background-color: #1b263b;
  color: #fff;
  padding: 60px 0 20px;
}
.footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: inline-block;
}
.footer .footer-brand span {
  color: #f3722c;
}
.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer ul li a:hover {
  color: #f3722c;
  padding-left: 5px;
}
.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer .social-links a:hover {
  background-color: #f3722c;
  transform: translateY(-3px);
}
.footer .footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
