/**
* Theme Name: Neotech Child
* Description: This is a child theme of Neotech, generated by Merlin WP.
* Author: <a href="http://themelexus.com/">Themelexus</a>
* Template: neotech
* Version: 1.0.8
*/

/* Hide breadcrumb on home page */
.home .breadcrumb-wrap {
    display: none !important;
}

/* Working Process section - styled like technology index */
.elementor-element-67d2b73 .elementor-heading-title {
    color: #ffffff !important;
}
.elementor-element-67d2b73 .elementor-sub-title span {
    background: linear-gradient(111.8deg, #8236FB 21.93%, #076EF4 90.29%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.elementor-element-67d2b73 .process-title a,
.elementor-element-67d2b73 .process-title a:hover {
    color: #ffffff !important;
}
.elementor-element-67d2b73 .content,
.elementor-element-67d2b73 .process-inner-content-wap .content {
    color: rgba(255, 255, 255, 0.85) !important;
}
.elementor-element-67d2b73 .number-index {
    color: #ffffff !important;
}

/* Disable slider/carousel effect - show as static grid */
.elementor-element-67d2b73 .swiper-wrapper {
    transform: none !important;
    transition: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}
.elementor-element-67d2b73 .swiper-slide {
    flex: 0 0 33.33% !important;
    max-width: 33.33% !important;
}
.elementor-element-67d2b73 .swiper-container,
.elementor-element-67d2b73 .swiper {
    overflow: visible !important;
}
@media (max-width: 768px) {
    .elementor-element-67d2b73 .swiper-slide {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Datacenter Map Section - Professional Design */
/* GPS Calibration - adjust these to move all points */
:root {
    /* Two-Point Calibration System */
    /* Ajusta solo estos 4 valores para calibrar todos los puntos */

    /* Ref 1: Vancouver - posicion en pantalla (%) */
    --dc-ref1-x: 11;    /* Vancouver: % desde borde izquierdo */
    --dc-ref1-y: 26;    /* Vancouver: % desde borde superior */

    /* Ref 2: Miami - posicion en pantalla (%) */
    --dc-ref2-x: 34.6;    /* Miami: % desde borde izquierdo */
    --dc-ref2-y: 72;    /* Miami: % desde borde superior */
}

.datacenter-map-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 700px;
    margin-bottom: -140px;  /* Recorta el espacio blanco inferior */
    background: #ffffff;
    overflow: hidden;
}

/* Make parent containers full width and remove extra spacing */
.elementor-element-46629b2,
.elementor-element-46629b2 > .e-con-inner,
.elementor-element-dcmap001,
.elementor-element-dcmap002,
.elementor-element-dcmap002 > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.datacenter-map-header {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.datacenter-map-header h2 {
    color: #1a1a2e !important;
    font-size: 36px;
    margin-bottom: 5px;
    margin-top: 10px;
}

.datacenter-map-header .subtitle {
    background: linear-gradient(111.8deg, #8236FB 21.93%, #076EF4 90.29%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Professional Map Container - North America Focus */
.map-wrapper-pro {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 0;
    overflow: hidden;
    background: #f8fafc;
}

.map-scale-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.map-svg-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: 15% 40%;
    opacity: 0.3;
    filter: brightness(0.4) contrast(1.2);
    transform: scale(2.0) translateY(-19.5%);
    transform-origin: 15% 40%;
}

/* Datacenter Points */
.dc-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.dc-pulse {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #8236FB 0%, #076EF4 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(130, 54, 251, 0.7);
    animation: dc-pulse-animation 2s infinite;
    position: relative;
}

.dc-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: dc-ring-animation 2s infinite;
}

.dc-label {
    margin-top: 6px;
    font-size: 11px;
    color: #2c3e50;
    white-space: nowrap;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.dc-point:hover .dc-label {
    opacity: 1;
    transform: scale(1.1);
    color: #8236FB;
}

.dc-point:hover .dc-pulse {
    transform: scale(1.3);
}

@keyframes dc-pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(130, 54, 251, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(130, 54, 251, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(130, 54, 251, 0);
    }
}

@keyframes dc-ring-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .map-wrapper-pro {
        height: 400px;
    }
    .dc-label {
        font-size: 8px;
    }
    .dc-pulse {
        width: 8px;
        height: 8px;
    }
    .datacenter-stats {
        gap: 30px;
    }
    .datacenter-stats .stat-number {
        font-size: 32px;
    }
}

/* Hide What Clients Say section */
.elementor-element-8d52a05 {
    display: none !important;
}

/* Hide social icons in footer */
.elementor-element-25a2daa {
    display: none !important;
}

/* Hide Company, Quick Links, and Contact sections in footer */
.elementor-element-eb8f1be,
.elementor-element-d32fe9e,
.elementor-element-98d057f {
    display: none !important;
}

/* ALL INTERNAL PAGES - Clean header (same as contact page) */
/* Hide top bar with email, address, hours, social */
body:not(.home) .elementor-element-e09a472 {
    display: none !important;
}

/* Hide menu */
body:not(.home) .elementor-element-e1fd8fd,
body:not(.home) .elementor-element-cb73eb8 {
    display: none !important;
}

/* Hide search and cart */
body:not(.home) .elementor-element-0b9ed36,
body:not(.home) .elementor-element-e385899 {
    display: none !important;
}

/* Hide header group and contact button */
body:not(.home) .elementor-element-0e8ce15,
body:not(.home) .elementor-element-997efed {
    display: none !important;
}

/* Hide "Have Any Questions?" phone section */
body:not(.home) .elementor-element-fe67b08 {
    display: none !important;
}

/* Hide duplicate scroll to top button (keep only theme's button) */
.hfe-scroll-to-top-wrap {
    display: none !important;
}

/* Hide mobile menu button and mobile menu on ALL pages */
.menu-mobile-nav-button,
.hfe-menu-toggle,
.neotech-mobile-nav,
.mobile-navigation,
.site-header-cart {
    display: none !important;
}

/* Internal pages - Header logo same size as home */
body:not(.home) .hfe-site-logo-img {
    max-width: 70px !important;
    height: auto !important;
}

/* Hide "Have Any Questions?" phone support section */
.page-id-85 .elementor-element-fe67b08 {
    display: none !important;
}

/* Hide Google Maps section */
.page-id-85 .elementor-element-3603443 {
    display: none !important;
}

/* Hide Location, Support and dividers - keep only Emails Us */
.page-id-85 .elementor-element-6e36d7b,
.page-id-85 .elementor-element-2f16f0d,
.page-id-85 .elementor-element-45ced60,
.page-id-85 .elementor-element-da2797a {
    display: none !important;
}

/* Hide "Ready to gain competitive advantage" text and button, collapse space */
.page-id-85 .elementor-element-c471d15 {
    display: none !important;
}
/* Remove extra padding/margin from parent container */
.page-id-85 .elementor-element-6932ed1 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.page-id-85 .elementor-element-ea285d8 {
    padding-top: 0 !important;
}

/* Contact page header logo same size as home */
.page-id-85 .hfe-site-logo-img {
    max-width: 70px !important;
    height: auto !important;
}

/* Header row layout for ALL internal pages */
body:not(.home) .elementor-element-666d717 {
    position: relative !important;
}

body:not(.home) .elementor-element-666d717 > .e-con-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    position: relative !important;
}

/* Ensure logo container doesn't take full width */
body:not(.home) .elementor-element-666d717 .elementor-element-2a91646 {
    flex: 0 0 auto !important;
    width: auto !important;
}

/* HOME button style - positioned absolutely on the right */
.home-button-contact {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 999 !important;
    background: linear-gradient(111.8deg, #8236FB 21.93%, #076EF4 90.29%) !important;
    color: white !important;
    padding: 14px 30px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(130, 54, 251, 0.3) !important;
}

.home-button-contact .home-icon {
    font-size: 18px !important;
    transition: transform 0.3s ease !important;
}

.home-button-contact:hover {
    transform: translateY(calc(-50% - 2px)) !important;
    box-shadow: 0 6px 20px rgba(130, 54, 251, 0.4) !important;
    color: white !important;
}

.home-button-contact:hover .home-icon {
    transform: translateX(-3px) !important;
}

/* Header logo size */
.elementor-element-9394729 .hfe-site-logo-img {
    max-width: 70px !important;
    height: auto !important;
}

/* Hide header menu, search, and cart */
.elementor-element-cb73eb8,
.elementor-element-0b9ed36,
.elementor-element-e385899 {
    display: none !important;
}

/* Center the remaining footer content (logo + text) */
.elementor-element-5241279 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
}
.elementor-element-bfa35a7 {
    justify-content: center !important;
}

/* Footer logo and text - centered */
.elementor-element-5241279 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}
.elementor-element-5241279 > .elementor-widget-container,
.elementor-element-5241279 .elementor-widget-container {
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
}
.elementor-element-73f2aa6 {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}
.elementor-element-33889b3 {
    width: 100% !important;
    text-align: center !important;
}
.hfe-site-logo-img {
    max-width: 120px !important;
    height: auto !important;
}

/* Service icons on mobile - smaller and centered */
@media (max-width: 767px) {
    .elementor-element-fb5806d .service-image-icon {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto 15px auto !important;
    }
    .elementor-element-fb5806d .service_icon {
        width: 50px !important;
        height: 50px !important;
    }
    .elementor-element-fb5806d .service_icon img {
        max-width: 50px !important;
        height: auto !important;
    }
    .elementor-element-fb5806d .service-caption {
        text-align: center !important;
    }
}
