@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800;900&display=swap');

body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden; 
}


.contact-map-section {
    position: relative;
    width: 100%;
    height: 480px;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-illustration-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-location-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 1440px) {
    .map-illustration-wrapper {
        width: 100%;
        left: 0;
        top: 0;
    }
    
    .contact-map-section {
        height: 400px; 
    }
}

@media (max-width: 768px) {
    .contact-map-section {
        height: auto;
        min-height: 200px;
    }

    .map-illustration-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }

    .contact-location-img {
        width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .contact-map-section {
        height: auto;
        min-height: 180px;
    }

    .contact-location-img {
        max-height: 65vh;
    }
}

@media (min-width: 1441px) {
    .contact-map-section {
        width: 100%;
        max-width: 100%;
    }
    
    .map-illustration-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-location-img {
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 1920px) {
    .contact-map-section {
        width: 100%;
        height: 600px;
    }
    
    .contact-location-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}



.contact-info-section {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 20px;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    overflow: visible;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 120px;
}

.contact-details-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 20px;
}

.contact-main-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-label {
    font-weight: 400;
    font-size: 36px;
    line-height: 25px;
    margin: 0;
    color: #333333;
}

.contact-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    text-decoration: none;
    max-width: 600px;
    transition: color 0.3s;
}

.contact-text:hover {
    color: #000;
    font-weight: 600;
}

.contact-images-col {
    flex: 0 0 650px;
    position: relative;
    height: 500px;
    right: 100px
}

.contact-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.c-img {
    position: absolute;
    width: 571px;
    height: 405px;
    border-radius: 30px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.img-back {
    left: 67px;
    top: 0;
    z-index: 1;
}

.img-front {
    left: 0;
    top: 65px;
    z-index: 2;
}

.c-img:hover {
    z-index: 10;
    transform: scale(1.02);
}

.img-back:hover {
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 1300px) {
    .contact-container { padding-left: 50px; }
    .contact-images-col { flex: 0 0 500px; }
    .c-img { width: 400px; height: 285px; }
    .img-back { left: 50px; }
    .img-front { top: 50px; }
}

@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-info-section {
        padding-top: 40px;
    }

    .contact-details-col {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-images-col {
        width: 100%;
        height: auto;
        min-height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: none;
        right: auto;
    }

    .contact-img-wrapper {
        width: 450px;
        margin: 0 auto;
    }

    .c-img {
        object-fit: contain;
    }
}

@media (max-width: 600px) {
    .contact-main-title { font-size: 32px; }
    .contact-label { font-size: 24px; }

    .contact-info-section {
        padding-top: 24px;
    }

    .contact-details-col {
        margin-bottom: 24px;
    }

    .contact-images-col {
        height: auto;
        min-height: 320px;
        align-items: center;
        justify-content: center;
    }

    .contact-img-wrapper {
        width: 300px;
        margin: 0 auto;
    }

    .c-img {
        width: 260px;
        height: 185px;
        object-fit: contain;
    }

    .img-back { left: 30px; }
    .img-front { top: 30px; }
}





.references-section {
    padding: 60px 0;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}

.references-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 30px 20px;
}

.references-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.references-more {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}
.references-more:hover { color: #37BA77; }

.references-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
}

.references-track::-webkit-scrollbar { display: none; }

.reference-card {
    flex: 0 0 200px;
    height: 191px;
    border: 1px solid #E9E9E9;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.ref-logo-box {
    height: 100px;
    display: flex;
    align-items: center;
}

.ref-logo-box img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 1250px) {
    .home-info-wrapper { flex-wrap: wrap; }
    .container-fluid-custom { padding: 0 40px; }
    .prev-prod { left: 10px; }
    .next-prod { right: 10px; }
}


@keyframes sk-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-active .sk-el {
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    color: transparent !important;
    border-color: transparent !important;
    user-select: none;
    pointer-events: none;
    box-shadow: none !important;
}

.skeleton-active .sk-el * {
    visibility: hidden !important;
}

.skeleton-active .contact-map-section.sk-el {
    background: #f0f0f0;
}

.skeleton-active .contact-main-title.sk-el {
    width: 200px;
    height: 40px;
    border-radius: 8px;
    display: block;
}

.skeleton-active .contact-label.sk-el {
    width: 120px;
    height: 30px;
    border-radius: 6px;
    display: block;
    margin-bottom: 10px;
}

.skeleton-active .contact-text.sk-el {
    width: 100%;
    max-width: 300px;
    height: 20px;
    border-radius: 4px;
    display: block;
}

.skeleton-active .c-img.sk-el {
    content: url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
    background: #e0e0e0;
    background-image: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    border: none !important;
}

.skeleton-active .reference-card.sk-el {
    border: 1px solid #eee !important;
    background: #fff !important;
    box-shadow: none !important;
}

.skeleton-active .ref-logo-box {
    background: #f9f9f9;
    border-radius: 8px;
}

.skeleton-active .ref-name.sk-el {
    width: 80%;
    height: 20px;
    border-radius: 4px;
    display: block;
    margin: 10px auto;
}

@media (max-width: 768px) {
    .skeleton-active .contact-main-title.sk-el { width: 150px; height: 32px; }
}