﻿/* -----------------------------------------
   HERO SECTION
----------------------------------------- */
.section-header-home {
    position: relative;
    min-height: clamp(450px, 60vw, 850px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Carousel */
.hero-carousel,
.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .hero-slide img,
    .hero-slide .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: kenBurnsZoom 20s ease-in-out infinite;
    }

    .hero-slide.active img,
    .hero-slide.active .hero-image {
        animation: kenBurnsZoom 20s ease-in-out;
    }

@keyframes kenBurnsZoom {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

/* Content */
.hero-content {
    text-align: center;
    z-index: 6;
    position: relative;
    padding: 2rem 1.5rem;
}

    .hero-content h1 {
        font-size: clamp(1.5rem, 0.9643rem + 2.2857vw, 3.25rem);
        font-weight: 700;
        color: #FAFAFA;
        line-height: 1.2;
        margin: 0 auto 1.5rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        max-width: 1140px;
        width: 100%;
        word-wrap: break-word;
        white-space: normal;
        opacity: 0;
        animation: slideInFromLeft 0.9s ease-out 0.3s forwards;
    }

        .hero-content h1 strong {
            font-weight: 900;
            color: #ff6600;
        }

    .hero-content p {
        font-size: clamp(0.9rem, 0.9rem + 0.2vw, 1.05rem);
        color: #FAFAFA;
        max-width: 720px;
        margin: 0 auto 2.5rem;
        line-height: 1.6;
        opacity: 0;
        animation: slideInFromLeft 0.9s ease-out 0.6s forwards;
    }

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    opacity: 0;
    animation: slideInFromLeft 0.9s ease-out 0.9s forwards;
}

    .hero-buttons .btn {
        background-color: #ff6600;
        color: #FAFAFA;
        padding: clamp(0.875rem, 1vw, 1rem) clamp(1.25rem, 2vw, 2rem);
        font-size: clamp(0.9rem, 1vw, 1rem);
        font-weight: 600;
        border-radius: 5px;
        border: none;
        text-transform: none;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }

        .hero-buttons .btn:hover,
        .hero-buttons .btn:focus {
            background-color: #e55a00;
            color: #FAFAFA;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,102,0,0.4);
        }

        .hero-buttons .btn:active {
            transform: translateY(0);
        }

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

        .hero-buttons .btn {
            width: 100%;
            max-width: 280px;
        }
}

/* Dots */
.hero-carousel-dots {
    position: absolute;
    bottom: clamp(0.75rem, 2vw, 2rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-dot {
    width: clamp(8px, 1vw, 12px);
    height: clamp(8px, 1vw, 12px);
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

    .carousel-dot:hover {
        background: rgba(255,255,255,0.8);
        transform: scale(1.2);
    }

    .carousel-dot.active {
        background: #ff6600;
        border-color: #ff6600;
        transform: scale(1.3);
    }

/* Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/* -----------------------------------------
   ABOUT SECTION
----------------------------------------- */
.section-about {
    background-color: var(--neutral-lightest);
}
    .section-about h2 {
        margin-top: 1.6rem;
        margin-bottom: 0.75rem;
    }

.about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Features list */
.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.85rem;
    }

        .about-features li i,
        .about-features li svg {
            color: #ff6600 !important;
            font-size: 1rem;
            flex-shrink: 0;
        }

            .about-features li svg path {
                fill: #ff6600 !important;
            }

/* Logo */
.about-logo img {
    width: 100%;
    height: auto;
}

/* Media wrapper */
.about-media-wrapper {
    cursor: pointer;
}

.about-video-wrapper,
.about-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
}

.about-video,
.about-image,
.about-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play button */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-button {
    width: clamp(55px, 6vw, 80px);
    height: clamp(55px, 6vw, 80px);
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,102,0,0.4);
}

    .play-button i {
        color: #fff;
        font-size: clamp(1.2rem, 2vw, 1.7rem);
        margin-left: 4px;
    }

    .play-button:hover,
    .about-media-wrapper:hover .play-button {
        background: #e55a00;
        transform: scale(1.08);
    }

/* Popup */
.video-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .video-popup.active {
        opacity: 1;
        visibility: visible;
    }

.video-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    cursor: pointer;
}

.video-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-popup-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: clamp(45px, 5vw, 50px);
    height: clamp(45px, 5vw, 50px);
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .video-popup-close:hover {
        background: #e55a00;
        transform: scale(1.1);
    }

.popup-video,
.popup-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Animation */
.section-about .pre-headline {
    opacity: 0;
    animation: slideInFromLeft 0.9s ease-out 0.2s forwards;
}

/* Mobile */
@media (max-width: 768px) {
    .about-logo {
        display: none;
    }
}


/*__________________________*/
/*Social Media Section*/
/*____________________________*/


.section-social-media {
    background-color: #F0F0F0; /* added back */
}

    /* Flex wrapper */
    .section-social-media .container-x > .d-flex {
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }

    /* Icon container */
    .section-social-media a {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7A7A7A !important;
    }

    /* <i> icons */
    .section-social-media i {
        font-size: 4rem;
    }

    /* SVG icons */
    .section-social-media svg {
        width: 4rem;
        height: 4rem;
        display: block;
    }

        .section-social-media svg path {
            fill: #7A7A7A !important;
        }




/* -----------------------------------------
   SERVICES SECTION
----------------------------------------- */
.section-services {
    text-align: center;
    background-color: #fff;
    padding-top: clamp(2rem, calc(2rem + ((1vw - 0.36rem) * 4.6875)), 4rem);
}

    .section-services .pre-headline {
        color: #ff6600;
        font-weight: 600;
        margin-bottom: -2rem;
    }

    .section-services p {
        max-width: 850px;
        margin: 0 auto 2.5rem;
        color: #7A7A7A;
        line-height: 1.7;
    }

/* Row */
.services-row {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
}

/* Card */
.service-card {
    flex: 1;
    background: #fff;
    padding: clamp(1.25rem, 2vw, 2rem) clamp(1rem, 1.75vw, 1.75rem);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    min-height: 150px;
    opacity: 0;
    animation: slideUpFadeIn .7s ease-out forwards;
}

@media (max-width: 768px) {
    .services-row {
        flex-wrap: wrap;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .service-card {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 1 1 100%;
    }
}

.service-card:nth-child(1) {
    animation-delay: .1s;
}

.service-card:nth-child(2) {
    animation-delay: .2s;
}

.service-card:nth-child(3) {
    animation-delay: .3s;
}

.service-card:nth-child(4) {
    animation-delay: .4s;
}

@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon */
.service-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

    .service-icon i,
    .service-icon svg {
        width: clamp(2rem, 2.75vw, 2.75rem);
        height: clamp(2rem, 2.75vw, 2.75rem);
        font-size: clamp(2rem, 2.75vw, 2.75rem);
        color: #ff6600;
        transition: transform .3s ease;
        pointer-events: none;
    }

        .service-icon svg path {
            fill: #ff6600;
        }

.service-card:hover .service-icon i,
.service-card:hover .service-icon svg {
    transform: translateY(-4px);
}

/* Button */
.section-services .btn.solid-btn {
    background-color: #ff6600;
    border-color: #ff6600;
    border-radius: 6px;
    margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
}

    .section-services .btn.solid-btn:hover {
        background: #e55a00 !important;
        border-color: #cc4f00 !important;
        transform: translateY(-2px);
    }





/* -----------------------------------------
   GALLERY SECTION
----------------------------------------- */
.section-gallery {
    background-color: #F9F9F9;
    text-align: center;
}

    .section-gallery h2 { margin-bottom: 0.5rem; }

    .section-gallery p {
        max-width: 850px;
        margin: 0 auto 2.5rem;
        color: #7A7A7A;
        line-height: 1.7;
    }

/* Grid */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
}

/* Item */
.gallery-item {
    flex: 1 1 calc(33.333% - 1rem);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: #000;
}

    .gallery-item a { display: block; width: 100%; height: 100%; }
    .gallery-item a:hover { color: #fff !important; }

@media (max-width: 768px) {
    .gallery-grid { margin-left: 0; margin-right: 0; width: 100%; }
    .gallery-item { flex: 1 1 calc(50% - 0.75rem); }
}

@media (max-width: 480px) {
    .gallery-item { flex: 1 1 100%; aspect-ratio: 16 / 7; }
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: clamp(1rem, 2vw, 2rem);
}

    .gallery-overlay h3 {
        font-size: clamp(1rem, 1.5vw, 1.5rem);
        font-weight: 600;
        color: #fff;
        margin: 0;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

.gallery-item:hover .gallery-image { transform: scale(1.05); opacity: 0.7; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay h3 { transform: translateY(0); }

/* -----------------------------------------
   MODAL
----------------------------------------- */
#galleryModal .modal-dialog {
    max-width: 75vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.75rem auto;
    min-height: calc(100vh - 3.5rem);
}

#galleryModal .modal-content {
    background-color: rgba(10,10,10,0.96);
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

#galleryModal .modal-header {
    position: absolute;
    top: 0; right: 0;
    z-index: 1060;
    padding: 1rem;
}

#galleryModal .btn-close { opacity: 1; background-size: 1.2rem; filter: invert(1) grayscale(1); }

#galleryModal .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding: 2rem;
}

#galleryCarousel { width: 100%; }
#galleryCarousel .carousel-item { text-align: center; }

.carousel-image {
    display: block;
    margin: 0 auto;
    max-width: min(65vw, 1000px);
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .carousel-image.zoomed { transform: scale(1.5); }

.carousel-caption {
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(6px);
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    bottom: 1.25rem;
    left: 50%; right: auto;
    transform: translateX(-50%);
    width: auto;
    max-width: 80%;
    pointer-events: none;
}

    .carousel-caption h5 { font-size: 1rem; font-weight: 500; color: #fff; margin: 0; }

.zoom-button {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    background: black !important;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}

    .zoom-button:hover,
    .zoom-button:focus,
    .zoom-button:active { background: black !important; box-shadow: none !important; outline: none !important; }

    .zoom-button i { color: #fff !important; font-size: 1.2rem; }

.carousel-control-prev,
.carousel-control-next { width: 60px; opacity: 1; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    background-size: 1.3rem;
    filter: brightness(0) invert(1);
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover, .carousel-control-next:focus {
    opacity: 1; background: transparent; outline: none; box-shadow: none;
}







/* -----------------------------------------
   MID-SECTION PARALLAX
----------------------------------------- */
.section-mid-parallax {
    position: relative;
    min-height: clamp(320px, 40vw, 420px);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 991px) {
    .section-mid-parallax {
        background-attachment: scroll;
    }
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.section-mid-parallax .container-x {
    position: relative;
    z-index: 2;
}

/* Typography — override base.css colors for white text on dark bg */
.section-mid-parallax h2,
.section-mid-parallax h3,
.section-mid-parallax p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.section-mid-parallax h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

    .section-mid-parallax h3::after {
        content: "";
        position: absolute;
        bottom: clamp(-8px, -1vw, -14px);
        left: 50%;
        transform: translateX(-50%);
        width: clamp(45px, 5vw, 70px);
        height: 3px;
        background-color: #ff6600;
    }

.section-mid-parallax p {
    font-size: clamp(0.95rem, 1.15vw, 1.15rem);
    font-weight: 300;
    margin: 2rem auto;
}

/* Button */
.section-mid-parallax .btn.solid-btn {
    background-color: #ff6600;
    border-color: #ff6600;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

    .section-mid-parallax .btn.solid-btn:hover {
        background: #e65c00 !important;
        border-color: #e65c00 !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

/* Animations */
.section-mid-parallax h3 {
    opacity: 0;
    animation: slideInFromLeft 0.9s ease-out 0.2s forwards;
}

.section-mid-parallax h2,
.section-mid-parallax p,
.section-mid-parallax .btn {
    opacity: 0;
    animation: slideUpFadeIn 0.7s ease-out forwards;
}

.section-mid-parallax h2 {
    animation-delay: 0.2s;
}

.section-mid-parallax p {
    animation-delay: 0.35s;
}

.section-mid-parallax .btn {
    animation-delay: 0.5s;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



/* -----------------------------------------
   LOGOS SECTION
----------------------------------------- */
.section-logos {
    background-color: #fff;
    width: 100%;
}

    .section-logos p {
        color: #ff6600;
        font-weight: 600;
        margin-bottom: -2rem;
        text-align: left;
    }

    .section-logos h2 {
        text-align: left;
        margin-bottom: 3rem;
    }

/* Carousel */
.logos-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
}

.logos-track {
    display: flex;
    width: 200%;
    will-change: transform;
}

.logo-item {
    flex: 0 0 calc(100% / 6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.85rem, 1.5vw, 1.75rem);
}

    .logo-item a {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

.logo-image {
    width: 100%;
    max-height: clamp(60px, 8vw, 110px);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item:hover .logo-image {
    transform: scale(1.08);
}

/* Dots */
.logos-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.logos-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D9D9D9;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .logos-indicator:hover {
        background: #ff8833;
        transform: scale(1.15);
    }

    .logos-indicator.active {
        background: #ff6600;
    }



/* -----------------------------------------
   CONTACT SECTION
----------------------------------------- */
.section-contact {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.section-contact .container-x {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .section-contact {
        background-attachment: scroll;
        min-height: auto;
    }
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: clamp(1.5rem, 2.75vw, 2.75rem);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

    .contact-card h2,
    .contact-card h3,
    .contact-card h4,
    .contact-card p,
    .contact-card span {
        color: #fff;
    }

    .contact-card > h3 {
        margin-bottom: 1.75rem;
    }

    .contact-card > p {
        margin-bottom: 2rem;
    }

    .contact-card > h4 {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

.section-contact .container-x > h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

    .contact-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.contact-icon {
    width: clamp(42px, 5vw, 50px);
    height: clamp(42px, 5vw, 50px);
    min-width: clamp(42px, 5vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.35);
}

    .contact-icon i,
    .contact-icon svg {
        color: #fff !important;
        fill: #fff !important;
        font-size: clamp(1rem, 1.25vw, 1.25rem);
    }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .contact-details span {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.75);
    }

    .contact-details a {
        font-size: 1.1rem;
        font-weight: 500;
        color: #fff !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-details a:hover {
            color: #ff6600 !important;
        }

/* -----------------------------------------
   FORM WRAPPER — kills Bootstrap/Umbraco constraints
----------------------------------------- */
.contact-form-wrapper,
.contact-form-wrapper *,
.contact-form-wrapper *::before,
.contact-form-wrapper *::after {
    box-sizing: border-box !important;
    max-width: 100% !important;
}

.contact-form-wrapper {
    overflow: hidden !important;
}

    /* Kill all Bootstrap container variants */
    .contact-form-wrapper .container,
    .contact-form-wrapper .container-sm,
    .contact-form-wrapper .container-md,
    .contact-form-wrapper .container-lg,
    .contact-form-wrapper .container-xl,
    .contact-form-wrapper .container-xxl,
    .contact-form-wrapper .container-fluid,
    .contact-form-wrapper .row,
    .contact-form-wrapper form,
    .contact-form-wrapper .umbraco-forms-form,
    .contact-form-wrapper .umbraco-forms-page,
    .contact-form-wrapper fieldset,
    .contact-form-wrapper .umbraco-forms-fieldset,
    .contact-form-wrapper .umbraco-forms-container,
    .contact-form-wrapper .umbraco-forms-page-fields,
    .contact-form-wrapper .umbraco-forms-field,
    .contact-form-wrapper .umbraco-forms-field-wrapper,
    .contact-form-wrapper .col,
    .contact-form-wrapper [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        float: none !important;
        flex: none !important;
    }

    .contact-form-wrapper .umbraco-forms-field {
        margin-bottom: 0.85rem !important;
        margin-top: 0 !important;
    }

    .contact-form-wrapper .umbraco-forms-label,
    .contact-form-wrapper legend {
        display: none !important;
    }

    .contact-form-wrapper .umbraco-forms-field.dataconsent .umbraco-forms-label {
        display: none !important;
    }

    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper textarea {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        border-radius: 10px !important;
        padding: 0.9rem 1.1rem !important;
        font-size: 0.95rem !important;
        color: #fff !important;
        transition: all 0.3s ease;
        margin: 0 !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }

        .contact-form-wrapper input[type="text"]::placeholder,
        .contact-form-wrapper input[type="email"]::placeholder,
        .contact-form-wrapper textarea::placeholder {
            color: rgba(255,255,255,0.55) !important;
        }

        .contact-form-wrapper input[type="text"]:focus,
        .contact-form-wrapper input[type="email"]:focus,
        .contact-form-wrapper textarea:focus {
            background: rgba(255,255,255,0.12) !important;
            border-color: #ff6600 !important;
            outline: none !important;
            box-shadow: 0 0 0 3px rgba(255,102,0,0.15) !important;
        }

    .contact-form-wrapper textarea {
        min-height: 130px !important;
        max-height: 130px !important;
        resize: none !important;
    }

@media (max-width: 991px) {
    .contact-form-wrapper textarea {
        max-height: none !important;
        min-height: 110px !important;
    }
}

.contact-form-wrapper input[type="checkbox"] {
    width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
    accent-color: #ff6600;
    flex-shrink: 0 !important;
}

.contact-form-wrapper .umbraco-forms-navigation,
.contact-form-wrapper .umbraco-forms-submitbutton,
.contact-form-wrapper .buttons,
.contact-form-wrapper .btn-group,
.contact-form-wrapper .umbraco-forms-field.submit,
.contact-form-wrapper .umbraco-forms-submitbutton-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: block !important;
}

.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button[type="submit"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background-color: #ff6600 !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 0.95rem 2rem !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.75rem 0 0 !important;
    text-transform: capitalize !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

    .contact-form-wrapper input[type="submit"]:hover,
    .contact-form-wrapper button[type="submit"]:hover {
        background-color: #e65c00 !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255,102,0,0.5);
    }

/* Dataconsent — checkbox and text on same line */
.contact-form-wrapper .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
}

.contact-form-wrapper .umbraco-forms-field.dataconsent label {
    display: inline !important;
    text-align: left !important;
    cursor: pointer !important;
    font-size: 0.88rem !important;
    color: rgba(255,255,255,0.85) !important;
    white-space: normal !important;
    flex: 1 !important;
}

    .contact-form-wrapper .umbraco-forms-field.dataconsent label a {
        color: #ff6600 !important;
        font-weight: 600 !important;
        text-decoration: underline !important;
    }

/* -----------------------------------------
   CONTACT POPUP
----------------------------------------- */
.contact-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .contact-popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.contact-popup {
    background: #fff;
    border-radius: 20px;
    padding: clamp(2rem, 3vw, 3rem) clamp(1.75rem, 2.5vw, 2.5rem);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-popup-overlay.active .contact-popup {
    transform: scale(1);
    opacity: 1;
}

.contact-popup-icon {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-popup-icon i {
        color: #fff;
        font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    }

.contact-popup h3 {
    font-size: clamp(1.35rem, 1.75vw, 1.75rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-popup p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-popup-btn {
    background: #ff6600;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

    .contact-popup-btn:hover {
        background: #e65c00;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255,102,0,0.4);
    }