#transferInfoWindow {
    transition: opacity 0.25s;
}

#transferSummaryWindow {
    opacity: 0;
    transition: opacity 0.25s;
}

.transfers-intro {
    font-family: 'Didact_Gothic';
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    transition: opacity 0.25s;
}

.transfers-image-container {
    height: 500px;
    width: calc(100% - 40px);
    max-width: 1000px;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.transfers-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.intro-section {
    max-width: 800px;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.intro-section h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.intro-section p {
    font-size: 1.2em;
    color: #b1b1b1;
    width: calc(100% - 30px);
    margin: 0;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.option {
    display: flex;
    background: var(--contrast-item-background);
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.option img,
.option svg {
    height: 50px;
    width: 50px;
    object-fit: contain;
    fill: #07a6dc;
}

.option h2 {
    font-size: 1.5em;
    margin: 0;
}

.option p {
    font-size: 1em;
    color: #bbbbbb;
    margin: 0;
}

.comfort-section {
    margin-top: 40px;
    max-width: 800px;
    margin: auto;
}

.comfort-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.comfort-section p {
    font-size: 1.2em;
    color: #555;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0;
    background-color: var(--company-blue);
    color: white;
    border-radius: 30px;
    max-width: 800px;
    width: calc(100% - 40px);
}

.cta-section h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.2em;
    margin: 5px;
    margin-bottom: 15px;
}


.address-selection-popup {
    opacity: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100% - 20px);
    max-width: 600px;
    height: 400px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    overflow: hidden;
    transition: opacity 1.25s;
}

.address-selection-header {
    font-family: 'Geologica Light';
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    width: 100%;
    height: 40px;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    background-color: #f0f0f0;
}

.address-selection-header-close,
.time-header-close {
    display: flex;
    color: #aaa;
    float: right;
    cursor: pointer;
    right: 10px;
    text-align: right !important;
    position: absolute;
    transition: transform 0.4s, color 0.3s;
}

.address-selection-header-close:hover,
.time-header-close:hover {
    color: rgb(255, 255, 255) !important;
    transform: rotate(90deg);
}

.address-selection-title {
    margin: 0;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

#loadingOverlay {
    display: flex;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: var(--main-content-background);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loadingOverlay svg {
    width: calc(100% - 40px);
    max-width: 300px;
}


@media (max-width: 768px) {
    .intro-section {
        margin-bottom: 0;
    }
    .transfers-image-container {
        height: 280px;
    }
    .intro-section h1 {
        font-size: 1.5em;
    }

    .option {
        width: 100%;
        padding: 10px;
        border-radius: 20px;
    }

    .option h2 {
        text-align: left;
        margin: 0;
        font-size: 1.2em;
    }

    .option p {
        text-align: left;
        font-size: 0.9em;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .intro-section p {
        font-size: 1em;
        width: calc(100% - 30px);
        margin: 15px;
        margin-top: 0;
    }

    .cta-section {
        border-radius: 20px;
    }

    .cta-section h2 {
        font-size: 1.2em;
    }

    .cta-section p {
        font-size: 0.9em;
    }
}

@media (max-width: 500px) {
    .address-selection-popup {
        height: calc(100% - 200px);
    }

    .cta-section {
        border-radius: 20px;
        margin: 20px 0;
    }

    .intro-section h1 {
        font-size: 1.2em;
        margin: 0;
    }
    .transfers-intro {
        margin-top: 10px;
    }
}