
.content-wrapper {
    background: url("../../images/pc/parking_pc/wave.svg") no-repeat center top;
}

.contact-header {
    color: #000;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 30px 0;
}

.contact-header h1 {
    font-size: 28px;
    letter-spacing: 5.6px;
}

.contact-header span {
    padding-left: 20px;
    font-size: 15px;
    color: #000;
    margin: 0;
}


/* Parking Info Styles */
.parking-container {
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.parking-section {
    padding: 60px 20px;
}

.parking-section .title {
    margin: 0 auto;
    width: 60%;
    background-color: #CDFCFC;
    padding: 10px;
    margin-bottom: 60px;
    opacity: 1;
}

.parking-section .title h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #4FAEE0;
    opacity: 1;
}

.parking-section .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.parking-image {
    width: 50%;
    height: auto;
    border-radius: 20px;
}

.parking-section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
}

.parking-title {
    margin: 60px auto;
    width: 60%;
    background-color: #CDFCFC;
    padding: 10px;
    opacity: 1;
}

.parking-title h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #4FAEE0;
}

.parking-details {
    width: 50%;
    background-color: #fff;
}

.parking-details .parking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.parking-table thead {
    background-color: #F2F2F2;
}

.parking-table th,
.parking-table td {
    text-align: center;
    padding: 30px 0;
}

.parking-table tr {
    border-bottom: 1px solid #D0C2C2;
    border-top: 1px solid #D0C2C2;
}

.call-center {
    background-color: #A6D3F4;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    border-radius: 20px;
    font-size: 15px;
}

.call-center p {
    text-align: left;
}

.call-center a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

.gray-box {
    width: 100%;
    height: 430px;
    background-color: #F2F2F2;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.parking-fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}


.parking-fee-table th,
.parking-fee-table td {
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #D0C2C2;
    border-top: 1px solid #D0C2C2;
}

.parking-fee-table th {
    background-color: #f7f7f7;
    padding: 10px 0;
}

.parking-fee-table thead th:first-child {
    font-weight: normal;
}

.parking-fee-table tbody tr td:first-child {
    background-color: #D9EFEE;
    font-weight: bold;
}

.document-container {
    width: 50%;
    margin: 50px auto;
    padding: 50px;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.download-button {
    width: 80%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;

    padding: 10px 25px;
    background-color: #808080;
    color: white;
    gap: 10px;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    font-size: 16px;
    margin-bottom: 25px;
    text-decoration: none;
}

.download-button .text {
    width: 90%;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.download-button .fa-solid {
    font-size: 24px;
    width: 5%;
}

.document-section {
    margin: 25px 0;
}


.button-group {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.section-title {
    text-align: center;
    font-size: 18px;
    color: #808080;
    font-weight: bold;
}


.download-button:hover {
    background-color: #b0aaaa;

    .fa-solid {
        color: #808080;
    }
}


.note {
    font-size: 12px;
    color: #808080;
    line-height: 1.5;
    text-align: left;
}

.rental-info {
    opacity: 0;
    animation: fadeIn 3s forwards;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-top: 1px solid #D0C2C2;
    border-bottom: 1px solid #D0C2C2;
    font-size: 13px;
}

.rental-time {
    width: 70%;
    background-color: #D9EFEE;
    padding: 30px;
}

.rental-price {
    width: 30%;
    padding: 30px;
    text-align: center;
}

.rental-document-container {
    opacity: 0;
    animation: fadeIn 3s forwards;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.rental-document-container .document-section {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PC styles */
@media (min-width: 768px) {
    .parking-section .content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

}

@media (max-width: 768px) {

    .content-wrapper {
        background: url("../../images/mobile/parking_mobile/wave.svg") no-repeat center top;
    }

    .contact-container {
        padding: 20px;
    }

    .contact-header {
        display: block;
        padding-top: 0px;
    }

    .contact-header h1 {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .contact-header span {
        padding-left: 0;
        font-size: 14px;
    }

    .parking-section {
        padding: 30px 20px;
    }

    .parking-section .title {
        width: -webkit-fill-available;
        margin-bottom: 20px;
    }

    .parking-section .title h2 {
        font-size: 18px;
    }

    .parking-title {
        margin: 60px auto;
        width: -webkit-fill-available;
        background-color: #CDFCFC;
        padding: 10px;
        opacity: 1;
        margin-bottom: 30px;
    }

    .parking-title h2 {
        font-size: 18px;
    }

    .parking-section .content {
        display: block;
    }

    .parking-image {
        width: 100%;

    }

    .parking-details {
        width: 100%;
        margin-top: 20px;
    }

    .parking-details .parking-table,
    .parking-fee-table {
        font-size: 10px;
    }

    .call-center {
        font-size: 12px;
    }

    .document-container {
        width: fit-content;
        padding: 20px;
    }

    .document-section {
        margin: 0;
        margin-bottom: 15px;
    }

    .download-button {
        width: -webkit-fill-available;
        margin-bottom: 15px;
        padding: 10px 15px;
    }

    .download-button .text {
        font-size: 13px;
    }

    .download-button .fa-solid {
        font-size: 18px;
    }

    .button-group {
        margin-top: 0;
    }


    .section-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .note {
        font-size: 10px;

        text-align: left;
    }

    .gray-box {
        height: 200px;
    }

    .rental-document-container {
        padding: 20px;
    }

    .parking-title {
        margin-top: 30px;
    }



    .rental-info {
        font-size: 11px;
    }



}

/* --- Tablet (769px–1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-header h1 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .contact-header span {
        font-size: 14px;
    }

    .parking-section {
        padding: 40px 20px;
    }

    .parking-section .title,
    .parking-title {
        width: 80%;
        margin-bottom: 30px;
    }

    .parking-section .title h2,
    .parking-title h2 {
        font-size: 20px;
    }

    .parking-section .content {
        gap: 30px;
        align-items: center;
    }

    .parking-details .parking-table,
    .parking-fee-table {
        font-size: 11px;
    }

    .parking-section .content {
        align-items: stretch;
    }

    .call-center {
        font-size: 13px;
        padding: 12px;
    }

    .document-container {
        width: 80%;
        padding: 30px;
    }

    .download-button {
        width: 90%;
        font-size: 14px;
        padding: 12px 20px;
    }

    .download-button .text {
        font-size: 16px;
    }

    .rental-document-container .download-button .text {
        font-size: 13px;
    }

    .download-button .fa-solid {
        font-size: 20px;
    }

    .section-title {
        font-size: 16px;
    }

    .note {
        font-size: 11px;
    }

    .gray-box {
        height: 300px;
    }

    .rental-info {
        font-size: 12px;
    }

    .btn-link {
        width: 70%;
        padding: 12px 25px;
    }

    .btn-text {
        font-size: 22px;
    }

    .btn-content {
        font-size: 12px;
    }
}
