:root {
    --troyco-red: #ff0008;
    --troyco-red-hover:#ff3333;
    --troyco-red-active:#cc0006;
}

/* === CRITICAL OVERFLOW FIXES === */
body {
    margin: 0;
    /* 💥 CRITICAL: Prevents all body scrolling, must be applied */
    overflow: hidden !important; 
}

.section, .fp-tableCell, .swiper-slide {
    /* CRITICAL: Aggressively remove margins/paddings from container elements */
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box; 
}
/* =============================== */


#section3 {
    padding-bottom: 0px;
}


.section {
    height: 100svh; /* Use 100svh */
    box-sizing: border-box;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100svh; /* Use 100svh */
}

.swiper-slide .background-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#section1 {
    /* This rule is now redundant if the global .section padding/margin is 0, but keep it for safety */
    padding-top: 0; 
}

.bg-transparent-3-dark { background-color: rgba(93, 93, 93, 0.702) !important; }

.inter-card-text {
    text-transform: none;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500; 
    font-style: normal;
    font-size: 1.4rem; 
    line-height: 1.5;
    margin-bottom: 1px;
    color: rgb(255, 255, 255);
}

.inter-btn-text{
    text-transform: none;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500; 
    font-style: normal;
    font-size: 1.3rem; 
    line-height: 1.5;
    margin-bottom: 1px;
    color: white;
}

.full-btn{
    display: block;
    padding:8px;
    width: 150px;
    margin-bottom: 10px;
    text-align: center;
    background-color: var(--troyco-red);

    border: 1px solid var(--troyco-red);
    border-radius: 15px;
}

.full-btn:hover{
    background-color: var(--troyco-red-hover);
}

.full-btn:active{
    background-color: var(--troyco-red-active);
}

.intro-caption{
    border-radius: 30px;
    padding:20px;
}

.scroll-to-map-arrow{
    padding-top:10px; 
    display:block;
    margin:0 auto;
}

.scroll-to-map-desc{
    cursor: pointer;
}

.intro-title{
    max-width: 200px;
}

.privacy-notice{
    color: white; 
    text-decoration: underline; 
    padding-bottom: 20px;
}


@media (min-width:767px) {
    .intro-troyco-logo{
        height: 125px !important;
        margin-bottom: 5px;
        margin-top: 7px;
    }
}

@media (max-width:767px){
    /* 💥 CRITICAL FIX: Drastically reduced padding that was causing overflow */
    .intro-caption{
        padding-bottom: 20px; 
        padding-top: 20px;
    }
    .swiper-pagination {
        padding-bottom: 5px; /* Kept small */
    }
}