/* ============================= */
/* LAND DESTINATIONS SECTION */
/* ============================= */

.land-destinations {
    background: #f4f4f4;
    padding: 100px 0;
    text-align: center;
}

/* Scoped container */
.land-destinations>.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Globe icon */
.land-icon img {
    width: 90px;
    margin-bottom: 30px;
}

/* Main title */
.land-title {
    font-family: "Georgia", serif;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #222;
}

/* Subtitle */
.land-subtitle {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

/* Gold divider */
.land-divider {
    width: 60px;
    height: 2px;
    background: #c7a54a;
    margin: 25px auto 70px;
}

/* 3 Column Grid */
.land-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: left;
}

/* Remove default list */
.land-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List items */
.land-grid li {
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #333;
}

/* Gold circle check icon */
.land-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 2px solid #c7a54a;
    border-radius: 50%;
    font-size: 10px;
    color: #c7a54a;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .land-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .land-title {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .land-grid {
        grid-template-columns: 1fr;
    }

    .land-destinations {
        padding: 70px 0;
    }

    .land-title {
        font-size: 28px;
    }

    .land-subtitle {
        font-size: 14px;
    }
}