/* VencejosLab Improvements - Modern Premium Styles */

:root {
    --primary: #2EA9E0;
    --primary-dark: #1e87b8;
    --secondary: #606060;
    --text-main: #3b3b3b;
    --text-light: #606060;
    --bg-main: #ffffff;
    --bg-secondary: #f8f8f9;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --texture-bg: #f8f8f9;
    --card-bg: #ffffff;
    --border-color: rgba(0, 0, 0, 0.05);
}

body.dark-mode {
    --text-main: #ffffff;
    --text-light: #d1d1d1;
    --bg-main: #121212;
    --bg-secondary: #1e1e1e;
    --glass-bg: rgba(18, 18, 18, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --texture-bg: #0f0f0f;
    --card-bg: #1e1e1e;
    --border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode {
    background-color: var(--bg-main);
    color: var(--text-main);
}

body.dark-mode .section-block {
    background-color: var(--bg-main);
}

body.dark-mode .section-block-grey {
    background-color: var(--bg-secondary);
}

body.dark-mode .step-content,
body.dark-mode .service-card-unique,
body.dark-mode .bento-card-inner {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

body.dark-mode .section-heading h2,
body.dark-mode .section-heading h3,
body.dark-mode .section-heading h4,
body.dark-mode .block-heading h3,
body.dark-mode .heading-sm h3,
body.dark-mode .heading-sm h4,
body.dark-mode .heading-sm h5,
body.dark-mode .process-step-unique h4,
body.dark-mode .service-card-unique h4 {
    color: var(--text-main);
}

body.dark-mode .navbar-custom {
    background-color: var(--bg-main) !important;
}

body.dark-mode .navbar-custom .navbar-links-custom li a {
    color: var(--text-main) !important;
}

body.dark-mode .dropdown-menu {
    background-color: var(--card-bg);
}

body.dark-mode .dropdown-menu li a {
    color: var(--text-light);
}

body.dark-mode .dropdown-menu li a:hover {
    background-color: var(--bg-secondary);
    color: var(--primary) !important;
}

body.dark-mode .whatsapp-chat-box {
    background-color: var(--card-bg);
    color: var(--text-main);
}

body.dark-mode .whatsapp-message {
    background-color: var(--bg-secondary);
    color: var(--text-main);
}

body.dark-mode .whatsapp-message::before {
    border-color: transparent var(--bg-secondary) transparent transparent;
}

/* Specific section overrides */
body.dark-mode .why-choose-wrapper {
    background-color: var(--bg-main);
    background-image: none !important;
}

body.dark-mode .feature-side-box {
    background-color: var(--bg-secondary);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-mode .feature-side-box:hover {
    background-color: var(--card-bg);
}

body.dark-mode .feature-box-content h4 {
    color: var(--text-main) !important;
}

body.dark-mode .feature-box-content p {
    color: var(--text-light) !important;
}

body.dark-mode .title-fix-dark {
    color: var(--text-main) !important;
}

/* Navbar Toggle Link Refinement */
.navbar-links-custom .dark-mode-toggle-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Force height for vertical centering */
    padding: 0 20px !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.navbar-links-custom .dark-mode-toggle-link i {
    font-size: 36px !important;
    /* Drastically larger */
    line-height: 1 !important;
    color: inherit !important;
    display: block !important;
}


.navbar-links-custom .dark-mode-toggle-link:hover i {
    transform: scale(1.1);
    color: var(--primary) !important;
}

@media (max-width: 991px) {
    .navbar-links-custom .dark-mode-toggle-link {
        justify-content: flex-start !important;
        height: auto !important;
        padding: 15px !important;
    }

    /* Mobile menu dark mode fixes */
    body.dark-mode .navbar-collapse {
        background-color: var(--bg-main) !important;
        border-color: var(--border-color) !important;
        box-shadow: none !important;
    }

    body.dark-mode .navbar-custom .navbar-links-custom li {
        border-bottom: 1px solid var(--border-color) !important;
        background-color: transparent !important;
        padding: 0 !important;
    }

    body.dark-mode .navbar-nav>li>a {
        color: var(--text-main) !important;
        background-color: transparent !important;
    }

    body.dark-mode .navbar-nav>li>a:hover {
        color: var(--primary) !important;
    }

    body.dark-mode .navbar-toggle .icon-bar {
        background-color: var(--primary) !important;
    }
}





/* Modern Typography */
html {
    scroll-padding-top: 80px;
    /* Adjust based on navbar height */
}

body {
    font-family: 'Quicksand', sans-serif;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Custom Hero Section */
.hero-modern {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #001f3f 0%, #0071BC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/util/slide-1.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.hero-modern h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-modern p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 0;
    /* Changed to square/clipped look for unique style */
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 75%, 90% 100%, 0 100%, 0 25%);
}

.btn-premium::before,
.btn-premium::after {
    content: '';
    position: absolute;
    background: #fff;
    opacity: 0.6;
}

.btn-premium::before {
    width: 1px;
    height: 15px;
    top: -5px;
    left: 15%;
}

.btn-premium::after {
    width: 15px;
    height: 1px;
    top: 15%;
    left: -5px;
}

.btn-premium:hover {
    transform: scale(1.05);
    background: #fff;
    color: var(--primary) !important;
    clip-path: polygon(0 0, 90% 0, 100% 25%, 100% 100%, 10% 100%, 0 75%);
}

/* Process Section Refinement */
.roadmap-container {
    position: relative;
    padding: 20px 0;
}

.roadmap-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 0;
    opacity: 0.3;
}

.process-step-unique {
    padding: 40px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(40px);
}

.process-step-unique.in-view {
    opacity: 1;
    transform: translateY(0);
}

.step-num-bg {
    position: absolute;
    top: -40px;
    /* Peak out above the card */
    left: 50%;
    transform: translateX(-50%);
    font-size: 140px;
    font-weight: 800;
    color: rgba(0, 74, 135, 0.04);
    /* Brand dark blue base */
    z-index: 0;
    /* Move in front of section background but behind card if needed */
    line-height: 1;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.step-content {
    background: #fff;
    padding: 45px 30px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    clip-path: polygon(0 15%, 15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step-unique:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    transition: all 0.3s ease;
}

.process-step-unique:hover .step-icon {
    transform: scale(1.2) rotate(12deg);
    background: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(46, 169, 224, 0.4);
}

.process-step-unique.in-view .step-icon {
    /* Resting state after entry */
    transform: scale(1);
}

.process-step-unique h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.process-step-unique p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Specific step accents */
.step-1 {
    --accent-rgb: 46, 169, 224;
}

.step-2 {
    --accent-rgb: 142, 68, 173;
}

.step-3 {
    --accent-rgb: 39, 174, 96;
}

/* Slider Height Unification - Forcing all cards to match the tallest one */
#services-slider .owl-stage {
    display: flex !important;
}

#services-slider .owl-item {
    display: flex !important;
    height: auto !important;
}

#services-slider .item {
    width: 100%;
    display: flex;
}

.process-step-unique:hover .step-num-bg {
    color: rgba(46, 169, 224, 0.12);
    /* Brand light blue on hover - slightly more visible */
    transform: translateX(-50%) translateY(-30px) scale(1.2);
}


.process-step-unique .line-top-left {
    top: 15px;
    left: 20%;
}

.process-step-unique:hover .line-p {
    background: rgb(var(--accent-rgb));
    height: 50px;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

/* Portafolio badges */
.impact-badge {
    display: inline-block;
    background: rgba(69, 222, 176, 0.1);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* Split Hero Styling */
/* Responsive Hero */

.split-hero {
    display: flex;
    min-height: 80vh;
    background: var(--texture-bg);
    overflow: hidden;
}

.hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10% 5%;
    background: linear-gradient(-45deg, var(--primary), var(--primary-dark), #0071BC, var(--primary));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #fff;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 10;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-image-side {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    margin-left: -15%;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-text-side h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    -webkit-text-fill-color: initial;
    background: none;
    line-height: 1.1;
}

.hero-text-side p {
    font-size: 1.6rem;
    opacity: 0.95;
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.texture-overlay {
    display: none;
    /* Removed as it caused perceived pixelation */
}

/* Unique Service Cards with Clipping and Perpendicular Lines */
.service-card-unique {
    background: #fff;
    padding: 60px 35px;
    text-align: center;
    margin: 20px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: calc(100% - 40px);
    /* Account for top/bottom margin */
    z-index: 1;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Color Themes */
.card-blue {
    --accent: #2EA9E0;
    background: rgba(46, 169, 224, 0.02);
}

.card-purple {
    --accent: #8E44AD;
    background: rgba(142, 68, 173, 0.02);
}

.card-orange {
    --accent: #E67E22;
    background: rgba(230, 126, 34, 0.02);
}

.card-green {
    --accent: #27AE60;
    background: rgba(39, 174, 96, 0.02);
}

.card-cyan {
    --accent: #16A085;
    background: rgba(22, 160, 133, 0.02);
}

.service-card-unique i {
    font-size: 55px;
    color: var(--primary) !important;
    /* Standardized to brand light blue */
    margin-bottom: 35px;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.service-card-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(46, 169, 224, 0.2);
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    pointer-events: none;
    z-index: -1;
}

/* Perpendicular Lines Aesthetic */
.line-p {
    position: absolute;
    background: var(--primary);
    opacity: 0.5;
}

.line-v {
    width: 1px;
    height: 30px;
}

.line-h {
    width: 30px;
    height: 1px;
}

.service-card-unique .line-top-left {
    top: 0;
    left: 10%;
}

.service-card-unique .line-bottom-right {
    bottom: 0;
    right: 10%;
}

.service-card-unique:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-unique:hover .line-p {
    background: var(--primary-dark);
    height: 50px;
}

.service-card-unique i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 30px;
    display: block;
    transition: all 0.3s ease;
}

.service-card-unique:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-card-unique h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.service-card-unique p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Unique Buttons with Perpendicular Lines */
.btn-unique {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 1px solid var(--primary);
    background: transparent;
    overflow: hidden;
}

.btn-unique::before,
.btn-unique::after {
    content: '';
    position: absolute;
    background: var(--primary);
}

.btn-unique::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: -2px;
}

.btn-unique:hover {
    background: var(--primary);
    color: #fff !important;
}

/* Owl Custom Nav Arrows */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #fff !important;
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
    z-index: 100;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav .owl-prev {
    left: -75px;
}

.owl-nav .owl-next {
    right: -75px;
}

.owl-carousel {
    padding: 0 80px;
}

@media (max-width: 1200px) {
    .owl-nav button {
        display: none;
    }
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* 30/70 Split Stories Section */
.split-stories-wrapper {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.category-col {
    background: #111;
    min-height: 100%;
    /* Ensure it matches parent row height */
    padding: 100px 5% 100px 10%;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.sticky-nav-content {
    position: sticky;
    top: 120px;
    z-index: 10;
}

.category-bg-text {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 160px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    letter-spacing: -2px;
    writing-mode: vertical-lr;
    /* Vertical text as requested */
}

.category-nav-inner {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.title-fix {
    color: #ffffff !important;
    font-size: 42px !important;
    font-weight: 300 !important;
    /* Premium Light Weight */
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.nav-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.cat-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 12px 0;
}

.arrow-indicator {
    color: var(--primary);
    font-size: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.cat-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cat-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cat-link.active {
    color: #ffffff;
    transform: translateX(10px);
}

.cat-link.active .arrow-indicator {
    opacity: 1;
    transform: translateX(0);
}

.cat-link.active .cat-title {
    color: var(--primary);
}

/* Gallery Column (70%) */
.gallery-col {
    padding: 100px 4%;
    background: #0a0a0a;
}

.gallery-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Forced 3 columns (3x2 grid) */
    gap: 25px;
}

.project-bento-card {
    position: relative;
    height: 320px;
    /* Further reduced height for 3x2 compactness */
    overflow: hidden;
    transition: all 0.5s ease;
    display: none;
    /* Hidden by default for initial load sync */
}

.bento-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
    overflow: hidden;
}

.project-bento-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 40px;
    opacity: 0.9;
    filter: grayscale(100%);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-bento-card:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.bento-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary);
    color: #fff;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 800;
    z-index: 5;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 74, 135, 0.95) 0%, rgba(0, 0, 0, 0) 70%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: background 0.4s ease;
}

.project-bento-card:hover .bento-overlay {
    background: rgba(0, 18, 32, 0.85);
    backdrop-filter: blur(5px);
}

.bento-content {
    transform: translateY(140px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.project-bento-card:hover .bento-content {
    transform: translateY(0);
}

.bento-content h4 {
    color: #fff !important;
    font-size: 20px;
    /* More compact for 3x2 grid */
    margin-bottom: 8px;
    font-weight: 700;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-bento-card:hover .bento-content p {
    opacity: 1;
}

.milestone-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-bento-card:hover .milestone-list {
    opacity: 1;
    transition-delay: 0.1s;
}

.milestone-list li {
    color: #fff;
    font-size: 12px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.milestone-list li i {
    color: var(--primary) !important;
    font-size: 14px;
}

.btn-simple-white {
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-simple-white:hover {
    color: var(--primary) !important;
    padding-left: 10px;
}

/* Responsiveness */

/* Navbar Refinements */
.navbar-custom {
    background: rgba(255, 255, 255, 0.2);
    /* Súper transparente para dejar ver el fondo */
    border-bottom: none;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.navbar-custom .navbar-links-custom li a {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    /* Gris oscuro de la paleta */
    text-shadow: none !important;
    letter-spacing: 0.5px;
}

.navbar-custom .navbar-links-custom li a:hover {
    color: var(--primary) !important;
}

/* Why Choose Us Refined Redesign */
.why-choose-wrapper {
    background: #f4f4f4;
    /* Soft Gray Background */
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.feature-list-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-side-box {
    background: #fcfcfc;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    border-left: 4px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    overflow: hidden;
    /* Clipped Corners Effect */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 97% 100%, 0 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.feature-side-box:hover {
    background: #fff;
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(46, 169, 224, 0.1);
}

.feature-num-circle {
    min-width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    font-family: monospace;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(46, 169, 224, 0.3);
}

.feature-box-content h4 {
    color: #1a1a1a !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-box-content p {
    color: #666 !important;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
    /* Ensure max 3 lines check: typically line-height * 3 */
    max-height: 4.5em;
    overflow: hidden;
}

.why-choose-image-container {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.clipped-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-overlay-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
    z-index: -1;
}

.card-glow-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(46, 169, 224, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-side-box:hover .card-glow-side {
    opacity: 1;
}



/* CTA Banner Premium */
.cta-banner-premium {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-title {
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 300 !important;
    /* Matches premium light weight */
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.6rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.cta-banner-premium .btn-premium {
    padding: 20px 50px;
    font-size: 16px;
    letter-spacing: 2px;
    box-shadow: 0 15px 35px rgba(46, 169, 224, 0.3);
}

/* CTA Contact Info Row */
.cta-contact-info-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 50px auto 0;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 16px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cta-contact-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.cta-contact-item i {
    color: var(--primary);
    font-size: 20px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
}

/* Particles & Header Layering */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: transparent !important;
}

.hero-text-side .reveal {
    position: relative;
    z-index: 5;
}

.hero-text-side .texture-overlay {
    z-index: 2;
}