/* ============================================
   Transportes MCN - Custom Styles
   Corporate Colors: #ff5e14 (orange), #eb120a (red), #282828 (dark), #152136 (navy)
============================================ */

/* --- Performance --- */
.wow {
    will-change: transform, opacity;
}

.svc-card,
.why-us-card,
.benefit-card,
.coverage-card,
.mcn-stat-card,
.value-prop-card {
    contain: layout style;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img.loaded {
    opacity: 1;
}

/* --- Header / Menu --- */
.mcn-header {
    padding: 0 30px;
}

.mcn-main-menu nav > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
}

.mcn-main-menu nav > ul > li {
    margin-left: 0 !important;
    margin-right: 0;
}

.mcn-main-menu nav > ul > li > a {
    font-size: 14px !important;
    padding: 50px 12px !important;
    white-space: nowrap;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
}

.mcn-main-menu nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #ff5e14;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mcn-main-menu nav > ul > li:hover > a::after,
.mcn-main-menu nav > ul > li.active > a::after {
    transform: scaleX(1);
}

.mcn-header-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    padding: 50px 0;
}

.mcn-header-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mcn-header-social a:hover {
    color: #ffffff;
    background: #ff5e14;
    border-color: #ff5e14;
}

.menu-3.sticky .mcn-header-social {
    padding: 35px 0;
}

.menu-3.sticky .mcn-main-menu nav > ul > li > a {
    padding: 35px 14px !important;
}

.menu-3.sticky .mcn-main-menu nav > ul > li > a::after {
    bottom: 26px;
}

/* --- Hero Section --- */
.hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ff5e14;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    border: 2px solid rgba(255, 94, 20, 0.6);
    border-radius: 30px;
}

.hero-description {
    font-size: 18px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 0;
}

.hero-buttons .btn {
    margin-bottom: 10px;
}

.hero-buttons .white-btn {
    border: 2px solid #ffffff;
}

/* --- Value Props Section --- */
.value-props-area {
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.value-prop-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.value-prop-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(-51deg, #eb120a 0%, #ff5e14 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.value-prop-card:hover::before {
    transform: scaleX(1);
}

.value-prop-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(-51deg, #eb120a 0%, #ff5e14 100%);
    color: #ffffff;
    font-size: 36px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-prop-card:hover .value-prop-icon {
    transform: rotateY(180deg);
}

.value-prop-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #282828;
}

.value-prop-card p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
}

/* --- About Highlights --- */
.about-highlights {
    margin-top: 15px;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
}

.about-highlight-item i {
    color: #ff5e14;
    font-size: 18px;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-highlight-item span {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

/* --- Services Cards (icon-based) --- */
.services-modern-area {
    background: #f9f9f9;
}

.svc-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px 30px;
    transition: all 0.4s ease;
    border: 1px solid #eeeeee;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #eb120a 0%, #ff5e14 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-card-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 94, 20, 0.08);
    color: #ff5e14;
    font-size: 32px;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.svc-card:hover .svc-card-icon {
    background: linear-gradient(135deg, #eb120a 0%, #ff5e14 100%);
    color: #ffffff;
    transform: scale(1.05);
}

.svc-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #282828;
}

.svc-card p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
    color: #9b9b9b;
}

.service-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 94, 20, 0.08);
    color: #ff5e14;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Coverage Section --- */
.coverage-area {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.coverage-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 33, 54, 0.92);
}

.coverage-area > .container {
    position: relative;
    z-index: 2;
}

.coverage-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 40px 35px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.coverage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 94, 20, 0.4);
}

.coverage-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(-51deg, #eb120a 0%, #ff5e14 100%);
    color: #ffffff;
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
}

.coverage-card-header h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 0;
}

.coverage-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-card-body ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
}

.coverage-card-body ul li:last-child {
    border-bottom: none;
}

.coverage-card-body ul li i {
    color: #ff5e14;
    margin-right: 12px;
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* --- E-Commerce Section --- */
.ecommerce-area {
    background: #ffffff;
}

.ecommerce-description {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.ecommerce-features {
    margin-top: 20px;
}

.ecommerce-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.ecommerce-feature-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 10px;
    background: rgba(255, 94, 20, 0.1);
    color: #ff5e14;
    font-size: 22px;
    margin-right: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ecommerce-feature-item:hover .ecommerce-feature-icon {
    background: linear-gradient(-51deg, #eb120a 0%, #ff5e14 100%);
    color: #ffffff;
}

.ecommerce-feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #282828;
}

.ecommerce-feature-text p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 22px;
}

/* Badge Grid */
.ecommerce-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.badge-item {
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-item i {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.badge-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.badge-item p {
    font-size: 13px;
    margin-bottom: 0;
    opacity: 0.8;
}

.badge-primary {
    background: linear-gradient(-51deg, #eb120a 0%, #ff5e14 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 94, 20, 0.3);
}

.badge-primary h3,
.badge-primary p {
    color: #ffffff;
}

.badge-dark {
    background: #282828;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(40, 40, 40, 0.3);
}

.badge-dark h3,
.badge-dark p {
    color: #ffffff;
}

.badge-dark i {
    color: #ff5e14;
}

/* --- Network Stats Section (nosotros) --- */
.mcn-network-area {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.mcn-network-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 33, 54, 0.92);
}

.mcn-network-area > .container {
    position: relative;
    z-index: 2;
}

.mcn-network-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mcn-network-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 28px;
    max-width: 550px;
    margin: 0 auto;
}

.mcn-stat-card {
    text-align: center;
    padding: 35px 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.mcn-stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 94, 20, 0.3);
}

.mcn-stat-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(255, 94, 20, 0.12);
    color: #ff5e14;
    font-size: 26px;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.mcn-stat-card:hover .mcn-stat-icon {
    background: linear-gradient(135deg, #eb120a 0%, #ff5e14 100%);
    color: #ffffff;
}

.mcn-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.mcn-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- Why Us Section --- */
.why-us-area {
    background: #f9f9f9;
}

.why-us-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 94, 20, 0.2);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(255, 94, 20, 0.08);
    color: #ff5e14;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    background: linear-gradient(-51deg, #eb120a 0%, #ff5e14 100%);
    color: #ffffff;
}

.why-us-card h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #282828;
}

.why-us-card p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

/* --- Colaboradores / Transportistas Form --- */
.colaboradores-area {
    background: linear-gradient(135deg, #152136 0%, #1a2d4a 100%);
    position: relative;
    overflow: hidden;
}

.colaboradores-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 94, 20, 0.04);
}

.colaboradores-area::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 94, 20, 0.03);
}

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

.colaboradores-area .section-title {
    color: #ffffff;
}

.colaboradores-area .section-title h2 {
    color: #ffffff;
}

.colaboradores-area .section-title span {
    color: rgba(255, 255, 255, 0.7);
}

.colaboradores-area .section-title h1 {
    color: rgba(255, 255, 255, 0.04);
}

.colaboradores-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.colaboradores-form-header {
    background: linear-gradient(135deg, #ff5e14 0%, #eb120a 100%);
    padding: 30px 40px;
    text-align: center;
}

.colaboradores-form-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 28px;
    margin: 0 auto 12px;
}

.colaboradores-form-header h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 5px;
}

.colaboradores-form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 0;
}

.colaboradores-form {
    padding: 35px 40px 30px;
}

.form-group-mcn {
    margin-bottom: 22px;
}

.form-group-mcn label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #282828;
    margin-bottom: 8px;
}

.required-mark {
    color: #ff5e14;
    font-weight: 700;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5e14;
    font-size: 15px;
    z-index: 2;
    pointer-events: none;
}

.input-icon-wrap.textarea-wrap i {
    top: 18px;
    transform: none;
}

.input-icon-wrap input,
.input-icon-wrap select,
.input-icon-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: #282828;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.input-icon-wrap select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff5e14' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.input-icon-wrap textarea {
    resize: vertical;
    min-height: 80px;
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus,
.input-icon-wrap textarea:focus {
    border-color: #ff5e14;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.08);
}

.input-icon-wrap input::placeholder,
.input-icon-wrap textarea::placeholder {
    color: #b0b0b0;
    font-size: 13px;
}

.vehiculos-help {
    margin-bottom: 8px;
}

.vehiculos-help p {
    font-size: 12px;
    color: #888;
    margin-bottom: 0;
    line-height: 18px;
    padding-left: 2px;
}

.form-submit-area {
    text-align: center;
    padding-top: 10px;
}

.form-submit-area .btn {
    min-width: 220px;
    padding: 18px 40px;
}

.form-disclaimer {
    font-size: 12px;
    color: #999;
    margin-bottom: 0;
}

.form-disclaimer i {
    margin-right: 5px;
    color: #ff5e14;
}

/* Form messages */
.form-message {
    padding: 50px 40px;
    text-align: center;
}

.form-message-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.form-message-success .form-message-icon {
    color: #28a745;
}

.form-message-error .form-message-icon {
    color: #dc3545;
}

.form-message h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #282828;
}

.form-message p {
    font-size: 15px;
    line-height: 26px;
    color: #666;
    max-width: 450px;
    margin: 0 auto;
}

/* --- Contact Cards --- */
.contact-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(255, 94, 20, 0.5);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: linear-gradient(-51deg, #eb120a 0%, #ff5e14 100%);
    color: #ffffff;
    font-size: 26px;
    margin: 0 auto 20px;
}

.contact-card h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 26px;
}

/* --- Footer MCN --- */
.mcn-footer {
    background: #152136;
}

.mcn-footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mcn-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.mcn-footer-logo img {
    max-height: 50px;
}

.mcn-footer-about p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
}

.mcn-footer-social {
    display: flex;
    gap: 10px;
}

.mcn-footer-social a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.mcn-footer-social a:hover {
    background: #ff5e14;
    color: #ffffff;
}

.mcn-footer-links h4,
.mcn-footer-contact h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.mcn-footer-links h4::after,
.mcn-footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff5e14;
}

.mcn-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mcn-footer-links ul li {
    margin-bottom: 10px;
}

.mcn-footer-links ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.mcn-footer-links ul li a:hover {
    color: #ff5e14;
    padding-left: 5px;
}

.mcn-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.mcn-footer-contact-item i {
    color: #ff5e14;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.mcn-footer-contact-item span {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.mcn-footer-contact-item p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 0;
    line-height: 20px;
}

.mcn-footer-bottom {
    padding: 20px 0;
}

.mcn-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-bottom: 0;
}

.mcn-footer-bottom-links {
    text-align: right;
}

.mcn-footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.mcn-footer-bottom-links a:hover {
    color: #ff5e14;
}

@media (max-width: 767px) {
    .mcn-footer-top {
        padding-top: 50px !important;
        padding-bottom: 20px !important;
    }

    .mcn-footer-logo img {
        max-height: 40px;
    }

    .mcn-footer-links h4,
    .mcn-footer-contact h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .mcn-footer-bottom-links {
        text-align: left;
        margin-top: 8px;
    }

    .mcn-footer-bottom-links a {
        margin-left: 0;
        margin-right: 15px;
    }

    .mcn-copyright {
        font-size: 12px;
    }
}

/* --- Responsive --- */
@media (min-width: 1200px) and (max-width: 1500px) {
    .mcn-main-menu nav > ul > li > a {
        font-size: 13px !important;
        padding: 50px 8px !important;
    }

    .mcn-main-menu nav > ul > li > a::after {
        left: 8px;
        right: 8px;
    }

    .mcn-header {
        padding: 0 10px;
    }

    .mcn-header-social {
        gap: 8px;
    }

    .mcn-header-social a {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .ecommerce-badge-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .coverage-card {
        padding: 30px 25px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 28px;
    }

    /* --- Header tablet/móvil --- */
    .mcn-header {
        padding: 0 15px !important;
        background: #282828 !important;
    }

    .mcn-header .logo {
        padding: 12px 0;
    }

    .mcn-header .logo img {
        max-height: 45px;
    }

    .mcn-header-social {
        display: none !important;
    }

    .menu-2-bar,
    .info-bar {
        display: none !important;
    }

    .mean-container .mean-bar {
        background: transparent !important;
        padding: 0 !important;
        min-height: 0 !important;
        z-index: 99;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: auto !important;
    }

    .mean-container a.meanmenu-reveal {
        color: #ffffff !important;
        border: 1px solid rgba(255,255,255,0.4) !important;
        padding: 6px 8px !important;
        margin: 0 !important;
        top: 0 !important;
        right: 0 !important;
        position: relative !important;
        width: 36px;
        height: 30px;
        line-height: 30px;
        font-size: 18px !important;
    }

    .mean-container a.meanmenu-reveal span {
        background: #ffffff !important;
        height: 2px;
        margin-top: 3px;
    }

    .mean-container .mean-nav {
        background: #282828;
        margin-top: 10px;
        position: absolute;
        right: 0;
        width: 100vw;
        border-top: 2px solid #ff5e14;
    }

    .mean-container .mean-nav ul li a {
        color: rgba(255,255,255,0.9) !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
        font-size: 13px !important;
        padding: 12px 20px !important;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .mean-container .mean-nav ul li a:hover {
        color: #ff5e14 !important;
        background: rgba(255,255,255,0.03);
    }
}

@media (max-width: 767px) {
    /* --- Hero móvil --- */
    .header-transparent {
        position: relative !important;
    }

    .slider-02-height {
        min-height: auto !important;
    }

    .single-slider {
        padding: 40px 0 50px;
    }

    .slider-03-space {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Breadcrumb móvil */
    .mcn-breadcrumb {
        padding: 35px 0 25px;
    }

    .mcn-breadcrumb-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .mcn-breadcrumb .breadcrumb-text h1 {
        font-size: 24px;
    }

    .mcn-breadcrumb-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .mcn-breadcrumb .breadcrumb-menu li a,
    .mcn-breadcrumb .breadcrumb-menu li span {
        font-size: 12px;
    }

    /* CTA Transportistas móvil */
    .cta-transportistas-area {
        padding: 50px 0;
    }

    .cta-transportistas-area h3 {
        font-size: 24px;
    }

    .cta-transportistas-area p {
        font-size: 14px;
    }

    .transportistas-form-section {
        padding: 50px 0;
    }

    .slider-text {
        text-align: center !important;
    }

    .slider-text h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        display: inline-block !important;
        font-size: 10px;
        letter-spacing: 1px;
        padding: 5px 12px;
        margin-bottom: 10px;
        border-width: 1px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 24px;
        margin: 0 auto;
    }

    .hero-buttons {
        margin-top: 20px !important;
    }

    .hero-buttons .btn {
        display: block;
        text-align: center;
        font-size: 13px;
        padding: 16px 30px;
    }

    .hero-buttons .ml-15 {
        margin-left: 0 !important;
    }

    /* --- Stats banner móvil --- */
    .stats-banner-area {
        padding: 25px 0;
    }

    .stat-item {
        padding: 10px 5px;
    }

    .stat-item .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .stat-item::after {
        display: none;
    }

    /* --- Value props móvil --- */
    .value-props-area {
        padding-top: 40px !important;
        padding-bottom: 10px !important;
    }

    .value-prop-card {
        padding: 25px 15px;
    }

    .value-prop-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 28px;
    }

    .value-prop-card h4 {
        font-size: 17px;
    }

    /* --- About móvil --- */
    .about-02-area {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .section-title h1 {
        font-size: 100px !important;
    }

    .section-title h2 {
        font-size: 26px !important;
    }

    /* --- Clients logos móvil --- */
    .clients-logos-area {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .clients-logos-title {
        text-align: center;
        margin-bottom: 15px !important;
    }

    .clients-underline {
        margin: 0 auto;
    }

    .clients-logos-title h4 {
        font-size: 16px;
    }

    /* --- Services móvil --- */
    .services-modern-area {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
    }

    .svc-card {
        padding: 25px 20px;
    }

    .svc-card-icon {
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 26px;
        margin-bottom: 16px;
    }

    .svc-card h3 {
        font-size: 17px;
    }

    /* --- CTA Banner móvil --- */
    .cta-banner-inner {
        margin-top: 0;
        margin-bottom: 0;
        border-radius: 12px;
        padding: 25px 20px;
    }

    .cta-banner-text h3 {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .cta-banner-text p {
        font-size: 13px;
    }

    .cta-banner-buttons {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .cta-banner-buttons .btn,
    .btn-whatsapp-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 13px;
        padding: 14px 20px;
    }

    /* --- Coverage móvil --- */
    .coverage-area {
        padding-top: 80px !important;
        padding-bottom: 50px !important;
    }

    .coverage-card {
        padding: 25px 20px;
    }

    .coverage-card-header {
        flex-direction: column;
        text-align: center;
    }

    .coverage-icon {
        margin-right: 0;
        margin-bottom: 12px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 22px;
    }

    .coverage-card-header h3 {
        font-size: 20px;
    }

    .coverage-card-body ul li {
        font-size: 13px;
        padding: 8px 0;
    }

    /* --- E-Commerce móvil --- */
    .ecommerce-area {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .ecommerce-badge-grid {
        gap: 12px;
        max-width: 100%;
    }

    .badge-item {
        padding: 20px 12px;
    }

    .badge-item i {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .badge-item h3 {
        font-size: 18px;
    }

    .badge-item p {
        font-size: 12px;
    }

    /* --- Network stats móvil --- */
    .mcn-network-area {
        padding: 50px 0;
    }

    .mcn-network-title {
        font-size: 24px;
    }

    .mcn-network-subtitle {
        font-size: 14px;
    }

    .mcn-stat-card {
        padding: 25px 10px;
        margin-bottom: 15px;
    }

    .mcn-stat-number {
        font-size: 26px;
    }

    .mcn-stat-icon {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .mcn-stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    /* --- Why Us móvil --- */
    .why-us-area {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
    }

    .why-us-card {
        padding: 25px 20px;
    }

    .why-us-icon {
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 22px;
    }

    .why-us-card h4 {
        font-size: 17px;
    }

    /* --- Colaboradores móvil --- */
    .colaboradores-area {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-card h5 {
        font-size: 15px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    .colaboradores-form {
        padding: 20px 15px 15px;
    }

    .colaboradores-form-header {
        padding: 20px 15px;
    }

    .colaboradores-form-header h3 {
        font-size: 17px;
    }

    .form-message {
        padding: 30px 15px;
    }

    .form-submit-area .btn {
        width: 100%;
    }

    /* --- Cotizar móvil --- */
    .cotizar-area {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .cotizar-form-wrapper {
        padding: 20px 15px 15px;
    }

    .cotizar-form-title {
        font-size: 16px;
    }

    .cotizar-info-card {
        padding: 15px;
    }

    .cotizar-whatsapp a {
        padding: 15px 18px;
    }

    /* --- Footer móvil --- */
    .footer-top-area {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }

    /* --- WhatsApp float móvil --- */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-float-label {
        display: none;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    /* --- Section titles móvil --- */
    .section-title.section-2 {
        margin-bottom: 30px !important;
    }

    .section-title > span {
        font-size: 15px !important;
    }

    .contact-card {
        padding: 25px 15px;
    }
}

@media (max-width: 575px) {
    .ecommerce-badge-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .stat-item .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 9px;
    }

    .slider-text h2 {
        font-size: 24px !important;
    }
}

@media (max-width: 400px) {
    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 5px 10px;
    }

    .slider-text h2 {
        font-size: 22px !important;
    }

    .stat-item .stat-number {
        font-size: 20px;
    }

    .ecommerce-badge-grid {
        grid-template-columns: 1fr;
        max-width: 220px;
        margin: 0 auto;
    }
}

/* --- Breadcrumb / Page Hero (internal pages) --- */
.mcn-breadcrumb {
    position: relative;
    padding: 150px 0 70px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.mcn-breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mcn-breadcrumb--servicios .mcn-breadcrumb-overlay {
    background: linear-gradient(135deg, rgba(21,33,54,0.9) 0%, rgba(235,18,10,0.6) 100%);
}

.mcn-breadcrumb--nosotros .mcn-breadcrumb-overlay {
    background: linear-gradient(135deg, rgba(21,33,54,0.92) 0%, rgba(40,40,40,0.85) 100%);
}

.mcn-breadcrumb--transportistas .mcn-breadcrumb-overlay {
    background: linear-gradient(135deg, rgba(255,94,20,0.75) 0%, rgba(21,33,54,0.92) 100%);
}

.mcn-breadcrumb--contacto .mcn-breadcrumb-overlay {
    background: linear-gradient(135deg, rgba(40,40,40,0.88) 0%, rgba(255,94,20,0.5) 100%);
}

.mcn-breadcrumb > .container {
    position: relative;
    z-index: 2;
}

.mcn-breadcrumb .breadcrumb-text {
    text-align: center;
}

.mcn-breadcrumb-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-size: 28px;
    margin: 0 auto 20px;
}

.mcn-breadcrumb .breadcrumb-text h1 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
    margin-bottom: 10px;
    line-height: 1.2;
}

.mcn-breadcrumb-desc {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mcn-breadcrumb .breadcrumb-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.mcn-breadcrumb .breadcrumb-menu li {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.mcn-breadcrumb .breadcrumb-menu li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.mcn-breadcrumb .breadcrumb-menu li a:hover {
    color: #ff5e14;
}

.mcn-breadcrumb .breadcrumb-menu li span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.mcn-breadcrumb .breadcrumb-menu li::before {
    display: none;
}

.mcn-breadcrumb .breadcrumb-separator {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}

/* --- Form Validation --- */
.input-icon-wrap input.is-invalid,
.input-icon-wrap select.is-invalid,
.input-icon-wrap textarea.is-invalid {
    border-color: #dc3545 !important;
    background-color: #fff5f5;
}

.input-icon-wrap input.is-valid,
.input-icon-wrap select.is-valid,
.input-icon-wrap textarea.is-valid {
    border-color: #28a745 !important;
}

.mcn-field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    padding-left: 2px;
}

.mcn-field-error.visible {
    display: block;
}

.input-icon-wrap .validation-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    display: none;
}

.input-icon-wrap.textarea-wrap .validation-icon {
    top: 18px;
    transform: none;
}

.input-icon-wrap .validation-icon.valid {
    color: #28a745;
    display: block;
}

.input-icon-wrap .validation-icon.invalid {
    color: #dc3545;
    display: block;
}

/* --- CTA Transportistas (Homepage) --- */
.cta-transportistas-area {
    background: linear-gradient(135deg, #152136 0%, #1a2d4a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-transportistas-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 94, 20, 0.05);
}

.cta-transportistas-area .container {
    position: relative;
    z-index: 2;
}

.cta-transportistas-area h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-transportistas-area p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 28px;
}

.cta-transportistas-area .btn {
    padding: 20px 45px;
}

/* --- Transportistas page form section --- */
.transportistas-form-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.transportistas-form-section .section-title {
    margin-bottom: 40px;
}

/* ============================================
   NEW FEATURES
============================================ */

/* --- (7) Stats Banner --- */
.stats-banner-area {
    background: linear-gradient(135deg, #282828 0%, #152136 100%);
    padding: 40px 0;
    position: relative;
    z-index: 3;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-item:last-child::after,
.col-6:nth-child(2n) .stat-item::after {
    display: none;
}

@media (min-width: 992px) {
    .col-6:nth-child(2n) .stat-item::after {
        display: block;
    }
    .col-xl-3:last-child .stat-item::after {
        display: none;
    }
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number .counter {
    color: #ff5e14;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- (3) Clients Logos --- */
.clients-logos-area {
    background: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.clients-logos-title h4 {
    font-size: 18px;
    color: #282828;
    line-height: 1.4;
    margin-bottom: 8px;
}

.clients-underline {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #eb120a, #ff5e14);
    border-radius: 2px;
}

.single-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    height: 80px;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.single-client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.single-client-logo img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
}

/* --- (5) CTA Banner --- */
.cta-banner-area {
    padding: 0;
    position: relative;
    z-index: 2;
}

.cta-banner-inner {
    background: linear-gradient(135deg, #eb120a 0%, #ff5e14 100%);
    border-radius: 16px;
    padding: 45px 50px;
    margin-top: -30px;
    margin-bottom: -30px;
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(255, 94, 20, 0.3);
}

.cta-banner-text h3 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-banner-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 0;
}

.cta-banner-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cta-banner-buttons .btn {
    background: #ffffff;
    color: #ff5e14;
    font-size: 14px;
    padding: 18px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cta-banner-buttons .btn:hover {
    background: #282828;
    color: #ffffff;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 18px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp-cta i {
    font-size: 20px;
}

.btn-whatsapp-cta:hover {
    background: #1da851;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* --- (6) Benefits Grid (Transportistas) --- */
.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 94, 20, 0.4);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eb120a, #ff5e14);
    color: #ffffff;
    font-size: 22px;
    margin: 0 auto 15px;
}

.benefit-card h5 {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 8px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 0;
}

/* --- (2) Cotizar Section --- */
.cotizar-area {
    background: #f9f9f9;
}

.cotizar-form-wrapper {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.cotizar-form-title {
    font-size: 19px;
    color: #282828;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
}

.cotizar-form-title i {
    color: #ff5e14;
    margin-right: 8px;
}

.cotizar-info-wrapper {
    margin-bottom: 30px;
}

.cotizar-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.cotizar-info-card:hover {
    transform: translateX(5px);
    border-color: rgba(255, 94, 20, 0.3);
}

.cotizar-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 94, 20, 0.08);
    color: #ff5e14;
    font-size: 20px;
}

.cotizar-info-card h5 {
    font-size: 16px;
    color: #282828;
    margin-bottom: 3px;
}

.cotizar-info-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 0;
    line-height: 20px;
}

.cotizar-whatsapp {
    margin-top: 5px;
}

.cotizar-whatsapp a {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    color: #ffffff;
    border-radius: 12px;
    padding: 20px 25px;
    transition: all 0.3s ease;
}

.cotizar-whatsapp a:hover {
    background: #1da851;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.cotizar-whatsapp i {
    font-size: 36px;
    flex-shrink: 0;
}

.cotizar-whatsapp strong {
    display: block;
    font-size: 17px;
    margin-bottom: 2px;
}

.cotizar-whatsapp span {
    display: block;
    font-size: 13px;
    opacity: 0.85;
}

/* --- (1) WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 20px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1da851;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55);
}

.whatsapp-float i {
    font-size: 28px;
    line-height: 1;
}

.whatsapp-float-label {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.2;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-transparent {
        position: relative !important;
    }

    .single-slider {
        padding: 50px 0 60px;
    }

    .slider-03-space {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .cta-banner-inner {
        margin-top: 0;
        margin-bottom: 0;
    }

    .stat-item .stat-number {
        font-size: 32px;
    }

    .slider-text h2 {
        font-size: 38px !important;
    }

    .hero-subtitle {
        font-size: 12px;
    }
}
