:root {
    --primary: #0052CC;
    --primary-dark: #003E9C;
    --secondary: #FF3A2F;
    --secondary-dark: #E0302A;
    --dark: #0A1F44;
    --light: #F7F9FC;
    --gray-100: #F0F4F8;
    --gray-200: #D9E2EC;
    --gray-300: #BCCCDC;
    --gray-400: #9FB3C8;
    --gray-500: #829AB1;
    --gray-600: #627D98;
    --gray-700: #486581;
    --gray-800: #334E68;
    --gray-900: #243B53;
    --success: #00A3AD;
    --warning: #FFB800;
    --danger: #FF5252;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --box-shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.08);
    --box-shadow: 0 8px 24px rgba(10, 31, 68, 0.12);
    --box-shadow-lg: 0 16px 48px rgba(10, 31, 68, 0.16);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --section-spacing: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.nv_section {
    padding: calc(var(--section-spacing) * 0.8) 0;
    position: relative;
    overflow: hidden;
}

.nv_section_lg {
    padding: var(--section-spacing) 0;
}

/* Utility Classes */
.nv_text_primary {
    color: var(--primary);
}

.nv_text_secondary {
    color: var(--secondary);
}

.nv_text_dark {
    color: var(--dark);
}

.nv_text_light {
    color: var(--light);
}

.nv_text_success {
    color: var(--success);
}

.nv_text_warning {
    color: var(--warning);
}

.nv_text_danger {
    color: var(--danger);
}

.nv_bg_primary {
    background-color: var(--primary);
}

.nv_bg_secondary {
    background-color: var(--secondary);
}

.nv_bg_dark {
    background-color: var(--dark);
}

.nv_bg_light {
    background-color: var(--light);
}

.nv_bg_success {
    background-color: var(--success);
}

.nv_bg_warning {
    background-color: var(--warning);
}

.nv_bg_danger {
    background-color: var(--danger);
}

.nv_fs_huge {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
}

.nv_fs_h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.nv_fs_h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.nv_fs_h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.nv_fs_h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.nv_fs_h5 {
    font-size: clamp(1.125rem, 1.5vw, 1.5rem);
}

.nv_fs_lead {
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
}

.nv_fw_regular {
    font-weight: 400;
}

.nv_fw_medium {
    font-weight: 500;
}

.nv_fw_bold {
    font-weight: 700;
}

.nv_fw_extrabold {
    font-weight: 800;
}

.nv_lh_tight {
    line-height: 1.2;
}

.nv_lh_normal {
    line-height: 1.6;
}

.nv_lh_relaxed {
    line-height: 1.8;
}

.nv_opacity_75 {
    opacity: 0.75;
}

.nv_opacity_50 {
    opacity: 0.5;
}

.nv_z_1 {
    z-index: 1;
}

.nv_z_2 {
    z-index: 2;
}

.nv_z_top {
    z-index: 1000;
}

.nv_position_relative {
    position: relative;
}

/* Buttons */
.nv_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nv_btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: height 0.3s ease;
    z-index: -1;
}

.nv_btn:hover::after {
    height: 100%;
}

.nv_btn_primary {
    background-color: var(--primary);
    color: white;
}

.nv_btn_primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.nv_btn_secondary {
    background-color: var(--secondary);
    color: white;
}

.nv_btn_secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.nv_btn_dark {
    background-color: var(--dark);
    color: white;
}

.nv_btn_dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.nv_btn_outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 26px;
}

.nv_btn_outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.nv_btn_outline_light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 26px;
}

.nv_btn_outline_light:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.nv_btn_icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nv_btn_icon i,
.nv_btn_icon svg {
    transition: var(--transition);
}

.nv_btn_icon:hover i,
.nv_btn_icon:hover svg {
    transform: translateX(3px);
}

.nv_btn_lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.nv_btn_sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Header & Navigation */
.nv_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: var(--transition);
}

.nv_top_bar {
    background-color: var(--secondary);
    padding: 8px 0;
    color: white;
    font-weight: 500;
}

.nv_navbar {
    padding: 20px 0;
    transition: var(--transition);
}

.nv_navbar.scrolled {
    background-color: var(--dark);
    box-shadow: var(--box-shadow-sm);
    padding: 12px 0;
}

.nv_logo {
    height: 68px;
    transition: var(--transition);
    width: 200px;
    object-fit: cover;
}

.nv_navbar.scrolled .nv_logo {
    height: 75px;
}

.nv_nav_menu {
    display: flex;
    align-items: center;
}

.nv_nav_link {
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 4px;
    position: relative;
}

.nv_navbar.scrolled .nv_nav_link {
    color: white;
}

.nv_nav_link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: currentColor;
    transition: width 0.3s ease, left 0.3s ease;
}

.nv_nav_link:hover::after,
.nv_nav_link.active::after {
    width: 70%;
    left: 15%;
}

.nv_navbar.scrolled .nv_nav_link:hover,
.nv_navbar.scrolled .nv_nav_link.active {
    color: white;
}

.nv_nav_link:hover,
.nv_nav_link.active {
    color: white;
}

.nv_hamburger {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.nv_hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.nv_navbar.scrolled .nv_hamburger span {
    background-color: var(--dark);
}

.nv_hamburger span:nth-child(1) {
    top: 0;
}

.nv_hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nv_hamburger span:nth-child(3) {
    bottom: 0;
}

.nv_hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nv_hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nv_hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.nv_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    background: linear-gradient(to right, rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.7)), url('/assets/images/retrato-joven-trabajador-casco-gran-planta-metalurgica.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.nv_hero_bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.nv_hero_content {
    position: relative;
    z-index: 1;
}

.nv_hero_subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.nv_hero_title {
    font-size: clamp(2.5rem, 7vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.nv_hero_text {
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.nv_hero_cta_group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nv_hero_scroll_indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nv_hero_scroll_indicator::after {
    content: '';
    width: 1px;
    height: 60px;
    background-color: white;
    margin-top: 10px;
    animation: scrollIndicate 2s infinite;
}

@keyframes scrollIndicate {
    0% {
        height: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        height: 60px;
        opacity: 0;
    }
}

/* Emergency Banner */
.nv_emergency_banner {
    position: absolute;
    top: 90px;
    right: 5%;
    background-color: var(--secondary);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    transform: rotate(3deg);
    box-shadow: var(--box-shadow);
    max-width: 300px;
    z-index: 2;
    animation: bannerFloat 4s ease-in-out infinite;
}

@keyframes bannerFloat {

    0%,
    100% {
        transform: rotate(3deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-15px);
    }
}

.nv_emergency_banner::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed white;
    border-radius: var(--border-radius);
    animation: dashedBorder 20s linear infinite;
}

@keyframes dashedBorder {
    to {
        background-position: 100% 100%;
    }
}

.nv_emergency_title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.nv_emergency_subtitle {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1;
}

.nv_emergency_text {
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 15px;
}

/* Client Logo Carousel */
.nv_clients {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.nv_client_slider {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.nv_client_track {
    display: flex;
    animation: clientScroll 30s linear infinite;
}

@keyframes clientScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nv_client_item {
    flex: 0 0 200px;
    height: 80px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv_client_item img {
    max-height: 70%;
    max-width: 70%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.nv_client_item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* About Section */
.nv_about {
    background-color: white;
}

.nv_section_header {
    margin-bottom: 60px;
}

.nv_section_subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
}

.nv_section_subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transform: translateY(-50%);
}

.nv_text_center .nv_section_subtitle::before {
    left: -40px;
}

.nv_section_title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.nv_section_description {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 0;
    color: var(--gray-700);
}

.nv_about_image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.nv_about_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nv_experience_badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.nv_experience_number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.nv_experience_text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.nv_about_features {
    margin-top: 40px;
}

.nv_feature_item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.nv_feature_icon {
    width: 60px;
    height: 60px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.nv_feature_item:hover .nv_feature_icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.nv_feature_content {
    flex: 1;
}

.nv_feature_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.nv_feature_text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Services Section */
.nv_services {
    background-color: var(--gray-100);
    position: relative;
}

.nv_services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.nv_service_card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
}

.nv_service_card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.nv_service_card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow);
}

.nv_service_card:hover::before {
    height: 8px;
}

.nv_service_icon {
    width: 70px;
    height: 70px;
    background-color: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.nv_service_card:hover .nv_service_icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.nv_service_content {
    padding: 30px;
}

.nv_service_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.nv_service_description {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.nv_service_link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.nv_service_link i {
    margin-left: 5px;
    transition: var(--transition);
}

.nv_service_link:hover {
    color: var(--primary-dark);
}

.nv_service_link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.nv_why_choose {
    background-color: white;
}

.nv_tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--gray-200);
}

.nv_tab {
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
    position: relative;
}

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

.nv_tab.active {
    color: var(--primary);
}

.nv_tab.active::after {
    width: 100%;
}

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

.nv_tab_content {
    display: none;
}

.nv_tab_content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nv_why_choose_item {
    margin-bottom: 30px;
}

.nv_why_choose_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

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

.nv_why_choose_text {
    color: var(--gray-700);
    padding-left: 35px;
}

/* Stats Section */
.nv_stats {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: white;
    position: relative;
    overflow: hidden;
}

.nv_stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E") center center;
    opacity: 0.3;
}

.nv_stats_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nv_stat_column {
    flex: 0 0 calc(25% - 20px);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.nv_stat_card {
    text-align: center;
    padding: 30px;
    height: 100%;
}

.nv_stat_icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.nv_stat_number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.nv_stat_text {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Call to Action Section */
.nv_cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/request_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
}

.nv_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.3) 0%, rgba(10, 31, 68, 0) 70%);
}

.nv_cta_content {
    position: relative;
    z-index: 1;
}

.nv_cta_title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.nv_cta_subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Testimonials Section */
.nv_testimonials {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.nv_testimonial_slider {
    position: relative;
    padding: 30px 0;
}

.nv_testimonial_card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--box-shadow-sm);
    margin: 15px;
    transition: var(--transition);
    position: relative;
}

.nv_testimonial_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.nv_testimonial_card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: serif;
    line-height: 1;
    color: var(--gray-200);
    z-index: 0;
}

.nv_testimonial_text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.nv_testimonial_author {
    display: flex;
    align-items: center;
}

.nv_author_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.nv_author_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nv_author_info {
    flex: 1;
}

.nv_author_name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

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

.nv_testimonial_rating {
    display: flex;
    margin-bottom: 5px;
}

.nv_testimonial_rating i {
    color: var(--warning);
    margin-right: 3px;
}

.nv_testimonial_navigation {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.nv_testimonial_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--dark);
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nv_testimonial_btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* FAQ Section */
.nv_faq {
    background-color: var(--gray-100);
}

.nv_accordion {
    margin-bottom: 10px;
}

.nv_accordion_header {
    background-color: white;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.nv_accordion_header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.nv_accordion_header.active {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--box-shadow);
}

.nv_accordion_header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.nv_accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin-top: -5px;
    position: relative;
    z-index: 0;
    box-shadow: var(--box-shadow-sm);
}

.nv_accordion_body {
    padding: 20px 25px;
    color: var(--gray-700);
}

/* Contact Section */
.nv_contact {
    background-color: white;
}

.nv_contact_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.nv_contact_column {
    flex: 0 0 50%;
    padding: 0 15px;
}

.nv_contact_info {
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.nv_contact_info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E") center center;
    opacity: 0.2;
}

.nv_contact_info_content {
    position: relative;
    z-index: 1;
}

.nv_contact_info_title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.nv_contact_info_subtitle {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.nv_contact_method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.nv_contact_icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.nv_contact_content {
    flex: 1;
}

.nv_contact_label {
    font-size: 0.875rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
}

.nv_contact_text {
    font-size: 1.125rem;
    font-weight: 600;
}

.nv_contact_text a {
    color: white;
}

.nv_emergency_notice {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
}

.nv_emergency_notice i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--secondary);
}

.nv_emergency_notice_text {
    font-size: 1.125rem;
    font-weight: 600;
}

.nv_contact_form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.nv_contact_form_title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.nv_form_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    margin-bottom: 20px;
}

.nv_form_column {
    flex: 0 0 50%;
    padding: 0 10px;
}

.nv_form_group {
    margin-bottom: 20px;
}

.nv_form_label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.nv_form_control {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-size: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--light);
    transition: var(--transition);
}

.nv_form_control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
    outline: none;
}

.nv_form_control::placeholder {
    color: var(--gray-500);
}

textarea.nv_form_control {
    height: auto;
    padding: 15px;
    resize: vertical;
    min-height: 120px;
}

.nv_form_select {
    position: relative;
}

.nv_form_select::after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--gray-600);
    pointer-events: none;
}

/* Footer Section */
.nv_footer {
    background-color: var(--dark);
    color: white;
    padding-top: 80px;
}

.nv_footer_logo {
    margin-bottom: 20px;
    max-width: 180px;
}

.nv_footer_about {
    max-width: 350px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.nv_footer_social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.nv_social_link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.nv_footer_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

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

.nv_footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nv_footer_links li {
    margin-bottom: 12px;
}

.nv_footer_links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.nv_footer_links a i {
    margin-right: 8px;
    font-size: 0.75rem;
    transition: var(--transition);
}

.nv_footer_links a:hover {
    color: white;
    transform: translateX(5px);
}

.nv_footer_links a:hover i {
    color: var(--primary);
}

.nv_footer_contact_item {
    display: flex;
    margin-bottom: 15px;
}

.nv_footer_contact_icon {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.nv_footer_contact_text {
    flex: 1;
    opacity: 0.8;
}

.nv_newsletter {
    margin-top: 20px;
}

.nv_newsletter_form {
    display: flex;
    margin-top: 15px;
}

.nv_newsletter_input {
    flex: 1;
    height: 45px;
    padding: 0 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nv_newsletter_input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nv_newsletter_btn {
    height: 45px;
    padding: 0 15px;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nv_newsletter_btn:hover {
    background-color: var(--primary-dark);
}

.nv_copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
}

.nv_copyright_text {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9375rem;
}

/* Back To Top Button */
.nv_back_top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.nv_back_top.active {
    opacity: 1;
    visibility: visible;
}

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

/* Responsive Styles */
@media (max-width: 1199px) {
    :root {
        --section-spacing: 100px;
    }

    .nv_stat_column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 991px) {
    :root {
        --section-spacing: 80px;
    }

    .nv_nav_menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: var(--box-shadow);
        z-index: 998;
    }

    .nv_nav_menu.active {
        right: 0;
    }

    .nv_nav_link {
        color: var(--dark);
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .nv_nav_link::after {
        display: none;
    }

    .nv_hamburger {
        display: block;
    }

    .nv_emergency_banner {
        position: relative;
        top: 0;
        right: 0;
        transform: rotate(0);
        margin: 30px auto 0;
    }

    .nv_contact_column {
        flex: 0 0 100%;
    }

    .nv_contact_info {
        margin-bottom: 30px;
    }

    .nv_experience_badge {
        bottom: 20px;
        right: 20px;
        width: 140px;
        height: 140px;
    }

    .nv_experience_number {
        font-size: 3rem;
    }

    .nv_experience_text {
        font-size: 0.8rem;
    }

    .nv_about_image {
        margin-bottom: 60px;
    }

    .nv_form_column {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    :root {
        --section-spacing: 70px;
    }

    .nv_hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .nv_hero_cta_group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nv_stats_row {
        flex-direction: column;
    }

    .nv_stat_column {
        flex: 0 0 100%;
    }

    .nv_client_item {
        flex: 0 0 150px;
    }

    .nv_section_subtitle::before {
        display: none;
    }

    .nv_testimonial_card {
        padding: 25px;
    }

    .nv_footer_column {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    :root {
        --section-spacing: 60px;
    }

    .nv_hero_subtitle {
        font-size: 1rem;
    }

    .nv_section_title {
        font-size: 1.75rem;
    }

    .nv_tab {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .nv_testimonial_author {
        flex-direction: column;
        align-items: flex-start;
    }

    .nv_author_avatar {
        margin-bottom: 10px;
    }

    .nv_contact_form {
        padding: 30px 20px;
    }
}

/* Legal Pages Styling */
.nv_legal_page {
    background-color: white;
    padding-top: 140px;
}

.nv_legal_content {
    max-width: 900px;
    margin: 0 auto;
}

.nv_legal_section {
    margin-bottom: 40px;
}

.nv_legal_title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.nv_legal_subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.nv_legal_list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.nv_legal_list li {
    margin-bottom: 10px;
    color: var(--gray-700);
}

.nv_contact_info_mini {
    background-color: var(--gray-100);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
}
/* Cookie Consent Popup */
.nv_cookie_consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 31, 68, 0.95);
    color: white;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    /* Hidden by default, shown with JS */
}

.nv_cookie_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.nv_cookie_text {
    flex: 1;
    padding-right: 20px;
}

.nv_cookie_text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.nv_cookie_text a {
    color: var(--secondary);
    text-decoration: underline;
}

.nv_cookie_buttons {
    display: flex;
    gap: 10px;
}

/* Cookie Settings Panel */
.nv_cookie_settings {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: var(--dark);
    border-top: 4px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
    /* Hidden by default, shown with JS */
}

.nv_cookie_settings.active {
    transform: translateY(0);
}

.nv_cookie_settings_header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nv_cookie_settings_header h4 {
    margin-bottom: 0;
    font-weight: 600;
}

.nv_cookie_close_btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-600);
    transition: var(--transition);
}

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

.nv_cookie_settings_body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.nv_cookie_option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.nv_cookie_option:last-child {
    border-bottom: none;
}

.nv_cookie_option_text {
    flex: 1;
    padding-right: 20px;
}

.nv_cookie_option_text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.nv_cookie_option_text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.nv_cookie_switch {
    position: relative;
    width: 50px;
    height: 24px;
}

.nv_cookie_switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nv_cookie_switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: var(--transition);
    border-radius: 34px;
}

.nv_cookie_switch label:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

.nv_cookie_switch input:checked+label {
    background-color: var(--primary);
}

.nv_cookie_switch input:checked+label:before {
    transform: translateX(26px);
}

.nv_cookie_switch.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.nv_cookie_settings_footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-200);
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .nv_cookie_content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nv_cookie_text {
        margin-bottom: 15px;
        padding-right: 0;
    }

    .nv_cookie_buttons {
        width: 100%;
        justify-content: space-between;
    }
}

/* Page Header Styles */
.nv_page_header {
    position: relative;
    height: 300px;
    background: linear-gradient(to right, rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.7)), url('/assets/images/retrato-joven-trabajador-casco-gran-planta-metalurgica.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.nv_page_header_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.nv_page_header_content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.nv_page_title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.nv_breadcrumb {
    font-size: 1rem;
    font-weight: 500;
}

.nv_breadcrumb a {
    color: var(--secondary);
    transition: var(--transition);
}

.nv_breadcrumb a:hover {
    color: white;
}

/* Approach Section Styles */
.nv_approach_section {
    background-color: white;
}

.nv_approach_image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.nv_approach_badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.nv_approach_number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.nv_approach_text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.nv_approach_steps {
    margin-top: 40px;
}

.nv_approach_step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.nv_step_number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-right: 20px;
    opacity: 0.5;
}

.nv_step_content {
    flex: 1;
}

.nv_step_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.nv_step_text {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .nv_page_header {
        height: 200px;
    }

    .nv_approach_badge {
        width: 120px;
        height: 120px;
        right: 10px;
        bottom: 10px;
    }

    .nv_approach_number {
        font-size: 2.5rem;
    }

    .nv_approach_text {
        font-size: 0.75rem;
    }
}

/* Service Detail Page Styles */
.nv_service_detail {
    background-color: white;
}

.nv_service_detail_image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.nv_service_detail_text {
    margin-top: 30px;
    color: var(--gray-700);
}

.nv_service_feature_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 25px;
    color: var(--dark);
}

.nv_service_feature {
    display: flex;
    margin-bottom: 30px;
}

.nv_service_feature_icon {
    width: 60px;
    height: 60px;
    background-color: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.nv_service_feature:hover .nv_service_feature_icon {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.nv_service_feature_content {
    flex: 1;
}

.nv_service_feature_content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.nv_service_list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.nv_service_list li {
    margin-bottom: 10px;
    color: var(--gray-700);
}

.nv_service_cta {
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 30px;
    border-left: 5px solid var(--primary);
}

.nv_service_cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.nv_service_cta p {
    margin-bottom: 0;
    color: var(--gray-700);
}

/* Sidebar Styles */
.nv_service_sidebar {
    position: sticky;
    top: 120px;
}

.nv_sidebar_widget {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow-sm);
}

.nv_sidebar_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--dark);
}

.nv_sidebar_service_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nv_sidebar_service_list li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.nv_sidebar_service_list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.nv_sidebar_service_list li a {
    display: block;
    padding: 12px 15px;
    color: var(--gray-700);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.nv_sidebar_service_list li a i {
    margin-right: 10px;
    color: var(--primary);
}

.nv_sidebar_service_list li a:hover {
    background-color: var(--gray-100);
    color: var(--primary);
    transform: translateX(5px);
}

.nv_sidebar_service_list li.active a {
    background-color: var(--primary);
    color: white;
}

.nv_sidebar_service_list li.active a i {
    color: white;
}

.nv_sidebar_contact_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.nv_sidebar_contact_item:last-child {
    margin-bottom: 0;
}

.nv_sidebar_contact_icon {
    width: 40px;
    height: 40px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 15px;
    flex-shrink: 0;
}

.nv_sidebar_contact_text {
    flex: 1;
}

.nv_sidebar_contact_text span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 3px;
}

.nv_sidebar_contact_text a,
.nv_sidebar_contact_text p {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.nv_emergency_widget {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: white;
}

.nv_emergency_content {
    text-align: center;
}

.nv_emergency_icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.nv_emergency_content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.nv_emergency_content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.nv_btn_light {
    background-color: white;
    color: var(--primary);
}

.nv_btn_light:hover {
    background-color: var(--gray-100);
}

.nv_btn_block {
    display: block;
    width: 100%;
}

.nv_sidebar_testimonial_text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 20px;
    position: relative;
}

.nv_sidebar_testimonial_text:before {
    content: '\201C';
    font-size: 3rem;
    color: var(--gray-300);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    z-index: 0;
}

.nv_sidebar_testimonial_author {
    display: flex;
    align-items: center;
}

.nv_sidebar_author_image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.nv_sidebar_author_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nv_sidebar_author_info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark);
}

.nv_sidebar_author_info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Related Services Section */
.nv_related_services {
    background-color: var(--gray-100);
}

/* Service Contact Section */
.nv_service_contact {
    background-color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .nv_service_sidebar {
        position: static;
        margin-top: 50px;
    }

    .nv_service_feature {
        flex-direction: column;
    }

    .nv_service_feature_icon {
        margin-bottom: 15px;
    }
}
/* Notice Widget Styles */
.nv_notice_widget {
    background: linear-gradient(45deg, var(--success), #007e7e);
    color: white;
}

.nv_notice_content {
    text-align: center;
}

.nv_notice_icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.nv_notice_content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.nv_notice_content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.nv_btn_light {
    background-color: white;
    color: var(--success);
}

.nv_btn_light:hover {
    background-color: var(--gray-100);
}

/* Benefits Widget Styles */
.nv_benefits_widget {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
}

.nv_benefits_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nv_benefits_list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray-700);
}

.nv_benefits_list li:last-child {
    margin-bottom: 0;
}

.nv_benefits_list li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Efficiency Widget Styles */
.nv_efficiency_widget {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
}

.nv_efficiency_content {
    text-align: center;
}

.nv_efficiency_icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.nv_efficiency_content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.nv_efficiency_content p {
    margin-bottom: 20px;
    opacity: 0.9;
}


.nv_efficiency_list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.nv_efficiency_list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.nv_efficiency_list li:last-child {
    margin-bottom: 0;
}

.nv_efficiency_list li i {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Responsive adjustments for new widgets */
@media (max-width: 767px) {
    .nv_benefits_list li {
        font-size: 0.9rem;
    }

    .nv_efficiency_content h5 {
        font-size: 1.1rem;
    }

    .nv_efficiency_content p {
        font-size: 0.9rem;
    }

    .nv_efficiency_list li {
        font-size: 0.85rem;
    }
}