
  /* CSS COMPLETO INTEGRATO - ULTRA SMOOTH */
  :root {
    --primary-color: #ff3c3c;
    --primary-hover: #ff1c1c;
    --dark-bg: #000000;
    --dark-card: #111111;
    --dark-accent: #222222;
    --light-text: #ffffff;
    --light-text-muted: #e0e0e0;
    --glass-bg: rgba(25, 25, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  /* Base Styles */
  body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }

  p {
    font-size: 1rem;
    color: var(--light-text-muted);
    margin-bottom: 1.5rem;
  }

  /* Animazioni Super Fluide */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(60px) scale(0.9);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes fadeZoomIn {
    0% {
      opacity: 0;
      transform: scale(0.8) rotate(-2deg);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
  }

  @keyframes smoothSlideIn {
    0% {
      opacity: 0;
      transform: translateX(-50px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }

  @keyframes gentleBounce {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes softGlow {
    0%, 100% {
      box-shadow: 0 0 20px rgba(255, 60, 60, 0.3);
    }
    50% {
      box-shadow: 0 0 30px rgba(255, 60, 60, 0.6);
    }
  }

  @keyframes fadeZoomIn {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  @keyframes shimmer {
    0% {
      background-position: -1000px 0;
    }
    100% {
      background-position: 1000px 0;
    }
  }

  .fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }

  .delay-1 { animation-delay: 0.3s; }
  .delay-2 { animation-delay: 0.6s; }
  .delay-3 { animation-delay: 0.9s; }

  /* Layout Components */
  .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-padding {
    padding: 80px 0;
  }

  .title-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    position: relative;
    border-radius: 2px;
  }

  .title-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 12px;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.6;
    border-radius: 2px;
  }

  .title-divider::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 12px;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.6;
    border-radius: 2px;
  }

  /* Glassmorphism Elements */
  .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition-standard);
  }

  .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 60, 60, 0.15);
  }

  
  /* Header & Navigation */
  .header_section {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #000000;
    padding: 15px 0;
    transition: all 0.3s ease;
  }

  .header_section.scrolled {
    background: #000000;
  }

  .navbar {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-brand {
    font-weight: bold;
    font-size: 14px;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 15px;
    text-decoration: none;
  }

  .navbar-logo {
    height: 32px;
    width: auto;
  }

  .navbar-collapse {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  .navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .nav-link {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 18px !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-align: center;
  }

  .nav-link:hover {
    color: #ff3c3c !important;
  }

  .nav-item.active .nav-link {
    color: #ff3c3c !important;
  }
  
  /* Responsive Styles for Mobile con Animazioni */
  @media (max-width: 991px) {
    .navbar-collapse {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 0;
      border-radius: 0 0 20px 20px;
      margin-top: 15px;
      box-shadow: 0 15px 35px rgba(255, 60, 60, 0.15), 0 5px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 60, 60, 0.2);
      overflow: hidden;
      transform-origin: top center;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      max-height: 0;
    }
    
    .navbar-collapse:not(.show) {
      transform: scaleY(0) translateY(-15px);
      opacity: 0;
      max-height: 0;
    }
    
    .navbar-collapse.show {
      transform: scaleY(1) translateY(0);
      opacity: 1;
      max-height: 500px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .navbar-nav {
      width: 100%;
      text-align: center;
      padding: 20px 0;
    }
    
    .nav-item {
      width: 100%;
      transform: translateY(15px) scale(0.95);
      opacity: 0;
      transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .navbar-collapse.show .nav-item {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    
    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.05s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.08s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.11s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.14s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.17s; }
    .navbar-collapse.show .nav-item:nth-child(6) { transition-delay: 0.20s; }
    
    /* Dropdown dei servizi in mobile */
    .nav-item.dropdown .dropdown-toggle::after {
      display: inline-block;
      margin-left: 0.5rem;
      vertical-align: 0.125em;
      content: "";
      border-top: 0.3em solid #ff3c3c;
      border-right: 0.3em solid transparent;
      border-bottom: 0;
      border-left: 0.3em solid transparent;
      transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown .dropdown-toggle.show::after {
      transform: rotate(180deg);
    }
    
    .nav-item.dropdown .dropdown-menu {
      background: rgba(15, 15, 15, 0.95);
      border: 1px solid rgba(255, 60, 60, 0.3);
      border-radius: 10px;
      margin-top: 5px;
      padding: 10px 0;
      transform: scaleY(0);
      transform-origin: top;
      transition: all 0.3s ease;
      opacity: 0;
      display: none;
      position: static;
      width: 100%;
      box-shadow: none;
    }
    
    .nav-item.dropdown.show .dropdown-menu,
    .dropdown-menu.show {
      transform: scaleY(1) !important;
      opacity: 1 !important;
      display: block !important;
      visibility: visible !important;
    }
    
    /* Force show quando ha class show */
    .nav-item.show .dropdown-menu {
      display: block !important;
      opacity: 1 !important;
      transform: scaleY(1) !important;
    }
    
    .dropdown-item {
      color: #ffffff !important;
      padding: 10px 20px !important;
      border-bottom: 1px solid rgba(255, 60, 60, 0.1);
      transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
      background: rgba(255, 60, 60, 0.1) !important;
      color: #ff3c3c !important;
      transform: translateX(5px);
    }
    
    .nav-link {
      padding: 15px 20px !important;
      display: block;
      width: 100%;
      border-bottom: 1px solid rgba(255, 60, 60, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 60, 60, 0.1), transparent);
      transition: left 0.6s ease;
    }
    
    .nav-link:hover::before {
      left: 100%;
    }
    
    .nav-link:hover {
      background: rgba(255, 60, 60, 0.05);
      transform: translateX(10px);
      color: #ff3c3c !important;
    }
  }


  /* Hero Section */
  .hero_area {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero_bg_box .bg_img_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
    background-size: cover;
  }

  .slider_section {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .slider_section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light-text);
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
  }

  .slider_section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-text-muted);
    margin-bottom: 30px;
    max-width: 90%;
    position: relative;
    z-index: 2;
  }

  .slider_section .img-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatElement 5s ease-in-out infinite;
  }

  .slider_section .img-box img {
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  }

  /* Buttons */
  .btn1 {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-standard);
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 60, 60, 0.4);
  }

  .btn1:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
  }

  .btn1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 60, 60, 0.5);
    color: var(--light-text);
  }

  .btn1:hover:before {
    left: 100%;
  }

  .btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
  }

  .btn-secondary:hover {
    background: var(--primary-color);
  }

  /* Service Section */
  .service_section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .service_section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 60, 60, 0.2) 0%, rgba(255, 60, 60, 0) 70%);
    z-index: 0;
    border-radius: 50%;
  }

  .heading_container {
    text-align: center;
    margin-bottom: 60px;
  }

  .heading_container h2 {
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
  }

  .heading_container h2 span {
    color: var(--primary-color);
  }

  .heading_container p {
    max-width: 700px;
    margin: 0 auto;
  }

  /* Service Cards */
  .service-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 60, 60, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 60, 60, 0.3) 0%, rgba(255, 60, 60, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-standard);
  }

  .service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 60, 60, 0.2);
    border-color: rgba(255, 60, 60, 0.5);
    animation: softGlow 2s ease-in-out infinite;
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card img,
  .service-card svg {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    transition: var(--transition-standard);
  }

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

  .service-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
  }

  .service-card p {
    color: var(--light-text-muted);
    margin-bottom: 20px;
  }

  .service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-standard);
  }

  .service-link i {
    margin-left: 5px;
    transition: var(--transition-standard);
  }

  .service-link:hover {
    color: var(--primary-hover);
  }

  .service-link:hover i {
    transform: translateX(5px);
  }

  /* Red Service Grid */
  .red-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .red-service-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 60, 60, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: var(--light-text);
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .red-service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 60, 60, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    top: 0;
    left: 0;
    z-index: -1;
    transition: var(--transition-standard);
  }

  .red-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 60, 60, 0.2);
    border-color: rgba(255, 60, 60, 0.3);
  }

  .red-service-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 60, 60, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .red-service-card img,
  .red-service-card svg {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    transition: var(--transition-standard);
    filter: drop-shadow(0 5px 10px rgba(255, 60, 60, 0.3));
  }

  .red-service-card:hover img,
  .red-service-card:hover svg {
    transform: scale(1.1) rotate(5deg);
  }

  .red-service-card h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
  }

  .red-service-card h5::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition-standard);
  }

  .red-service-card:hover h5::after {
    width: 50px;
  }

  .red-service-card p {
    font-size: 1rem;
    color: var(--light-text-muted);
    margin-bottom: 20px;
  }

  .red-service-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-standard);
    margin-top: auto;
  }

  .red-service-card a i {
    margin-left: 5px;
    transition: var(--transition-standard);
  }

  .red-service-card a:hover {
    color: var(--primary-hover);
  }

  .red-service-card a:hover i {
    transform: translateX(5px);
  }

  /* About Section */
  .about_section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .about_section::before {
    content: '';
    position: absolute;
    left: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 60, 60, 0.1) 0%, rgba(255, 60, 60, 0) 70%);
    z-index: 0;
    border-radius: 50%;
  }

  .about_img_container {
    position: relative;
    padding-right: 30px;
  }

  .about_img_container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
  }

  .about_img_container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    top: 20px;
    right: 0;
    border-radius: 10px;
    z-index: 0;
  }

  .about_detail-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
  }

  .about_detail-box h2 span {
    color: var(--primary-color);
  }

  .about_detail-box p {
    margin-bottom: 25px;
  }

  /* Hero Badge and Subtitle */
  .hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 60, 60, 0.3);
  }

  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  .animated-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin-top: 10px;
    min-height: 30px;
    position: relative;
  }

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

  /* Preloader */
  .js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
  }

  .preloader-inner {
    position: relative;
  }

  .preloader-inner .dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    animation: preloader 1.5s infinite;
  }

  .preloader-inner .dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .preloader-inner .dots span {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: dots 1.5s infinite ease-in-out;
  }

  .preloader-inner .dots span:nth-child(2) {
    animation-delay: 0.2s;
  }

  .preloader-inner .dots span:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes preloader {
    0% { transform: scale(0); }
    50% { transform: scale(1); }
    100% { transform: scale(0); }
  }

  @keyframes dots {
    0%, 100% { transform: scale(0.5); }
    50% { transform: scale(1.2); }
  }

  /* Footer */
  .footer_section {
    background-color: var(--dark-card);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
  }

  .footer_section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 60, 60, 0.1) 0%, rgba(255, 60, 60, 0) 70%);
    z-index: 0;
    border-radius: 50%;
  }

  .footer_section h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
  }

  .footer_section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
  }

  .footer_section p {
    color: var(--light-text-muted);
  }

  .footer_links li {
    margin-bottom: 10px;
  }

  .footer_links a {
    color: var(--light-text-muted);
    transition: var(--transition-standard);
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }

  .footer_links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition-standard);
  }

  .footer_links a:hover {
    color: var(--light-text);
    transform: translateX(5px);
  }

  .footer_links a:hover::before {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
  }

  .footer_contact a {
    color: var(--light-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: var(--transition-standard);
    text-decoration: none;
  }

  .footer_contact i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
  }

  .footer_contact a:hover {
    color: var(--light-text);
  }

  .footer_social {
    display: flex;
    margin-top: 20px;
  }

  .footer_social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    transition: var(--transition-standard);
  }

  .footer_social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
  }

  .footer_bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer_bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  /* Media Queries */
  @media (max-width: 1200px) {
    .slider_section h1 {
      font-size: 3rem;
    }
    
    .about_detail-box h2 {
      font-size: 2.5rem;
    }
    
    .heading_container h2 {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 992px) {
    .slider_section h1 {
      font-size: 2.5rem;
    }
    
    .slider_section .img-box {
      margin-top: 50px;
    }
    
    .navbar-toggler {
      padding: 5px 0;
    }
    
    .navbar-toggler-icon, 
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      width: 22px;
    }
    
    .about_img_container {
      margin-bottom: 50px;
    }
    
    .about_detail-box h2 {
      font-size: 2.2rem;
    }
    
    .service-card {
      margin-bottom: 30px;
    }
    
    .red-service-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact_info {
      margin-top: 50px;
    }
  }

  @media (max-width: 768px) {
    .slider_section {
      padding-top: 140px;
      text-align: center;
    }
    
    .slider_section h1 {
      font-size: 2.2rem;
    }
    
    .slider_section p {
      font-size: 1rem;
      margin: 0 auto 20px;
    }
    
    .btn1 {
      padding: 10px 25px;
      font-size: 0.8rem;
    }
    
    .slider_section .img-box {
      margin-top: 40px;
    }
    
    .heading_container h2 {
      font-size: 2rem;
    }
    
    .service_section, 
    .about_section, 
    .contact_section, 
    .why_section {
      padding: 60px 0;
    }
    
    .navbar-brand img {
      height: 40px;
    }
    
    .red-service-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer_section {
      text-align: center;
    }
    
    .footer_section h5::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer_links a {
      padding-left: 0;
    }
    
    .footer_links a::before {
      display: none;
    }
    
    .footer_contact a {
      justify-content: center;
    }
    
    .footer_social {
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .slider_section h1 {
      font-size: 1.8rem;
    }
    
    .heading_container h2 {
      font-size: 1.8rem;
    }
    
    .about_detail-box h2 {
      font-size: 1.8rem;
    }
    
    .red-service-grid {
      grid-template-columns: 1fr;
    }
    
    .about_banner h1 {
      font-size: 2rem;
    }
    
    .contact_form,
    .contact_info {
      padding: 30px 20px;
    }
    
    .btn1 {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .slider_section h1 {
      font-size: 1.6rem;
    }
    
    .service-card,
    .red-service-card {
      padding: 30px 20px;
    }
    
    .service-card img,
    .red-service-card img,
    .service-card svg,
    .red-service-card svg {
      width: 50px;
      height: 50px;
    }
    
    .service-card h5,
    .red-service-card h5 {
      font-size: 1.2rem;
    }
    
    .hero_area {
      min-height: auto;
      height: auto;
    }
    
    .hero_bg_box .bg_img_box {
      height: 100%;
    }
  }

  /* Logo Styles */
  .logo-svg {
    margin-top: 80px;
    height: 60px;
  }
  
  .hero-deco {
    position: absolute;
    top: -40px;
    left: -60px;
    z-index: 0;
    opacity: 0.15;
    transform: rotate(5deg);
  }
  
/* Fix for numbers in Why Choose Us page */
.why-card {
  position: relative;
  overflow: hidden;
}

.why-card .number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem; 
  font-weight: 700;
  color: rgba(255, 60, 60, 0.1);
  z-index: 0;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .why-card .number {
    display: none;
  }
}

/* WhatsApp Button Styling */
.whatsapp-btn {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.whatsapp-btn:hover {
  background-color: #128C7E !important;
  border-color: #128C7E !important;
}

.whatsapp-btn i {
  font-size: 1.2em;
}

/* Hide numbers in why page */
.why_number {
  display: none !important;
}

/* Design Highlight Box */
.design-highlight-box {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 10;
  width: 280px;
  transform: translateY(0);
  transition: transform 0.5s ease;
  animation: float 3s ease-in-out infinite;
}

.design-highlight-box:hover {
  transform: translateY(-5px);
}

.glass-effect {
  background: rgba(255, 60, 60, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 60, 60, 0.3);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.glass-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,60,60,0) 0%, rgba(255,60,60,0.8) 50%, rgba(255,60,60,0) 100%);
}

.design-highlight-content {
  text-align: center;
  position: relative;
}

.design-highlight-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

.design-highlight-content h3 span {
  color: #FF3C3C;
  font-weight: 900;
}

.highlight-divider {
  width: 60px;
  height: 3px;
  background-color: #FF3C3C;
  margin: 15px auto;
  position: relative;
  overflow: hidden;
}

.highlight-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: shine 2s infinite;
}

.design-highlight-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .design-highlight-box {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0;
  }
}

/* Design Badge */
.design-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background-color: #FF3C3C;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.design-badge:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.badge-content {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: black;
  border: 2px solid #FF3C3C;
  border-radius: 3px;
}

.badge-icon {
  font-size: 2rem;
  color: #FF3C3C;
  margin-right: 15px;
}

.badge-text {
  color: white;
}

.badge-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-line {
  width: 40px;
  height: 3px;
  background-color: #FF3C3C;
  margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .design-badge {
    position: static;
    margin: 20px auto;
    transform: none;
    max-width: 300px;
  }
  
  .design-badge:hover {
    transform: scale(1.05);
  }
}

/* Animated Subtitle Styling */
.animated-subtitle-container {
  position: absolute;
  right: 30px;
  top: 30px;
  width: auto;
  height: auto;
  overflow: hidden;
  z-index: 5;
}

.subtitle-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff3c3c;
  transform: skewX(-15deg);
  z-index: -1;
  box-shadow: 0 5px 20px rgba(255, 60, 60, 0.3);
}

.subtitle-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  padding: 15px 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.5s ease;
}

/* Animation for subtitle text */
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Responsive styles */
@media (max-width: 992px) {
  .animated-subtitle-container {
    position: relative;
    right: auto;
    top: auto;
    margin: 20px auto;
    max-width: 300px;
  }
}

/* Fix for mobile menu hamburger icon color */
.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FF3C3C !important;
  content: '';
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler {
  border: none !important;
  padding: 10px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Mobile Optimization */

/* Bottoni Super Fluidi e Morbidi */
.btn1, 
.primary-btn,
.red-service-card a,
.about_detail-box a,
.success_content a {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: var(--transition-elastic);
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff5555 100%);
  color: var(--light-text);
  border: none;
  box-shadow: 0 8px 25px rgba(255, 60, 60, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateX(0deg);
}

/* Effetto Ripple Ultra Fluido */
.btn1:after, 
.primary-btn:after,
.red-service-card a:after,
.about_detail-box a:after,
.success_content a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.btn1:active:after, 
.primary-btn:active:after,
.red-service-card a:active:after,
.about_detail-box a:active:after,
.success_content a:active:after {
  width: 300px;
  height: 300px;
}

/* Effetti Hover Super Morbidi */
.btn1:hover, 
.primary-btn:hover,
.red-service-card a:hover,
.about_detail-box a:hover,
.success_content a:hover {
  transform: translateY(-8px) scale(1.05) perspective(1000px) rotateX(-5deg);
  box-shadow: 0 20px 40px rgba(255, 60, 60, 0.4), 0 8px 16px rgba(255, 60, 60, 0.2);
  animation: gentleBounce 0.6s ease-out;
}

/* Stato Active Ultra Morbido */
.btn1:active, 
.primary-btn:active,
.red-service-card a:active,
.about_detail-box a:active,
.success_content a:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 20px rgba(255, 60, 60, 0.5);
  transition: all 0.1s ease;
}

/* Mobile Responsive Fixes */
@media (max-width: 767px) {
  /* Make buttons full width on small screens */
  .btn1, 
  .primary-btn,
  .red-service-card a,
  .about_detail-box a,
  .success_content a {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  
  /* Adjust font sizes for readability */
  h1 {
    font-size: 2.5rem !important;
  }
  
  h2 {
    font-size: 2rem !important;
  }
  
  h5 {
    font-size: 1.2rem !important;
  }
  
  /* Increase touch targets */
  .navbar-nav .nav-link {
    padding: 15px !important;
    margin: 5px 0;
  }
  
  /* Improve spacing */
  .section-padding {
    padding: 40px 0;
  }
  
  /* Adjust service cards */
  .red-service-grid {
    grid-template-columns: 1fr;
  }
  
  .red-service-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  /* Fix image sizes */
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  
  /* Adjust footer */
  .footer_section h5 {
    margin-top: 20px;
  }
  
  /* Improve form elements */
  input, textarea, select {
    font-size: 16px !important; /* Prevents iOS zoom on focus */
    padding: 12px !important;
  }
  
  /* Fix WhatsApp button */
  .whatsapp-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* Tablet Responsive Fixes */
@media (min-width: 768px) and (max-width: 991px) {
  .red-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .btn1, 
  .primary-btn,
  .red-service-card a,
  .about_detail-box a,
  .success_content a {
    padding: 12px 20px;
  }
}

/* Fix for iPhone notch */
@supports (padding: max(0px)) {
  .header_section {
    padding-left: max(15px, env(safe-area-inset-left));
    padding-right: max(15px, env(safe-area-inset-right));
  }
  
  .footer_section {
    padding-left: max(15px, env(safe-area-inset-left));
    padding-right: max(15px, env(safe-area-inset-right));
    padding-bottom: max(15px, env(safe-area-inset-bottom));
  }
}

/* Add Pull-to-refresh visual */
body {
  overflow-x: hidden;
}

/* Improved scrolling */
html, body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Fix for hamburger icon - forcing red color */
.navbar-toggler-icon {
  background-image: none !important;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  margin: 0 !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* Animated Hamburger Menu - Spettacolare */
.navbar-toggler {
  position: relative;
  width: 50px !important;
  height: 50px !important;
  border: 2px solid #ff3c3c !important;
  border-radius: 8px !important;
  background: rgba(20, 20, 20, 0.9) !important;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  box-shadow: 0 4px 15px rgba(255, 60, 60, 0.3) !important;
}

.navbar-toggler:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(255, 60, 60, 0.5) !important;
  border-color: #ff1c1c !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 60, 60, 0.2) !important;
  outline: none !important;
}

/* Linee animate dell'hamburger */
.navbar-toggler .icon-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #ff3c3c, #ff6b6b) !important;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  margin-left: -14px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 5px rgba(255, 60, 60, 0.3);
}

/* Posizioni iniziali */
.navbar-toggler.collapsed .icon-bar:nth-child(1) {
  top: 12px;
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.navbar-toggler.collapsed .icon-bar:nth-child(2) {
  top: 23px;
  transform: scale(1);
  opacity: 1;
}

.navbar-toggler.collapsed .icon-bar:nth-child(3) {
  top: 34px;
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* Animazione quando il menu è aperto (X) */
.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
  top: 23px;
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 3px 8px rgba(255, 60, 60, 0.5);
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
  opacity: 0;
  transform: scale(0) rotate(180deg);
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg) scale(1.1);
  box-shadow: 0 3px 8px rgba(255, 60, 60, 0.5);
}

/* Effetto pulsante quando attivo */
.navbar-toggler:not(.collapsed) {
  background: rgba(255, 60, 60, 0.1) !important;
  border-color: #ff6b6b !important;
  transform: rotate(180deg) scale(1.05) !important;
}

/* Animazione vibrazione per feedback tattile */
@keyframes menuVibrate {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px) scale(1.02); }
  75% { transform: translateX(2px) scale(1.02); }
}

/* Effetto glow pulsante per il menu attivo */
@keyframes menuGlow {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(255, 60, 60, 0.3); 
  }
  50% { 
    box-shadow: 0 6px 25px rgba(255, 60, 60, 0.6); 
  }
}

.navbar-toggler:not(.collapsed) {
  animation: menuGlow 2s ease-in-out infinite;
}

/* Hide original navbar-toggler-icon */
span.navbar-toggler-icon {
  display: none !important;
}

/* Hide duplicate design text on mobile */
@media (max-width: 767px) {
  .design-badge,
  .design-highlight-box,
  .animated-subtitle-container,
  .subtitle-text {
    display: none !important;
  }
}

/* Enhanced UI Styles */

/* Particles background */
.particles-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Parallax effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Stats section */
.stats_section {
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.stats_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.stats_section .container {
  position: relative;
  z-index: 2;
}

.stats-card {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 60, 60, 0.3);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,60,60,0.1) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stats-icon {
  font-size: 2.5rem;
  color: #FF3C3C;
  margin-bottom: 20px;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stats-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,60,60,0.1) 0%, rgba(255,60,60,0) 70%);
  animation: rotate 10s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.glass-card {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 60, 60, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(255, 60, 60, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .stats-number {
    font-size: 2rem;
  }
  
  .stats-icon {
    font-size: 2rem;
  }
  
  .stats-label {
    font-size: 0.9rem;
  }
}

/* Additional animations and effects for all pages */

/* Animated service cards */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service card enhancements */
.red-service-card {
  overflow: hidden;
  position: relative;
}

.red-service-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,60,60,0.3) 0%, rgba(255,60,60,0) 50%, rgba(255,60,60,0) 100%);
  transition: all 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.red-service-card:hover::before {
  top: 0;
  left: 0;
}

/* Method step animations */
.animate-fade-in {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fade-in.active {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced glass card effect */
.glass-card {
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0) 0%, 
    rgba(255,255,255,0.1) 47%, 
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0.1) 53%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  opacity: 0;
}

.glass-card:hover::after {
  left: 100%;
  opacity: 1;
}

/* Enhanced card transitions */
.methodology_content, 
.contact_info_item,
.form-control,
.btn-primary,
.footer_links a,
.footer_social a {
  transition: all 0.3s ease;
}

.methodology_content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact_info_item:hover {
  transform: translateY(-3px);
}

.form-control:focus {
  box-shadow: 0 0 8px rgba(255, 60, 60, 0.3);
  border-color: rgba(255, 60, 60, 0.5);
}

.footer_links a:hover {
  transform: translateX(5px);
}

.footer_social a:hover {
  transform: translateY(-3px);
}

/* Services Overview Styles */
.services-overview {
  background: #f8f9fa;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc3545, #ff6b7d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
}

.service-features i {
  color: #dc3545;
  margin-right: 0.5rem;
}

/* Process Section Styles */
.process-section {
  background: #f8f9fa;
}

.process-step {
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc3545, #ff6b7d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h4 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section Styles */
.cta-section {
  background: linear-gradient(135deg, #dc3545, #ff6b7d);
  color: white;
}

.cta-section h2 {
  color: white;
}

/* Dropdown menu dark style - exact match for all pages */
.dropdown-menu {
  background-color: #2c2c2c !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6) !important;
  min-width: 220px !important;
  padding: 8px 0 !important;
  margin-top: 5px !important;
}

.dropdown-item {
  color: #ffffff !important;
  padding: 10px 16px !important;
  display: flex !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  background-color: transparent !important;
  border: none !important;
  text-decoration: none !important;
  letter-spacing: 0.5px !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #404040 !important;
  color: #ffffff !important;
  transform: none !important;
}

.dropdown-item i {
  margin-right: 12px !important;
  width: 18px !important;
  color: #dc3545 !important;
  font-size: 14px !important;
  text-align: center !important;
}

/* Override any conflicting styles with maximum specificity */
body .navbar .dropdown-menu,
body .navbar-nav .dropdown-menu,
body ul.dropdown-menu,
body li .dropdown-menu,
body .dropdown-menu[aria-labelledby="servicesDropdown"] {
  background-color: #2c2c2c !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6) !important;
  min-width: 220px !important;
  padding: 8px 0 !important;
  margin-top: 5px !important;
}

body .navbar .dropdown-item,
body .navbar-nav .dropdown-item,
body ul.dropdown-menu .dropdown-item,
body li .dropdown-item,
body .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item {
  color: #ffffff !important;
  padding: 10px 16px !important;
  display: flex !important;
  align-items: center !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  background-color: transparent !important;
  border: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

body .navbar .dropdown-item:hover,
body .navbar-nav .dropdown-item:hover,
body ul.dropdown-menu .dropdown-item:hover,
body li .dropdown-item:hover,
body .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item:hover {
  background-color: #404040 !important;
  color: #ffffff !important;
  transform: none !important;
}

body .navbar .dropdown-item i,
body .navbar-nav .dropdown-item i,
body ul.dropdown-menu .dropdown-item i,
body li .dropdown-item i,
body .dropdown-menu[aria-labelledby="servicesDropdown"] .dropdown-item i {
  margin-right: 12px !important;
  width: 18px !important;
  color: #dc3545 !important;
  font-size: 14px !important;
  text-align: center !important;
}

/* Extra specificity for service.html page with inline styles */
html body .navbar-nav .dropdown-menu,
html body .navbar .dropdown-menu,
html body .nav-item .dropdown-menu {
  background-color: #2c2c2c !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6) !important;
  min-width: 220px !important;
  padding: 8px 0 !important;
  margin-top: 5px !important;
}

html body .navbar-nav .dropdown-item,
html body .navbar .dropdown-item,
html body .nav-item .dropdown-item {
  color: #ffffff !important;
  padding: 10px 16px !important;
  display: flex !important;
  align-items: center !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  background-color: transparent !important;
  border: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

html body .navbar-nav .dropdown-item:hover,
html body .navbar .dropdown-item:hover,
html body .nav-item .dropdown-item:hover {
  background-color: #404040 !important;
  color: #ffffff !important;
}

html body .navbar-nav .dropdown-item i,
html body .navbar .dropdown-item i,
html body .nav-item .dropdown-item i {
  margin-right: 12px !important;
  width: 18px !important;
  color: #dc3545 !important;
  font-size: 14px !important;
  text-align: center !important;
}

/* Maximum specificity override for Bootstrap default styles */
.navbar-nav .dropdown-menu {
  background-color: #2c2c2c !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6) !important;
  min-width: 220px !important;
  padding: 8px 0 !important;
  margin-top: 5px !important;
}

.navbar-nav .dropdown-menu .dropdown-item {
  color: #ffffff !important;
  background-color: transparent !important;
  padding: 10px 16px !important;
  display: flex !important;
  align-items: center !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  border: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
  background-color: #404040 !important;
  color: #ffffff !important;
}

.navbar-nav .dropdown-menu .dropdown-item i {
  margin-right: 12px !important;
  width: 18px !important;
  color: #dc3545 !important;
  font-size: 14px !important;
  text-align: center !important;
}

/* Force override Bootstrap defaults with highest specificity */
.dropdown-menu.show {
  background-color: #2c2c2c !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6) !important;
}

.dropdown-menu.show .dropdown-item {
  color: #ffffff !important;
  background-color: transparent !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}

.dropdown-menu.show .dropdown-item:hover {
  background-color: #404040 !important;
  color: #ffffff !important;
}

/* Ultra-specific targeting for dropdown with ID */
#servicesDropdown + .dropdown-menu {
  background-color: #2c2c2c !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6) !important;
  min-width: 220px !important;
  padding: 8px 0 !important;
  margin-top: 5px !important;
}

#servicesDropdown + .dropdown-menu .dropdown-item {
  color: #ffffff !important;
  background-color: transparent !important;
  padding: 10px 16px !important;
  display: flex !important;
  align-items: center !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  border: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

#servicesDropdown + .dropdown-menu .dropdown-item:hover {
  background-color: #404040 !important;
  color: #ffffff !important;
}

#servicesDropdown + .dropdown-menu .dropdown-item i {
  margin-right: 12px !important;
  width: 18px !important;
  color: #dc3545 !important;
  font-size: 14px !important;
  text-align: center !important;
}

/* Target dropdown by aria-labelledby with maximum priority */
ul[aria-labelledby="servicesDropdown"] {
  background-color: #2c2c2c !important;
  border: 1px solid #444 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6) !important;
  min-width: 220px !important;
  padding: 8px 0 !important;
  margin-top: 5px !important;
}

ul[aria-labelledby="servicesDropdown"] .dropdown-item {
  color: #ffffff !important;
  background-color: transparent !important;
  padding: 10px 16px !important;
  display: flex !important;
  align-items: center !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  border: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

ul[aria-labelledby="servicesDropdown"] .dropdown-item:hover {
  background-color: #404040 !important;
  color: #ffffff !important;
}

ul[aria-labelledby="servicesDropdown"] .dropdown-item i {
  margin-right: 12px !important;
  width: 18px !important;
  color: #dc3545 !important;
  font-size: 14px !important;
  text-align: center !important;
}

/* Mobile responsive styles for services */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
